/**
 * Trigonometry
 *
 * @credit
 * http://unindented.org/articles/trigonometry-in-sass/
 */
/**
 * Use when you want to fade in an element with pure CSS. An example is a
 * navigation dropdown that fades in. Normally you'd do this:
 *
 * li {
 *   .dropdown {
 *     display: none;
 *   }
 *   &:hover .dropdown {
 *     display: block;
 *   }
 * }
 *
 * ... but if you toggle display like that, you can't do any CSS3
 * opacity fade ins.
 *
 * This mixin allows you to toggle visibility and fade-in at the same time.
 *
 * Usage:
 *
 * li {
 *   .dropdown {
 *     @include faded-out(0.4s, ease-in-out);
 *   }
 *   &:hover .dropdown {
 *     @include fade-in();
 *   }
 * }
 *
 * Or for the reverse:
 *
 * figure {
 *   .overlay {
 *     @include faded-in(0.4s, ease-in-out);
 *   }
 *   &:hover .overlay {
 *     @include fade-out();
 *   }
 * }
 *
 * You must use both mixins in tandem.
 *
 * @param $duration  length, in seconds, of the opacity transition
 * @param $easing    the easing to use
 * @param delay      the delay, in seconds
 */
/*
 * Functions to compute rem and em values.
 *
 * Available functions are:
 *  - reset-ems()
 *  - rem-font-size($font-size, $line-height: false, $letter-spacing: false)
 *  - px-to-rem($px-values)
 *  - px-to-em($px-values, $font-size)
 */
/**
 * Reset the font-size of an element to the baseline font size in order to reset
 * the em values of the children.
 */
/**
 * Removes the unit (e.g. px, em, rem) from a value, returning the number only.
 *
 * @param $num
 *   Number to strip unit from.
 */
/**
 * Sets the font-size for an element in rem (converted from px) along with a px
 * fallback for browsers that don't support rems.
 *
 * @param $font-size
 *   A px value to convert.
 * @param $line-height
 *   A unitless, px, or em value line height to convert/output.
 * @param $letter-spacing
 *   A unitless, px, or em value letter spacing to convert/output.
 */
/**
 * Converts px to rems.
 *
 * @param $px-values
 *   A px value or list of px values (eg. 0 10px 0 12px) to convert.
 */
/**
 * Converts px to ems.
 *
 * @param $px-values
 *   A px value or list of px values (eg. 0 10px 0 12px) to convert.
 * @param $font-size
 *   A baseline font-size to use for the calculations.
 */
/**
 * Breakpoint generator.
 *
 * Notes:
 * min-width
 * If [device width] is greater than or equal to [specified #], then do {...}
 *
 * max-width
 * If [device width] is less than or equal to [specified #], then do {...}
 *
 * @param $point
 *   Breakpoint value to use.
 * @param $reverse
 *   Default is to use max-width. Use true to use min-width.
 */
html,
body {
    height: 100%;
}

.site {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-direction: column;
    -webkit-box-orient: vertical;
    -ms-flexbox-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    /* 1, 3 */
    background: transparent url(../images/background-texture.png);
    font-size: 14px;
    line-height: 1.57142857142857em;
    padding-top: 78px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.site.menu-open {
    overflow: hidden;
    padding-top: 85px;
}

.site.text-size-large {
    font-size: 15.5px;
}

.site.text-size-small {
    font-size: 12.5px;
}

@media screen and (max-width: 1240px) {
    .site {
        padding-top: 85px;
    }

    .site.node-experience-page,
    .site.node-story-detail,
    .site.node-simple-landing-page {
        padding-top: 0;
    }

    .site.node-home-page-alt,
    .site.node-home-page {
        padding-top: 85px;
    }
}

@media screen and (max-width: 768px) {
    .site.text-size-large,
    .site.text-size-small {
        font-size: 14px;
    }
}

@media print {
    .site {
        padding-top: 0;
    }

    .site.node-experience-page,
    .site.node-story-detail,
    .site.node-home-page,
    .node-simple-landing-page {
        padding-top: 0;
    }
}

.site-article {
    overflow: hidden;
}

.site-header,
.site-footer {
    -webkit-box-flex: none;
    -ms-flex: none;
    flex: none;
}

.site-content {
    z-index: 200;
    -webkit-box-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    right: 0;
    overflow: hidden;
    padding: 20px;
}

.site-content:before,
.site-content:after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    background: #ae8637;
    top: 0;
    bottom: 0;
    z-index: 50;
}

.site-content:before {
    left: 79px;
}

.site-content:after {
    right: 79px;
}

.node-home-page .site-content {
    padding-top: 0;
}

.node-home-page .site-content:before,
.node-home-page .site-content:after {
    position: fixed;
    top: 78px;
    bottom: 217px;
}

@media screen and (max-width: 1400px) {
    .node-home-page .site-content:before,
    .node-home-page .site-content:after {
        bottom: 190px;
    }
}

@media screen and (max-width: 1360px) {
    .node-home-page .site-content:before,
    .node-home-page .site-content:after {
        bottom: 240px;
    }
}

@media screen and (max-width: 1240px) {
    .site-content {
        padding: 27px 0;
    }

    .site-content:before {
        left: 18px;
    }

    .site-content:after {
        right: 18px;
    }

    .site-content:before,
    .site-content:after {
        top: 0;
    }

    body.node-89 .site-content:before,
    body.node-89 .site-content:after,
    body.node-102 .site-content:before,
    body.node-102 .site-content:after,
    body.node-116 .site-content:before,
    body.node-116 .site-content:after,
    body.node-103 .site-content:before,
    body.node-103 .site-content:after {
        top: 0;
    }

    /* .node-experience-page .site-content,
    .node-story-detail .site-content,
    .node-simple-landing-page .site-content {
      padding-top: 0;
    } */

    /* .node-experience-page .site-content:before,
    .node-experience-page .site-content:after,
    .node-story-detail .site-content:before,
    .node-story-detail .site-content:after,
    .node-simple-landing-page .site-content:before,
    .node-simple-landing-page .site-content:after {
      top: 43px;
    } */

    /* .node-our-stories-landing .site-content {
      padding-top: 0;
    } */

    .node-our-stories-landing .site-content:before,
    .node-our-stories-landing .site-content:after {
        display: none;
    }

    .node-home-page-alt .site-content:before,
    .node-home-page-alt .site-content:after,
    .node-landing-page-alternate .site-content:before,
    .node-landing-page-alternate .site-content:after,
    .node-landing-page-floorplans .site-content:before,
    .node-landing-page-floorplans .site-content:after,
    .node-blank-page .site-content:before,
    .node-blank-page .site-content:after,
    .node-home-page .site-content:before,
    .node-home-page .site-content:after {
        display: none;
    }

    .node-home-page-alt .site-content,
    .node-landing-page-alternate .site-content,
    .node-landing-page-floorplans .site-content,
    .node-blank-page .site-content {
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    /* .node-experience-page .site-content,
    .node-story-detail .site-content,
    .node-simple-landing-page .site-content {
      padding-top: 0;
    } */

    .node-experience-page .site-content:before,
    .node-experience-page .site-content:after,
    .node-story-detail .site-content:before,
    .node-story-detail .site-content:after,
    .node-simple-landing-page .site-content:before,
    .node-simple-landing-page .site-content:after {
        display: none;
    }
}

@media print {
    .site-content:after,
    .site-content:before {
        display: none;
    }
}

.site__instructions {
    display: none;
}

@media screen and (max-width: 1240px) {
    .site__instructions {
        display: block;
        background: transparent url(../images/background-texture.png);
        width: 133px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
        text-align: center;
    }

    .site__instructions:after {
        content: "";
        display: block;
        height: 20px;
        margin: 8px auto 0;
        background: transparent url(../images/icon-arrow.png) no-repeat 50% 50%;
        background-size: 17px auto;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        position: relative;
        bottom: -5px;
        left: 0;
        right: 0;
    }
}

.site-border__mobile {
    padding-top: 13px;
}

@media screen and (max-width: 1240px) {
    .site-border__mobile {
        position: relative;
        padding: 60px 0 1px;
    }

    .site-border__mobile:before {
        content: "";
        display: block;
        border: 2px solid #ae8637;
        border-top: 0;
        position: absolute;
        left: 18px;
        right: 18px;
        top: 0;
        bottom: 32px;
    }
}

@media screen and (max-width: 640px) {
    .site-border__mobile {
        padding: 30px 0 1px;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.is-node .local-tasks a,
.not-node .local-tasks a {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS text size adjust after orientation change, without disabling
   *    user zoom.
   */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
   * Remove default margin.
   */
body {
    margin: 0;
}

/* HTML5 display definitions
     ========================================================================== */
/**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
   */
[hidden],
template {
    display: none;
}

/* Links
     ========================================================================== */
/**
   * Remove the gray background color from active links in IE 10.
   */
a {
    background-color: transparent;
}

/**
   * Improve readability when focused and also mouse hovered in all browsers.
   */
a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
     ========================================================================== */
/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */
b,
strong {
    font-weight: bold;
}

/**
   * Address styling not present in Safari and Chrome.
   */
dfn {
    font-style: italic;
}

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
   * Address styling not present in IE 8/9.
   */
mark {
    background: #ff0;
    color: #000;
}

/**
   * Address inconsistent and variable font size in all browsers.
   */
small {
    font-size: 80%;
}

/**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove border when inside `a` element in IE 8/9/10.
   */
img {
    border: 0;
}

/**
   * Correct overflow not hidden in IE 9/10/11.
   */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
     ========================================================================== */
/**
   * Address margin not present in IE 8/9 and Safari.
   */
figure {
    margin: 0;
}

/**
   * Address differences between Firefox and other browsers.
   */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
   * Contain overflow in all browsers.
   */
pre {
    overflow: auto;
}

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
     ========================================================================== */
/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */
button {
    overflow: visible;
}

/**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */
button,
select {
    text-transform: none;
}

/**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
   * Re-set default cursor for disabled elements.
   */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
   * Remove inner padding and border in Firefox 4+.
   */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */
input {
    line-height: normal;
}

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
   *    (include `-moz` to future-proof).
   */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
   * Define consistent border, margin, and padding.
   */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */
textarea {
    overflow: auto;
}

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */
optgroup {
    font-weight: bold;
}

/* Tables
     ========================================================================== */
/**
   * Remove most spacing between table cells.
   */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* ==========================================================================
     Helper classes
     ========================================================================== */
/*
   * Image replacement
   */
.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
   * Hide from both screenreaders and browsers: h5bp.com/u
   */
.hidden {
    display: none !important;
    visibility: hidden;
}

/*
   * Hide only visually, but have it available for screenreaders: h5bp.com/v
   */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
   * Extends the .visuallyhidden class to allow the element to be focusable
   * when navigated to via the keyboard: h5bp.com/p
   */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
   * Hide visually and from screenreaders, but maintain layout
   */
.invisible {
    visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * For modern browsers
   * 1. The space content is one way to avoid an Opera bug when the
   *    `contenteditable` attribute is included anywhere else in the document.
   *    Otherwise it causes space to appear at the top and bottom of elements
   *    that receive the `clearfix` class.
   * 2. The use of `table` rather than `block` is only necessary if using
   *    `:before` to contain the top-margins of child elements.
   */
.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
.clearfix {
    *zoom: 1;
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster: h5bp.com/s */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

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

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

    /*
     * Don't show links for images, or javascript/internal links
     */
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
        /* h5bp.com/t */
    }

    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;
    }
}

/*!
   * fullPage 2.8.4
   * https://github.com/alvarotrigo/fullPage.js
   * MIT licensed
   *
   * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
   * Contribution by Jhony0311
   */
@media print {
    .fp-viewing {
        height: 100%;
    }
}

html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: transparent;
}

@media print {
    html.fp-enabled,
    .fp-enabled body {
        overflow: visible;
    }
}

#superContainer {
    height: 100%;
    position: relative;
    /* Touch detection for Windows 8 */
    -ms-touch-action: none;
    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    /* Safari<=5 Android<=3 */
    /* <=28 */
    box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
    .fp-section {
        padding-bottom: 210px !important;
    }
}

@media screen and (max-width: 1360px) {
    .fp-section {
        padding-bottom: 260px !important;
    }
}

@media screen and (max-width: 1240px) {
    .fp-section {
        padding-top: 0 !important;
        height: auto !important;
        padding-bottom: 0 !important;
    }
}

@media print {
    .fp-section {
        height: auto !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

.fp-slide {
    float: left;
}

.fp-slide,
.fp-slidesContainer {
    height: 100%;
    display: block;
}

@media screen and (max-width: 1240px) {
    .fp-slide,
    .fp-slidesContainer {
        position: static;
    }
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

@media screen and (max-width: 1240px) {
    .fp-slides {
        overflow: visible;
        z-index: 100;
        position: static;
    }
}

.fp-section.fp-table,
.fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

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

@media screen and (max-width: 1240px) {
    .fp-tableCell {
        height: auto !important;
    }
}

@media print {
    .fp-tableCell {
        height: auto !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: block;
    }
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

@media screen and (max-width: 1240px) {
    .fp-slidesContainer {
        float: none;
        position: static;
    }
}

.fp-controlArrow {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
    overflow: scroll;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

.fp-slidesNav.bottom {
    bottom: 17px;
}

.fp-slidesNav.top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li:hover #fp-nav ul li a.active span,
#fp-slidesNav ul li:hover #fp-nav ul li a.active span,
#fp-nav ul li:hover .fp-slidesNav ul li a.active span,
#fp-slidesNav ul li:hover .fp-slidesNav ul li a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
    right: 17px;
}

#fp-nav.left {
    left: 17px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}

#fp-nav ul li:hover .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

.fp-slidesNav ul li {
    display: inline-block;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #fdfdfd;
    color: #444;
    text-shadow: none;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-outer,
.fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font:
        14px/20px "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url("../images/ajax-loader.gif") center center no-repeat;
}

.fancybox-close {
    position: absolute;
    top: -38px;
    right: 11px;
    width: 82px;
    height: 20px;
    cursor: pointer;
    z-index: 8040;
    color: #ae8637;
    text-decoration: none;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.1111111em;
    letter-spacing: 0.0111111em;
}

.fancybox-close:before {
    content: "Close";
    color: #ae8637;
    text-transform: uppercase;
}

.fancybox-close:after {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: url(../images/icon-x.svg) no-repeat 50% 50%;
    background-size: 100% auto;
    position: absolute;
    right: 0;
    top: 1px;
}

.fancybox-close:hover {
    color: #ae8637;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url("../images/blank.gif");
    /* helps IE */
    -webkit-tap-highlight-color: transparent;
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url("../images/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
    visibility: hidden;
    font:
        normal 13px/20px "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050;
}

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
}

@media print {
    .js-sr,
    .js-left,
    .js-right,
    .js-sr-fadeonly {
        -webkit-transform: translateY(0) translateX(0) !important;
        transform: translateY(0) translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.is-node .local-tasks {
    z-index: 500;
    position: fixed;
    top: 50%;
    left: 0;
}

.is-node .local-tasks ul {
    margin: 0;
    padding: 0;
}

.is-node .local-tasks li {
    display: block;
    margin: 0 0 1px;
    padding: 0;
}

.is-node .local-tasks a {
    display: block;
    padding: 0 8px 0 7px;
    color: #fff;
    border: 0;
    font-weight: normal;
    font-size: 11px;
    font-family: "Lucida Grande", Verdana, sans-serif;
    line-height: 25px;
    height: 25px;
    outline: 0;
    background: #000;
    text-decoration: none;
    border-radius: 0 3px 3px 0;
}

.no-touchevents .is-node .local-tasks a:hover,
.no-touchevents .is-node .local-tasks a:focus,
.no-touchevents .is-node .local-tasks a.active {
    color: #fff;
    background: #444;
    text-decoration: none;
}

@media print {
    .is-node .local-tasks {
        display: none;
    }
}

.not-node .local-tasks {
    z-index: 500;
    left: 0;
    width: 80%;
    margin: 30px auto 0;
}

.not-node .local-tasks ul {
    margin: 0;
    padding: 0;
}

.not-node .local-tasks li {
    display: inline-block;
    margin: 0;
    min-width: 100px;
    vertical-align: bottom;
}

.not-node .local-tasks a {
    display: block;
    padding: 10px;
    text-align: center;
    color: #fff;
    border: 0;
    font-weight: normal;
    font-size: 11px;
    font-family: "Lucida Grande", Verdana, sans-serif;
    line-height: 25px;
    height: 25px;
    outline: 0;
    background: rgba(174, 134, 55, 0.65);
    text-decoration: none;
}

.not-node .local-tasks a:hover {
    background: rgba(174, 134, 55, 0.85);
}

.not-node .local-tasks a.is-active {
    background: #ae8637;
}

.no-touchevents .not-node .local-tasks a:hover,
.no-touchevents .not-node .local-tasks a:focus,
.no-touchevents .not-node .local-tasks a.active {
    color: #fff;
    background: #444;
    text-decoration: none;
}

@media print {
    .not-node .local-tasks {
        display: none;
    }
}

.user-login-form,
.user-pass,
.search-form,
.search-form + h2,
.search-form + h3,
.search-form ~ ol,
.search-form ~ nav {
    width: 80%;
    margin: 0 auto 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 45px 20px;
}

.user-login-form,
.user-pass,
.search-form {
    border: 1px solid #ae8637;
    text-align: center;
}

.user-login-form .description,
.user-pass .description {
    color: #888;
    font-size: 0.8em;
    padding: 10px 0;
    line-height: 1.15em;
    text-align: left;
}

.user-login-form .form-item,
.user-pass .form-item {
    margin: 0 20px 30px;
    width: 40%;
}

.search-form,
.search-form + h2,
.search-form + h3 {
    text-align: center;
}

.search-form .search-help-link,
.search-form .search-advanced {
    display: none;
}

.search-form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.search-form .button {
    margin: 0;
    color: #ae8637;
}

.search-form .form-item {
    margin: 0 2% 0 0;
}

.search-form + h2,
.search-form + h3 {
    margin: 0 auto;
    font-size: 2.14285714em;
    line-height: 1em;
    letter-spacing: 0.2px;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #444;
}

.search-form ~ ol {
    padding-top: 0;
}

.search-form ~ ol a {
    color: #ae8637;
}

.search-form.empty-search + h3 {
    display: none;
}

@media screen and (max-width: 1240px) {
    .search-form {
        display: block;
    }

    .search-form .button {
        display: block;
    }

    .search-form .form-item {
        display: block;
        width: 100%;
        margin: 0 0 2%;
    }
}

.site-messages {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border: none;
    background: transparent none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: "acumin-pro-condensed", sans-serif;
    text-align: center;
    color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.site-messages a {
    color: inherit;
}

.site-messages a:hover {
    color: #000;
}

.site-messages + .site-messages {
    border-top: 0;
}

.site-messages--status {
    background: transparent none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #444;
}

.site-messages--warning {
    background: transparent none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #840;
}

.site-messages--error {
    background: transparent none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ba0000;
}

html {
    font-size: 62.5%;
}

body {
    text-rendering: optimizeLegibility;
    font-family: "Playfair Display", serif;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    -webkit-font-variant-ligatures: common-ligatures, contextual;
    font-variant-ligatures: common-ligatures, contextual;
    -webkit-font-feature-settings: "kern", "liga", "clig", "calt";
    font-feature-settings: "kern", "liga", "clig", "calt";
}

::-moz-selection {
    color: #fff;
    text-shadow: none;
    background: #000;
}

::selection {
    color: #fff;
    text-shadow: none;
    background: #000;
}

@media screen and (min-width: 1241px) {
    .mobile-only {
        display: none;
    }
}

a,
button {
    color: #666;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.no-touchevents a,
.no-touchevents button {
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.no-touchevents a svg,
.no-touchevents button svg {
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
}

.no-touchevents a:hover,
.no-touchevents a:focus,
.no-touchevents a.active,
.no-touchevents button:hover,
.no-touchevents button:focus,
.no-touchevents button.active {
    color: #000;
}

.no-touchevents a:hover svg,
.no-touchevents a:focus svg,
.no-touchevents a.active svg,
.no-touchevents button:hover svg,
.no-touchevents button:focus svg,
.no-touchevents button.active svg {
    fill: currentColor;
}

blockquote {
    padding: 90px 53px;
    margin: 2em 0;
    position: relative;
    font-size: 1.57142857142857em;
    line-height: 1.59090909090909em;
    letter-spacing: 0.2px;
    color: #fdfdfd;
    font-style: italic;
}

blockquote:before {
    content: "\201C";
    color: #ae8637;
    font-size: 5em;
    line-height: 0.7em;
    font-weight: 700;
    display: inline-block;
    height: 60px;
    font-style: normal;
    overflow: hidden;
    position: absolute;
    left: 10px;
    top: 50px;
}

blockquote q {
    display: block;
    position: relative;
    z-index: 10;
}

blockquote q:before,
blockquote q:after {
    display: none;
}

blockquote cite {
    display: inline-block;
    font-style: normal;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    text-transform: uppercase;
    font-size: 1em;
    margin: 0.85em 0;
    position: relative;
    z-index: 10;
}

blockquote cite:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #fdfdfd;
    margin: auto 7px auto 0;
    vertical-align: middle;
}

blockquote cite em {
    display: inline-block;
    padding-left: 3px;
    font-style: italic;
    color: #ae8637;
    text-transform: none;
    font-family: "Playfair Display", serif;
}

@media screen and (max-width: 768px) {
    blockquote {
        font-size: 1em;
        padding: 14px 53px 58px;
    }

    blockquote:before {
        left: 36px;
        top: 32px;
    }
}

@media print {
    blockquote cite:before {
        display: none;
    }
}

small {
    color: #838383;
    font-family: "Myriad Pro", Arial, sans-serif;
    font-size: 0.85714285714286em;
    line-height: 1.2em;
    display: inline-block;
}

.h1 {
    margin: 0 0 1em;
    font-weight: 700;
    font-size: 1em;
    font-size: 0.1rem;
    line-height: 1em;
}

.h2 {
    margin: 0 0 1em;
    font-weight: 700;
    font-size: 1em;
    font-size: 0.1rem;
    line-height: 1em;
}

.h3 {
    margin: 0 0 1em;
    font-weight: 700;
    font-size: 1em;
    font-size: 0.1rem;
    line-height: 1em;
}

.h4 {
    margin: 0 0 1em;
    font-weight: 700;
    font-size: 1em;
    font-size: 0.1rem;
    line-height: 1em;
}

.h5 {
    margin: 0 0 1em;
    font-weight: 700;
    font-size: 1em;
    font-size: 0.1rem;
    line-height: 1em;
}

.h6 {
    margin: 0 0 1em;
    font-weight: 700;
    font-size: 1em;
    font-size: 0.1rem;
    line-height: 1em;
}

img {
    display: block;
}

.color-gold {
    color: #ae8637;
}

.color-mediumgray {
    color: #60605f;
}

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

.spaced {
    margin-top: 3em;
}

.spaced .type__mixed.small {
    margin: 0 0 0.4em;
}

.spaced p {
    margin: 0 0 1em;
}

.lining-numbers {
    -webkit-font-feature-settings: "kern", "liga", "clig", "calt", "lnum";
    font-feature-settings: "kern", "liga", "clig", "calt", "lnum";
}

.no-overflow {
    overflow: hidden;
}

.type__underline {
    text-decoration: underline;
    font-family: "acumin-pro-condensed", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 6px;
    display: inline-block;
    color: #444;
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1em;
    letter-spacing: 0.0125em;
}

.type__underline:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    background: #ae8637;
    right: 0;
}

.type__underline em {
    font-family: "Playfair Display", serif;
    font-size: 0.875em;
    text-transform: none;
}

.type__underline.icon {
    padding-right: 28px;
}

.type__underline.icon:before {
    right: 28px;
}

.type__underline.icon:after {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: transparent none no-repeat 0 50%;
    background-size: auto 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.type__underline.icon.icon-map:after {
    background-image: url(../images/icon-map.svg);
}

.type__underline.icon.icon-phone:after {
    background-image: url(../images/icon-phone.svg);
}

.type__underline.icon.icon-newsletter:after {
    background-image: url(../images/icon-newsletter.svg);
}

.type__underline.icon.icon-facebook:after {
    background-image: url(../images/icon-facebook.svg);
}

.type__underline.icon.icon-linkedin:after {
    background-image: url(../images/icon-linkedin.svg);
}

.type__underline.icon.icon-instagram:after {
    background-image: url(../images/icon-instagram.svg);
}

@media screen and (max-width: 1240px) {
    .type__underline.icon {
        padding-left: 38px;
        padding-right: 0;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1em;
        letter-spacing: 0em;
    }

    .type__underline.icon:before {
        right: 0;
        left: 38px;
    }

    .type__underline.icon:after {
        right: auto;
        left: 0;
    }
}

.type__underline:hover {
    color: #ae8637;
}

.type__callout {
    margin: 0;
    text-transform: uppercase;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1em;
    font-weight: 400;
    color: #fdfdfd;
}

@media screen and (max-width: 1240px) {
    .type__callout {
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 42px;
    }
}

.type__callout a {
    color: #fdfdfd;
    text-decoration: none;
}

.type__callout a:hover {
    color: #fdfdfd;
}

@media screen and (max-width: 1240px) {
    .type__callout a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 1240px) {
    .type__callout br {
        display: none;
    }
}

@media screen and (min-width: 1241px) {
    .type__callout .large {
        display: block;
        margin-top: 0.1em;
        font-size: 32px;
        letter-spacing: 0.05em;
    }
}

.type__callout.medium {
    color: #ae8637;
    font-size: 1.57142857em;
    line-height: 1em;
    letter-spacing: 0.02em;
}

.type__mixed {
    color: #ae8637;
    text-transform: uppercase;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 2em;
    line-height: 1em;
    letter-spacing: 0.2px;
    font-weight: 400;
    margin: 0.7em 0;
}

.type__mixed em {
    font-family: "Playfair Display", serif;
    font-size: 1.07142857142857em;
    text-transform: none;
}

.type__mixed.medium {
    font-size: 1.57142857142857em;
}

.type__mixed.small {
    font-size: 1.42857142857143em;
}

.type__mixed.small em {
    font-size: 0.63636363636364em;
}

@media screen and (max-width: 1240px) {
    .type__mixed.small {
        font-size: 1.85714285714286em;
    }
}

.type__mixed.small2 {
    font-size: 1.15571429em;
    color: #444;
}

.type__mixed.small2 a {
    color: #ae8637;
}

.type__mixed.small2 a:hover,
.type__mixed.small2 a:focus {
    color: #444;
}

.type__mixed.extra-small {
    font-size: 12px;
    font-size: 1.2rem;
    color: #444;
    margin: 0 auto;
}

.type__mixed.underline {
    text-align: center;
}

.type__mixed.underline:after {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    background: #ae8637;
    margin: 1.15em auto 0;
}

.type__mixed.underline-top {
    margin: 1.55em auto 1em;
}

.type__mixed.underline-top:before {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    background: #ae8637;
    margin: 0 auto 1.25em;
}

.wysiwyg .type__mixed {
    font-style: normal;
    margin: 0.7em 0;
}

.type__mixed.fixed {
    font-size: 21px;
    font-size: 2.1rem;
}

@media screen and (max-width: 768px) {
    .type__mixed.fixed {
        font-size: 26px;
        font-size: 2.6rem;
    }
}

.type__mixed.icon:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    background: transparent none no-repeat 0 50%;
    background-size: auto 100%;
    background-image: url(../images/icon-phone.svg);
}

.type__mixed.icon button {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: 0 none;
    outline: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #ae8637;
    text-transform: uppercase;
    text-decoration: underline;
}

.type__mixed.icon button:hover,
.type__mixed.icon button:focus {
    color: #444;
}

.type__mixed.down-arrow {
    color: #fdfdfd;
    font-size: 1.57142857142857em;
    margin-top: 60px;
    display: inline-block;
}

.type__mixed.down-arrow em {
    font-size: 0.81818181818182em;
}

.type__mixed.down-arrow:before {
    content: "";
    width: 52px;
    height: 1px;
    display: block;
    background: #ae8637;
    margin: 0 auto 12px;
}

.type__mixed.down-arrow:after {
    content: "";
    display: block;
    height: 25px;
    width: 16px;
    margin: 5px auto 0;
    background: transparent url(../images/icon-arrow-down.png) no-repeat 50% 50%;
    background-size: 12px auto;
    position: relative;
}

.type__mixed.down-arrow.dark {
    color: #444;
}

.type__mixed.down-arrow.dark:before {
    display: none;
}

@media screen and (max-width: 1240px) {
    .type__mixed.down-arrow {
        font-size: 0.85714285714286em;
    }
}

@media screen and (max-width: 768px) {
    .type__mixed.down-arrow {
        position: absolute;
        bottom: 20px;
        left: 18px;
        right: 18px;
        overflow: hidden;
        display: block;
    }

    .type__mixed.down-arrow:before {
        display: none;
    }
}

@media print {
    .type__mixed.down-arrow {
        display: none;
    }
}

@media screen and (max-width: 1240px) {
    .type__mixed {
        font-size: 1.5em;
    }

    .type__mixed.medium,
    .type__mixed.small {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 640px) {
    .type__mixed {
        font-size: 1em;
    }

    .type__mixed.medium,
    .type__mixed.small {
        font-size: 1em;
    }
}

@media screen and (max-height: 1000px) {
    .hide-short {
        display: none;
    }
}

.type__subtitle {
    font-size: 3.42857142857143em;
    line-height: 1.14583333em;
    letter-spacing: 0.2px;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #444;
    margin: 0.5em 0;
    font-weight: 400;
}

.node-landing-page-alternate .type__subtitle.large,
.node-landing-page-floorplans .type__subtitle.large,
.node-blank-page .type__subtitle.large {
    font-size: 2.25em;
}

.node-landing-page-alternate .wysiwyg h4,
.node-landing-page-floorplans .wysiwyg h4 {
    white-space: pre-line;
    font-size: 0.9em;
    white-space: pre-line;
    margin-top: 50px;
    display: block;
}

.type__subtitle.border {
    font-size: 2.5em;
    line-height: 1.14285714285714em;
    letter-spacing: 0.2px;
    padding-left: 35px;
    border-left: 1px solid #ae8637;
    margin: 1em 0;
}

.type__subtitle.extra-large {
    font-size: 3.57142857em;
    line-height: 1.125em;
    margin: 0 0 0.45em;
}

.type__subtitle.extra-large .small {
    display: inline-block;
    font-size: 0.62em;
    line-height: 1em;
    margin-top: -0.3em;
    vertical-align: middle;
}

.type__subtitle.large {
    font-size: 3.42857142857143em;
    line-height: 1.125em;
    margin: 0.6em 0 1em;
}

.node-the-gatesworth .type__subtitle.large {
    font-size: 2.75em;
}

.type__subtitle.medium-large {
    font-size: 2.57142857142857em;
    line-height: 1.33333333333333em;
    letter-spacing: 0.2px;
}

.type__subtitle.medium {
    font-size: 2.5em;
    line-height: 1.14285714285714em;
    letter-spacing: 0.2px;
}

.type__subtitle.medium-large {
    font-size: 2em;
    line-height: 1em;
    letter-spacing: 0.2px;
}

.type__subtitle.medium-small {
    font-size: 2em;
    line-height: 1em;
    letter-spacing: 0.2px;
}

.type__subtitle.small {
    font-size: 1.57142857142857em;
    line-height: 1.27272727272727em;
    letter-spacing: 0.2px;
}

.type__subtitle.extra-small {
    font-size: 1.42857143em;
    line-height: 1.4em;
    letter-spacing: 0.2px;
}

.type__subtitle.white {
    color: #fdfdfd;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.type__subtitle.lightergrey {
    color: #a2a2a2;
}

@media screen and (max-width: 1060px) {
    .type__subtitle.large.border {
        font-size: 2.75em;
        line-height: 1.125em;
    }
}

@media screen and (max-width: 1240px) {
    .type__subtitle {
        font-size: 2.25em;
        line-height: 1.1em;
    }

    .type__subtitle.small {
        font-size: 1.9em;
        line-height: 1.1em;
    }

    .type__subtitle.medium-large {
        font-size: 1.75em;
        line-height: 1.15em;
    }

    .type__subtitle.medium {
        font-size: 1.75em;
    }

    .type__subtitle.small {
        font-size: 1.5em;
    }

    .type__subtitle.border {
        font-size: 1.75em;
        line-height: 1.2em;
    }

    .type__subtitle.large.border {
        font-size: 1.71428571428571em;
        line-height: 1.125em;
        padding: 0;
        border: none;
    }
}

@media screen and (max-width: 640px) {
    .type__subtitle {
        font-size: 1.71428571428571em;
        line-height: 1.14583333333333em;
    }

    .type__subtitle.small {
        font-size: 1.71428571428571em;
        line-height: 1.14583333333333em;
    }

    .type__subtitle.medium-large {
        font-size: 1.25em;
        line-height: 1.15em;
    }

    .type__subtitle.medium {
        font-size: 1.25em;
    }

    .type__subtitle.small {
        font-size: 1.17857142857143em;
    }

    .type__subtitle.border {
        font-size: 1.25em;
        line-height: 1.28571428571429em;
        padding-left: 15px;
    }

    .type__subtitle.white {
        font-style: normal;
        font-size: 2.14285714285714em;
    }

    .type__subtitle.medium-small {
        font-size: 1.07142857142857em;
    }
}

.type__caps {
    text-transform: uppercase;
    text-decoration: none;
    font-family: "acumin-pro-condensed", sans-serif;
    color: #ae8637;
    font-style: normal;
    font-size: 1.28571428571429em;
    line-height: 1em;
    letter-spacing: 0.2px;
    display: inline-block;
    position: relative;
}

.type__caps.small {
    color: #444;
    font-size: 0.45833333333333em;
    display: inline-block;
}

.type__caps.medium {
    font-size: 1.42857143em;
}

.type__caps.dark {
    color: #444;
    font-size: 1.57142857142857em;
}

.type__caps.icon {
    display: block;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.type__caps.icon:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: block;
    background: transparent none no-repeat 50% 50%;
    background-size: auto 100%;
}

@media print {
    .type__caps.icon {
        display: none;
    }
}

.type__caps.icon-document:after {
    background-image: url(../images/icon-document.svg);
}

.type__caps.icon-document:hover {
    color: #000;
}

.type__caps.icon-arrow {
    display: inline-block;
    width: auto;
    padding-right: 40px;
}

.type__caps.icon-arrow:after {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto auto 3px 12px;
    background-image: url(../images/icon-arrow.png);
    background-size: 24px auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.type__caps.icon-arrow:hover:after {
    right: 0;
}

@media print {
    .type__caps.icon-arrow {
        display: none;
    }
}

.type__caps.boxed {
    font-size: 18px;
    font-size: 1.8rem;
    border: 2px solid #ae8637;
    outline: none;
    border: 2px solid #ae8637;
    margin: 0 auto 1em;
    padding: 16px 45px 16px 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 266px;
    text-align: left;
    width: 100%;
    background: transparent url(../images/icon-arrow.png) no-repeat 93% 50%;
    background-size: 16px auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}

.type__caps.boxed.more-spacing {
    margin-bottom: 2.5em;
}

.type__caps.boxed:hover {
    background-color: #ae8637;
    color: #fdfdfd;
    background-image: url(../images/icon-arrow-white.png);
}

@media screen and (max-width: 768px) {
    .type__caps.boxed {
        margin: 30px auto 40px;
        border-width: 1px;
        max-width: 200px;
    }
}

.type__caps.dark-callout__button {
    border: 1px solid #ae8637;
    color: #fdfdfd;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 40px 15px 15px;
    width: 200px;
    margin: 50px auto 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-align: left;
}

.type__caps.dark-callout__button:after {
    right: 14px;
}

.type__caps.dark-callout__button:hover {
    color: #fdfdfd;
    background: #ae8637;
}

.type__caps.dark-callout__button:hover:after {
    background-image: url(../images/icon-arrow-white.png);
    right: 14px;
}

@media screen and (max-width: 768px) {
    .type__caps.dark-callout__button {
        margin-top: 20px;
        padding: 12px 40px 12px 25px;
        width: 170px;
    }

    .type__caps.dark-callout__button:after {
        margin-top: -7px;
    }
}

@media print {
    .type__caps.dark-callout__button {
        display: none;
    }
}

@media screen and (max-width: 1240px) {
    .type__caps {
        font-size: 1.5em;
    }

    .type__caps.dark {
        font-size: 1em;
    }
}

@media screen and (max-width: 640px) {
    .type__caps {
        font-size: 1em;
    }

    .type__caps.icon:after {
        width: 15px;
        height: 15px;
        background-size: 15px auto;
    }
}

.js-form-type-select {
    position: relative;
}

.no-js form .js-form-type-select {
    position: relative;
    width: 100%;
}

.no-js form .js-form-type-select select {
    z-index: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 240px;
    height: 60px;
    margin: 0 auto;
    padding: 17px 16px 16px;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fdfdfd;
    color: #444;
    font-size: 18px;
    font-family: "acumin-pro-condensed", sans-serif;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.no-js form .js-form-type-select select:focus {
    color: #000;
    outline: 0;
    border-color: #ae8637;
}

/* .js form .js-form-type-select .custom-select-container {
    position: relative;
    max-width: 240px;
    margin: 0 auto;
  } */

.js form .js-form-type-select .custom-select-container {
    position: relative;
}

.js form .js-form-type-select select.replaced {
    z-index: 10;
    cursor: pointer;
    display: block;
    position: relative;
    width: 100%;
    height: 45px;
    border: 0;
    line-height: normal;
    opacity: 0;
    font-size: 16px;
}

.js form .js-form-type-select select.replaced:focus + .custom-select > span {
    color: #000;
    outline: 0;
    border-color: #ae8637;
}

.js form .js-form-type-select .custom-select {
    z-index: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.js form .js-form-type-select .custom-select > span {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 45px;
    padding: 8px 16px 8px;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fdfdfd;
    color: #444;
    font-size: 18px;
    font-family: "acumin-pro-condensed", sans-serif;
    line-height: normal;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.js form .js-form-type-select .custom-select span span {
    position: relative;
    display: block;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-image: url(../images/icon-select-arrows.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 12px 19px;
}

.js form .js-form-type-select .custom-select.active > span {
    color: #000;
}

.text-graphic {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 66px);
    max-width: 290px;
    margin: -3px auto 14px;
    border: 1px solid #ae8637;
    border-top: 0 none;
    background-color: rgba(253, 253, 253, 0.5);
    text-align: center;
}

@media screen and (min-width: 548px) {
    .text-graphic {
        margin-top: -23px;
    }
}

.text-graphic__banner {
    position: relative;
    width: 100vw;
    top: -3px;
    left: 50%;
    border-top: 1px solid #ae8637;
    border-bottom: 1px solid #ae8637;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.text-graphic__banner a {
    text-decoration: none;
}

@media screen and (min-width: 548px) {
    .text-graphic__banner {
        width: 547px;
        border: 1px solid #ae8637;
    }
}

.text-graphic__banner-inner {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    display: block;
    margin: 2px;
    padding: 12px;
    background-color: #790000;
    color: #fdfdfd;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
}

.node-landing-page-alternate .text-graphic__banner-inner,
.node-landing-page-floorplans .text-graphic__banner-inner,
.node-blank-page .text-graphic__banner-inner,
.node-home-page-alt .text-graphic__banner-inner {
    font-size: 2.5rem;
    cursor: pointer;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}

.text-graphic__banner-inner span {
    display: block;
}

.node-landing-page-alternate .text-graphic__banner-inner:hover,
.node-landing-page-floorplans .text-graphic__banner-inner:hover,
.node-blank-page .text-graphic__banner-inner:hover,
.node-home-page-alt .text-graphic__banner-inner:hover {
    background-color: #ae8637;
}

@media screen and (max-width: 640px) {
    .text-graphic__banner-inner {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

body:not(.node-the-gatesworth):not(.node-landing-page-alternate):not(.node-landing-page-floorplans) .text-graphic__banner-inner::before,
body:not(.node-the-gatesworth):not(.node-landing-page-alternate):not(.node-landing-page-floorplans) .text-graphic__banner-inner::after {
    content: " \2014 ";
    display: inline-block;
}

.text-graphic__call {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4em;
    letter-spacing: 0.02em;
    color: #666;
    font-family: "acumin-pro-condensed", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0.5em 0.75em;
}

@media screen and (max-width: 640px) {
    .text-graphic__call {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.text-graphic__call a {
    font-size: 33px;
    font-size: 3.3rem;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.no-touchevents .text-graphic__call a:hover,
.no-touchevents .text-graphic__call a:focus {
    color: #666;
}

.site-header {
    z-index: 400;
    position: absolute;
    height: 78px;
    left: 79px;
    right: 79px;
    top: 0;
}

@media screen and (max-width: 1240px) {
    .site-header {
        padding-top: 42px;
    }
}

.toolbar-fixed .site-header {
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    margin: 0 79px;
    position: relative;
}

@media screen and (max-width: 1240px) {
    .toolbar-fixed .site-header {
        margin: 0 18px;
    }
}

.site-header:before,
.site-header:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #ae8637;
    z-index: 30;
}

.site-header:before {
    width: 6.75%;
    left: 0;
}

@media screen and (min-width: 1241px) and (max-width: 1063px) {
    .site-header:before {
        width: 2.75%;
    }
}

.site-header:after {
    right: 0;
    left: calc(9% + 208px);
}

@media screen and (min-width: 1241px) and (max-width: 1063px) {
    .site-header:after {
        left: calc(9% + 130px);
    }
}

.node-home-page .site-header {
    position: fixed;
    top: 0;
    left: 79px;
    right: 79px;
}

@media print {
    .node-home-page .site-header {
        position: relative;
        left: 0;
        right: 0;
    }
}

@media screen and (max-width: 1240px) {
    .site-header {
        height: 43px;
        left: 18px;
        right: 18px;
    }

    .site-header:after {
        right: 0;
        left: calc(8% + 132px);
    }

    .menu-open .site-header {
        position: fixed;
        top: 0;
    }

    .menu-open .site-header.toolbar-fixed {
        position: relative;
        top: auto;
    }

    .node-home-page-alt .site-header,
    .node-landing-page-alternate .site-header,
    .node-landing-page-floorpans .site-header,
    .node-blank-page .site-header,
    .node-home-page .site-header {
        left: 18px;
        right: 18px;
        position: absolute;
    }
}

@media print {
    .site-header {
        position: relative;
        left: 0;
        right: 0;
    }

    .site-header:before,
    .site-header:after {
        display: none;
    }
}

.site-header__logo {
    width: 208px;
    height: 57px;
    display: block;
    position: absolute;
    bottom: -8px;
    left: 97px;
    left: 7.5%;
    z-index: 20;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.site-header__logo img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 1241px) and (max-width: 1063px) {
    .site-header__logo {
        width: 160px !important;
        left: 3.5% !important;
    }
}

@media screen and (max-width: 1240px) {
    .site-header__logo {
        bottom: -3px;
        width: 132px;
        height: 34px;
        left: 7%;
    }
}

@media print {
    .site-header__logo {
        left: auto;
        position: relative;
        margin: 0 auto 30px;
    }
}

.site-header__callout {
    -webkit-box-shadow: 8px 3px 7px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 8px 3px 7px 0px rgba(0, 0, 0, 0.24);
    z-index: 31;
    position: fixed;
    top: 0;
    right: 20px;
}

@media screen and (max-width: 1240px) {
    .site-header__callout {
        left: 0;
        right: 0;
    }
}

.toolbar-fixed .site-header__callout {
    top: 39px;
}

.toolbar-fixed.toolbar-horizontal.toolbar-tray-open .site-header__callout {
    top: 79px;
}

.site-header__callout a {
    display: block;
    background-color: #ae8637;
}

.site-header__callout-main-button {
    display: block;
    height: 42px;
}

@media screen and (min-width: 1241px) {
    .site-header__callout-main-button {
        -webkit-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.07) inset;
        box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.07) inset;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
        width: 186px;
        height: 78px;
        padding: 14px 12px 0 22px;
    }

    .no-touchevents .site-header__callout-main-button {
        -webkit-transition: background-color 0.2s linear;
        transition: background-color 0.2s linear;
    }

    .no-touchevents .site-header__callout-main-button:hover,
    .no-touchevents .site-header__callout-main-button:focus {
        background-color: #790000;
    }
}

.site-footer {
    z-index: 100;
    position: relative;
    border-top: 2px solid #ae8637;
    margin-left: 79px;
    margin-right: 79px;
    padding: 40px 0;
}

.site-footer br {
    display: none;
}

.node-home-page .site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

@media screen and (max-width: 1400px) {
    .node-home-page .site-footer {
        height: 190px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1360px) {
    .node-home-page .site-footer {
        height: 240px;
    }
}

@media print {
    .node-home-page .site-footer {
        position: relative;
    }
}

@media screen and (max-width: 1240px) {
    .site-footer {
        margin-left: 18px;
        margin-right: 18px;
        padding: 70px 0 27px;
    }

    .site-footer br {
        display: block;
    }

    .node-home-page-alt .site-footer,
    .node-landing-page-alternate .site-footer,
    .node-landing-page-floorplans .site-footer,
    .node-blank-page .site-footer,
    .node-home-page .site-footer {
        position: relative;
        border-top: none;
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .node-experience-page .site-footer,
    .node-story-detail .site-footer,
    .node-simple-landing-page .site-footer,
    .node-our-stories-landing .site-footer {
        border: none;
        padding-top: 0;
    }
}

@media print {
    .site-footer {
        text-align: center;
    }
}

.site-footer__copyright {
    color: #888;
    text-align: center;
    clear: both;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666667em;
    letter-spacing: 0.0166667em;
    margin: 0;
    padding: 2em 0 1em;
}

@media screen and (max-width: 1240px) {
    .site-footer__copyright {
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 1.2727273em;
        letter-spacing: 0.0181818em;
    }
}

.site-footer__copyright p {
    margin: 0 auto 1em;
}

@media screen and (min-width: 769px) {
    .site-footer__copyright p {
        max-width: 50%;
    }
}

.site-footer__copyright p.footer-ccre {
    color: black;
    font-size: 1.415rem;
    margin-bottom: 2em;
    margin-top: 2em;
    line-height: 1.25;
}

.site-footer__copyright p.footer-ccre br {
    display: block;
}

@media screen and (min-width: 769px) {
    .site-footer__copyright p.footer-ccre {
        line-height: 1.5;
    }
}

.site-footer__copyright p:last-child {
    margin-bottom: 0;
}

.site-footer__navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
    width: 50%;
    text-align: right;
}

.site-footer__navigation li {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 5px;
}

@media screen and (min-width: 1241px) {
    .site-footer__navigation li:last-of-type a {
        padding-right: 0;
    }
    .site-footer__navigation li:last-of-type a:before {
        right: 0;
    }
}

.site-footer__navigation a {
    white-space: nowrap;
}

@media screen and (max-width: 1360px) {
    .site-footer__navigation {
        width: calc(100% - 200px);
    }
}

@media screen and (max-width: 1240px) {
    .site-footer__navigation {
        width: 100%;
        float: none;
        text-align: left;
        margin: 0 auto 20px;
        clear: both;
        max-width: 200px;
    }

    .site-footer__navigation li {
        margin: 34px 0 0;
        display: block;
    }
}

@media print {
    .site-footer__navigation {
        display: none;
    }
}

.site-footer__location {
    float: left;
    width: 50%;
    font-size: 14.15px;
    font-size: 1.415rem;
    line-height: 1.5865724em;
    letter-spacing: 0.0141343em;
}

.site-footer__location address {
    font-style: normal;
    display: inline-block;
    vertical-align: baseline;
}

.site-footer__location address a {
    margin-left: 10px;
}

@media print {
    .site-footer__location address a {
        display: none;
    }
}

@media screen and (max-width: 1360px) {
    .site-footer__location {
        width: 200px;
    }

    .site-footer__location br {
        display: block;
    }

    .site-footer__location address {
        display: block;
        text-align: left;
    }

    .site-footer__location address a {
        margin-top: 6px;
        margin-left: 0;
    }
}

@media screen and (max-width: 1240px) {
    .site-footer__location {
        width: 100%;
        float: none;
        text-align: center;
    }

    .site-footer__location address {
        display: block;
        max-width: 200px;
        margin: 20px auto;
        text-align: center;
    }

    .site-footer__location address a {
        margin: 40px 0 34px;
        float: left;
        clear: both;
    }
}

@media print {
    .site-footer__location {
        width: 100%;
    }
}

.site-footer__location--title {
    display: inline-block;
    vertical-align: baseline;
    margin: 0 10px 0 0;
}

@media screen and (max-width: 1240px) {
    .site-footer__location--title {
        margin: 0;
    }
}

@media print {
    .site-footer__location--title {
        display: block;
    }
}

/**
   * An Intrinsic Ratio Component
   *
   * @credit
   * http://daverupert.com/2015/12/intrinsic-placeholders-with-picture/
   */
.intrinsic {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background: #f0f0f0;
}

.intrinsic--banner {
    overflow: hidden;
    padding-top: 80.15625%;
    z-index: 0;
}

@media screen and (min-width: 641px) {
    .intrinsic--banner {
        padding-top: 39.8653702%;
    }
}

@media screen and (min-width: 641px) {
    .intrinsic--banner .intrinsic {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 640px) {
    .intrinsic--banner > .intrinsic__item {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 142.5%;
    }
}

.intrinsic--4x3 {
    padding-top: 75%;
}

.intrinsic--16x9 {
    padding-top: 56.25%;
}

.intrinsic__item-wrapper {
    position: absolute;
    inset: 0;
}

.intrinsic__item-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intrinsic__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    display: block;
    border: 0;
}

/* Captions
  ------------------------------------------------------------ */
figure {
    display: block;
    margin-bottom: 2em;
}

@media screen and (max-width: 500px) {
    figure {
        width: 100% !important;
    }
}

figure img,
figure object {
    display: block;
}

figure figcaption,
.image-caption {
    margin: 0.1em 0 0;
    display: block;
    color: #838383;
    font-style: normal;
    font-size: 0.7em;
    line-height: 1.71428571428571em;
    padding: 20px 0 0;
}

.image-caption {
    padding-top: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    figure figcaption {
        font-size: 0.85714285714286em;
    }
}

/* Images
  ------------------------------------------------------------ */
.align-center {
    margin-left: auto;
    margin-right: auto;
}

.align-left {
    float: left;
    clear: left;
    margin-right: 1.25em;
}

.align-right {
    float: right;
    clear: right;
    margin-left: 1.25em;
}

.align-left,
.align-right,
.align-center,
.align-none {
    margin-top: 0.2em;
    margin-bottom: 1.25em;
}

.align-left .align-left,
.align-left .align-right,
.align-left .align-center,
.align-left .align-none,
.align-right .align-left,
.align-right .align-right,
.align-right .align-center,
.align-right .align-none,
.align-center .align-left,
.align-center .align-right,
.align-center .align-center,
.align-center .align-none,
.align-none .align-left,
.align-none .align-right,
.align-none .align-center,
.align-none .align-none {
    clear: none;
    float: none;
    margin: 0;
}

.image__feature {
    margin: 0;
    padding: 0;
    border: 1px solid #ccc8c0;
    position: relative;
    clear: both;
}

.image__feature-cta {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
    .image__feature-cta {
        top: auto;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-bottom: 13.9%;
    }
}

.image__feature.with-caption {
    margin-bottom: 130px;
}

@media screen and (max-width: 768px) {
    .image__feature.with-caption {
        margin: 0 auto;
        width: 94%;
        border: none;
    }
}

.image__feature.with-caption.more-spacing {
    margin-bottom: 160px;
}

.image__feature img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
}

.testimonial + .image__feature {
    margin-top: 18%;
}

@media print {
    .testimonial + .image__feature {
        margin-top: 0;
    }
}

.image__features-wrap .image__feature {
    border: none;
}

.image__features-wrap .image__feature .image__feature--caption {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    opacity: 0;
}

@media print {
    .image__features-wrap .image__feature .image__feature--caption {
        opacity: 1;
    }
}

.image__features-wrap .image__feature.with-caption {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .image__features-wrap .image__feature.with-caption {
        width: 100%;
    }
}

.image__features-wrap .image__feature:nth-of-type(odd) .image__feature--caption {
    margin-left: 40px;
}

@media print {
    .image__features-wrap .image__feature:nth-of-type(odd) .image__feature--caption {
        margin-left: auto;
    }
}

.image__features-wrap .image__feature:nth-of-type(even) .image__feature--caption {
    left: auto;
    right: 9.5%;
    margin-right: 40px;
}

@media print {
    .image__features-wrap .image__feature:nth-of-type(even) .image__feature--caption {
        margin-right: auto;
        right: auto;
    }
}

.image__features-wrap .image__feature.js-sr-start:nth-of-type(odd) .image__feature--caption {
    margin-left: 0;
    opacity: 1;
}

.image__features-wrap .image__feature.js-sr-start:nth-of-type(even) .image__feature--caption {
    margin-right: 0;
    opacity: 1;
}

@media screen and (max-width: 1240px) {
    .image__features-wrap .image__feature {
        overflow: visible;
        -webkit-transform: none !important;
        transform: none !important;
    }

    .image__features-wrap .image__feature.js-sr-start:nth-of-type(odd) .image__feature--caption {
        margin-left: auto;
    }

    .image__features-wrap .image__feature.js-sr-start:nth-of-type(even) .image__feature--caption {
        margin-right: auto;
    }

    .image__features-wrap .image__feature:nth-of-type(odd) .image__feature--caption,
    .image__features-wrap .image__feature:nth-of-type(even) .image__feature--caption {
        position: absolute;
        z-index: 10;
        margin: auto;
        left: 50%;
        right: auto;
        bottom: -30px;
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .image__features-wrap .image__feature .image__feature--caption {
        opacity: 1 !important;
    }
}

@media screen and (max-width: 768px) {
    .node-story-detail .image__feature,
    .node-simple-landing-page .image__feature {
        border: none;
    }

    .node-story-detail .image__feature:before,
    .node-story-detail .image__feature:after,
    .node-simple-landing-page .image__feature:before,
    .node-simple-landing-page .image__feature:after {
        top: 43px;
        content: "";
        display: block;
        position: absolute;
        width: 2px;
        background: #ae8637;
        bottom: 0;
        z-index: 50;
    }

    .node-story-detail .image__feature:before,
    .node-simple-landing-page .image__feature:before {
        left: 18px;
    }

    .node-story-detail .image__feature:after,
    .node-simple-landing-page .image__feature:after {
        right: 18px;
    }
}

@media print {
    .image__feature {
        width: 60%;
        margin: 30px auto;
        display: block;
        border: none;
    }
}

.image__feature--caption {
    position: absolute;
    background: #fdfdfd;
    width: 100%;
    max-width: 324px;
    left: 9.5%;
    bottom: 0;
    margin-bottom: -100px;
    min-height: 320px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.image__feature--caption.box {
    position: absolute;
}

.image__feature--caption.space-around {
    margin-bottom: 80px;
}

@media print {
    .image__feature--caption.space-around {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .image__feature--caption {
        margin-bottom: 0;
        position: relative;
        width: 84%;
        margin: -75px auto 60px;
        left: auto;
        min-height: 0;
    }

    .image__feature--caption.box {
        position: relative;
    }
}

@media screen and (max-width: 640px) {
    .image__feature--caption p {
        font-size: 0.85714285714286em;
        line-height: 1.45833333333333em;
    }
}

@media print {
    .image__feature--caption {
        position: relative;
        max-width: 100%;
        left: 0;
        text-align: center;
        min-height: 0;
        bottom: auto;
        padding-bottom: 0;
        margin-bottom: 0;
        opacity: 1;
    }

    .image__feature--caption.box {
        position: relative;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
    }

    .image__feature--caption.box:before {
        display: none;
    }
}

.image__shadow {
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 50px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 50px;
}

.image__border {
    position: relative;
}

.image__border:before {
    content: "";
    display: block;
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border: 2px solid #ae8637;
}

@media screen and (max-width: 640px) {
    .image__border:before {
        border-width: 1px;
        top: 16px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

.image__callouts-box {
    position: relative;
    width: 73%;
    padding: 2% 0;
    clear: both;
}

.image__callouts-box img {
    display: block;
    width: 100%;
    height: auto;
}

.image__callouts-box.right {
    float: right;
}

@media screen and (max-width: 768px) {
    .image__callouts-box {
        width: 100%;
        margin: 90px 0;
        clear: none;
        float: none;
    }

    .image__callouts-box.right {
        float: none;
    }
}

@media print {
    .image__callouts-box {
        margin: 0 auto;
        text-align: center;
        padding: 0;
    }

    .image__callouts-box.right {
        float: none;
    }
}

.image__callouts-caption {
    position: absolute;
    bottom: 22%;
    max-width: 320px;
    right: -50px;
    -webkit-transform: translateX(70%);
    transform: translateX(70%);
    min-height: 325px;
    opacity: 0;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.image__callouts-caption.box {
    position: absolute;
    z-index: 60;
}

.image__callouts-box.right .image__callouts-caption {
    right: auto;
    left: -50px;
    -webkit-transform: translateX(-70%);
    transform: translateX(-70%);
}

.js-sr-start .image__callouts-caption {
    opacity: 1;
    right: 0;
}

.image__callouts-box.right.js-sr-start .image__callouts-caption {
    right: auto;
    left: 0;
}

@media screen and (max-width: 768px) {
    .image__callouts-caption {
        right: auto;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        width: 76%;
        margin: 0 auto;
        bottom: auto;
        top: -14px;
        min-height: 240px;
        opacity: 1;
    }

    .image__callouts-caption p {
        font-size: 0.85714285714286em;
        line-height: 1.45833333333333em;
    }

    .image__callouts-caption.box {
        position: relative;
    }

    .image__callouts-caption.box:not(.mobile-full-width) {
        padding-bottom: 70px;
    }

    .image__callouts-box.right .image__callouts-caption {
        left: auto;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media print {
    .image__callouts-caption {
        opacity: 1;
        position: relative;
        left: 0;
        top: auto;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
        margin: 30px 0;
        width: 100%;
        max-width: 100%;
        bottom: auto;
        min-height: 0;
    }

    .image__callouts-caption.box {
        position: relative;
    }

    .image__callouts-box.right .image__callouts-caption {
        left: 0;
        top: auto;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
        right: auto;
        margin: 30px 0;
        width: 100%;
        max-width: 100%;
    }
}

.image__media {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: calc(100vh - 98px);
    min-height: 510px;
}

.image__media.right .image__feature--caption {
    left: auto;
    right: 6.75%;
    margin-right: 40px;
}

@media print {
    .image__media.right .image__feature--caption {
        right: auto;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .image__media {
        height: 510px;
        -webkit-transform: none !important;
        transform: none !important;
    }

    .image__media .image__feature--caption,
    .image__media.right .image__feature--caption {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%) !important;
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        z-index: 100;
        margin: auto;
        margin-bottom: -30px;
        top: auto;
        position: absolute;
    }
}

@media print {
    .image__media {
        height: auto;
        min-height: 0;
    }
}

.image__media-background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.image__media-background img,
.image__media-background video {
    top: 50%;
    left: 50%;
    min-width: calc(100% + 2px);
    min-height: calc(100% + 2px);
    width: auto;
    height: auto;
    display: block;
    z-index: 0;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.image__media-background img.mobile-only {
    display: none;
}

.image__media-background:after {
    content: "";
    display: block;
    position: absolute;
    height: 300px;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.75)));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .image__media-background video {
        display: none;
    }

    .image__media-background img.mobile-only {
        display: block;
    }
}

@media print {
    .image__media-background {
        display: none;
    }
}

.intro {
    width: 72%;
    max-width: 890px;
    margin: -80px auto 30px;
    text-align: center;
    font-size: 1em;
}

.intro.box {
    padding: 65px 6%;
}

.intro.box .text-graphic__banner {
    display: inline-block;
    width: auto;
    margin: 12px auto 0 auto;
    left: 0;
    transform: none;
}

.intro.box .text-graphic__banner .text-graphic__banner-inner {
    padding: 12px 36px;
}

.intro.with-navigation.box {
    margin: 80px auto -24px;
    max-width: 1140px;
    width: 80%;
    padding: 60px 45px 24px;
}

.intro.with-navigation.box.negative-top {
    margin-top: -5%;
    margin-bottom: 220px;
}

@media screen and (max-width: 1240px) {
    .intro.with-navigation.box {
        margin: 0 auto 30px;
        width: 60%;
        max-width: 270px;
        padding: 0;
        z-index: 20;
        position: relative;
    }

    .intro.with-navigation.box.negative-top {
        margin-bottom: 20px;
        max-width: 100%;
        width: 80%;
        z-index: 200;
        padding: 40px 20px;
    }
}

@media screen and (max-width: 768px) {
    .intro {
        width: 100%;
        margin-top: 0;
    }

    .intro.box {
        padding: 45px 6% 50px;
    }

    .intro.with-navigation.box.negative-top {
        margin-top: 0;
        width: 100%;
    }
}

@media print {
    .intro {
        margin: 30px auto 30px;
        width: 100%;
        max-width: 100%;
    }

    .intro.box {
        padding: 0;
    }
}

@media screen and (max-width: 1240px) {
    .with-navigation .intro__title {
        display: none;
    }

    .with-navigation .intro__title.mobile-show {
        display: block;
    }
}

.intro__subheadline {
    width: 90%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.callouts {
    text-align: center;
    padding: 50px 0;
    margin: 0 auto;
    width: 86%;
    max-width: 1170px;
}

@media screen and (max-width: 1240px) {
    .callouts {
        width: 72%;
    }
}

@media screen and (max-width: 768px) {
    .callouts {
        padding: 0;
        text-align: left;
    }
}

.callouts__subtitle {
    margin: 0.85em auto;
    width: 90%;
    max-width: 620px;
}

@media screen and (max-width: 768px) {
    .callouts__subtitle {
        width: 100%;
    }
}

@media print {
    .callouts__subtitle {
        max-width: 100%;
        width: 100%;
    }
}

.callouts__wrap {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 66px auto;
}

@media screen and (max-width: 1240px) {
    .callouts__wrap {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 -10px 27px;
        width: calc(100% + 20px);
    }
}

@media print {
    .callouts__wrap {
        display: block;
        width: 100%;
    }
}

.callouts__box {
    width: 28%;
    text-align: left;
    position: relative;
}

.callouts__box.box {
    padding: 35px 40px 80px 40px;
}

.callouts__box p {
    padding-right: 14px;
}

@media screen and (max-width: 1240px) {
    .callouts__box {
        width: 100%;
        margin: 30px 0;
        -webkit-box-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .callouts__box.box:not(.mobile-full-width) {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 640px) {
    .callouts__box p {
        font-size: 0.85714285714286em;
        line-height: 1.375em;
    }
}

@media print {
    .callouts__box {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .callouts__box.box {
        max-width: 100%;
        padding: 0;
    }
}

.callouts__link {
    position: absolute;
    bottom: 48px;
    left: 40px;
    right: 42px;
}

.callout-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 1240px) {
    .callout-list li {
        float: left;
        text-align: center;
    }
}

@media screen and (max-width: 1240px) {
    .callout-list li:first-child {
        width: 70%;
    }
}

@media screen and (max-width: 1240px) {
    .callout-list li:last-child {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 30%;
        border-left: 1px solid #fdfdfd;
    }
}

.large-callouts {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 60px 0 0;
    /* margin: 0; */
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 460px) {
    .large-callouts {
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media print {
    .large-callouts {
        display: block;
        width: 100%;
    }
}

.large-callouts__item {
    max-width: 520px;
    margin-bottom: 27px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
    text-align: center;
    background: transparent url(../images/background-light-texture.gif) repeat 0 0;
}

@media screen and (min-width: 641px) {
    .large-callouts__item {
        width: 48.5981308%;
    }
}

.large-callouts__item h4,
.large-callouts__item p {
    color: #444;
}

.large-callouts__link {
    text-decoration: none;
}

.large-callouts__link:hover .large-callouts__figure::before,
.large-callouts__link:focus .large-callouts__figure::before {
    opacity: 0;
}

.large-callouts__link:hover .large-callouts__cta,
.large-callouts__link:focus .large-callouts__cta {
    color: #000;
}

.large-callouts__figure {
    position: relative;
    margin: 0;
}

.large-callouts__figure img {
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 293;
    object-fit: cover;
}

.large-callouts__figure::before {
    content: "";
    z-index: 2;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.large-callouts__cta {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.large-callouts__content {
    padding: 20px 48px;
}

/* Large Callouts - No Video */

.large-callouts-no-video .large-callouts__item {
}

.large-callouts-no-video a.large-callouts__link .large-callouts__figure {
    overflow: hidden;
}

.large-callouts-no-video a.large-callouts__link .large-callouts__figure img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.large-callouts-no-video a.large-callouts__link:hover .large-callouts__figure img {
    opacity: 0.9;
}

.large-callouts-no-video a.large-callouts__link:hover .large-callouts__figure img {
    opacity: 0.9;
}

.large-callouts-no-video .large-callouts__figure:before {
    content: none;
}

.large-callouts-no-video blockquote {
    margin: 0;
    padding: 0;
}

.large-callouts-no-video blockquote p {
    margin-top: 5px;
}

.large-callouts-no-video blockquote:before {
    left: 10px;
    top: 0;
    content: none;
    /* transform: translatex(-50%); */
}

.large-callouts-no-video cite {
    display: block;
    color: #ae8637;
}

.copy {
    width: 72%;
    max-width: 890px;
    margin: 60px auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 90px;
    clear: both;
}

@media screen and (min-width: 1241px) {
    /* .node-the-gatesworth .slides > div:first-of-type {
    margin-bottom: -100px;
  } */
}

.copy.space-around {
    margin: 200px auto 170px;
}

.copy.medium {
    margin: 64px auto 90px;
}

.copy.large {
    margin: -14% auto 60px;
    max-width: 1135px;
    width: 80%;
}

.copy.white {
    color: #fdfdfd;
    text-align: center;
    position: relative;
    z-index: 1;
    display: table-cell;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5% 24% 0;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .copy {
        padding: 0;
    }

    .copy.space-around {
        margin: 80px auto 80px;
    }

    .copy.large {
        margin: 0;
        width: 100%;
    }

    .node-our-stories-landing .copy {
        margin: auto;
    }

    .copy.white {
        padding: 0 14%;
        margin: 0;
    }

    .copy.white:before {
        content: "";
    }
}

@media screen and (max-width: 640px) {
    .copy.large {
        margin: -22% 0 0;
    }

    .node-floor-plan-page .copy.large {
        margin-top: 0;
    }
}

@media print {
    .copy {
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .copy.space-around,
    .copy.large,
    .copy.white {
        margin: 20px auto;
        width: 100%;
        display: block;
        padding: 0;
    }
}

.copy__title,
.copy__subtitle {
    text-align: center;
    width: calc(100% + 180px);
    margin-left: -90px;
    margin-right: -90px;
}

.copy.box .copy__title,
.copy.box .copy__subtitle {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .copy__title,
    .copy__subtitle {
        width: 100%;
        margin: 0;
    }
}

@media print {
    .copy__title,
    .copy__subtitle {
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width: 768px) {
    .copy__title {
        text-align: left;
    }

    .node-error-page .copy__title,
    .large .copy__title {
        text-align: center;
    }
}

.copy__wysiwyg.centered {
    text-align: center;
}

.large .copy__wysiwyg {
    max-width: 600px;
    margin: 0 auto;
    width: 90%;
}

@media screen and (max-width: 768px) {
    .node-our-stories-landing .copy__wysiwyg {
        text-align: left;
    }
}

.copy__subtitle {
    margin-top: 1em;
    margin-bottom: 1.78em;
}

.large .copy__subtitle {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.copy__subtitle.small-space {
    margin-top: 0;
    margin-bottom: 1.1em;
}

@media screen and (max-width: 768px) {
    .copy__subtitle.small-space {
        text-align: left;
    }
}

.copy__header {
    padding: 54px 0 24px;
}

@media screen and (max-width: 768px) {
    .copy__header {
        padding: 0 0 1px;
    }

    .node-our-stories-landing .copy__header {
        text-align: left;
    }
}

.copy__footer {
    border-top: 2px solid #ae8637;
    padding: 14px 0 40px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    margin: 50px auto 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
}

@media screen and (max-width: 768px) {
    .copy__footer {
        padding: 40px 0;
    }
}

@media print {
    .copy__footer {
        display: none;
    }
}

.copy-left-border {
    position: relative;
    margin-top: 2.14285714em;
    padding: 0 0 1em;
}

.copy-left-border::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -47px;
    bottom: 0;
    width: 1px;
    background-color: #ae8637;
}

.copy-left-border > *:first-child {
    margin-top: 0;
}

.copy-left-border > *:last-child {
    margin-bottom: 0;
}

.contact {
    position: relative;
    margin: 160px auto;
    width: 76%;
    max-width: 1070px;
    text-align: center;
}

.node-landing-page-floorplans .slides {
    z-index: 100;
}

.node-landing-page-alternate .slides .slide,
.node-landing-page-floorplans .slides .slide {
    height: auto;
}

.node-landing-page-alternate .slides .slide__half-banner,
.node-landing-page-floorplans .slides .slide__half-banner {
    text-align: right;
}

.node-landing-page-alternate .contact,
.node-landing-page-floorplans .contact,
.node-blank-page .contact {
    margin: 80px auto 160px auto;
}

/* .node-landing-page-alternate .slides .slide__copy,
.node-landing-page-alternate .slides .slide__half-content .text-graphic, */
.node-landing-page-floorplans .slides .slide__copy,
.node-landing-page-floorplans .slides .slide__half-content .text-graphic {
    display: none;
}

.node-landing-page-alternate .slide__image,
.node-landing-page-floorplans .slide__image {
    background-position: top 15% center;
}

.node-landing-page-alternate .copy,
.node-landing-page-floorplans .copy {
    max-width: 1100px;
}

.node-landing-page-alternate .copy a,
.node-landing-page-floorplans .copy a {
    color: #ae8637;
}

.node-landing-page-alternate .slide.initial,
.node-landing-page-floorplans .slide.initial {
    margin-bottom: 80px;
}

.node-landing-page-alternate:not(.node-senior-living-your-way):not(.node-224) .site-article .copy:last-child,
.node-landing-page-floorplans .site-article .copy:last-child {
    width: 100%;
    max-width: 100vw;
}

.node-landing-page-alternate:not(.node-senior-living-your-way):not(.node-224) .site-article .copy:last-child > div,
.node-landing-page-floorplans .site-article .copy:last-child > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.node-landing-page-alternate:not(.node-senior-living-your-way) .site-article .copy:last-child > div img,
.node-landing-page-floorplans .site-article .copy:last-child > div img {
    width: 49%;
    margin-bottom: 2%;
    height: auto;
}

.node-landing-page-alternate:not(.node-senior-living):not(.node-senior-living-your-way) .site-article .slides + .copy img {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    display: block;
}

@media screen and (max-width: 1240px) {
    .node-landing-page-alternate .slides picture,
    .node-landing-page-floorplans .slides picture {
        top: 25px;
        position: relative;
    }

    .node-landing-page-alternate .slide .contact,
    .node-landing-page-floorplans .slide .contact {
        margin: 30px 0;
    }

    /* .node-landing-page-alternate #contact-form,
  .node-landing-page-floorplans #contact-form {
    display: none;
  } */

    .node-landing-page-alternate:not(.node-senior-living-your-way) .site-article .copy:last-child > div img,
    .node-landing-page-floorplans .site-article .copy:last-child > div img {
        width: 100%;
    }
}

@media screen and (min-width: 1282px) {
    /* .node-landing-page-alternate .slide.initial {
    margin-bottom: 100px;
  } */

    .node-landing-page-alternate .slide.initial,
    .node-landing-page-floorplans .slide.initial {
        /* margin-bottom: 200px; */
    }
}

@media screen and (min-width: 1241px) {
    .node-landing-page-alternate .slide,
    .node-landing-page-floorplans .slide {
        height: auto;
    }

    .node-landing-page-alternate .slides .slide__half-banner,
    .node-landing-page-floorplans .slides .slide__half-banner {
        background-position: 35% center;
        height: 50vh;
        min-height: 650px;
    }

    /* .node-landing-page-alternate .slides .slide__half-content {
    margin-top: calc(-650px + 45px) !important;
  } */

    .node-landing-page-floorplans .slides .slide__half-content {
        margin-top: calc(-39.8653702% + 100px);
    }

    .node-landing-page-alternate .slides + .copy {
        margin-top: 200px;
    }

    .node-landing-page-alternate .slide.initial {
        margin-bottom: 50px;
    }

    #contact-form-banner {
        position: absolute;
        width: 35%;
        max-width: 650px;
        display: inline-block;
        left: calc(65% - 120px);
        transform: translateY(0) !important;
        margin: 0;
        top: 70px;
        padding: 40px;
    }

    #contact-form-banner:before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 1px solid #ae8637;
    }

    #contact-form-banner .contact__title {
        margin-top: 0;
    }

    #contact-form-banner .form-item {
        /* margin: 0px 2% 5px; */
    }

    #contact-form-banner label {
        margin: 0.9em 0 0.5em;
    }

    #contact-form-banner input[type="text"],
    #contact-form-banner input[type="email"],
    #contact-form-banner input[type="tel"] {
        padding: 5px !important;
    }

    #contact-form-banner select,
    #contact-form-banner .custom-select > span {
        height: 35px;
    }

    #contact-form-banner .custom-select > span {
        padding: 4px 16px 4px;
    }

    #contact-form-banner .type__subtitle {
        font-size: 1.25em;
        padding: 0;
    }

    #contact-form-banner .js-form-type-checkbox {
        width: 90%;
        margin: 0 auto;
    }

    #contact-form-banner .js-form-type-checkbox input + label::before {
        width: 15px;
        height: 15px;
    }

    #contact-form-banner .js-form-type-checkbox input + label {
        line-height: 1.2;
    }
}

@media screen and (min-width: 1241px) and (max-width: 1200px) {
    #contact-form-banner {
        width: 45%;
        left: calc(55% - 90px);
    }

    #contact-form-banner .form-item {
        width: 100%;
        /* margin: 0 auto; */
    }
}

@media screen and (max-width: 1240px) {
    #contact-form-banner {
        display: none;
    }
}

#contact-form-banner input[type="submit"] {
    padding: 8px 45px 8px 12px;
    font-size: 18px;
}

#contact-form-banner .type__subtitle {
    display: none !important;
}

.contact small,
.contact form {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
}

.contact.box {
    padding: 55px;
    z-index: 70;
}

.slide .contact {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    max-width: 1070px;
    width: 100%;
}

@media screen and (max-width: 1240px) {
    .slide .contact {
        position: relative;
        top: auto;
        left: auto;
        margin: 60px auto 30px;
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        width: 100%;
        margin: 70px auto 35px;
    }

    .contact.box {
        padding: 50px 20px;
    }
}

@media print {
    .contact {
        display: none;
    }
}

.contact__subtitle {
    padding: 0 17%;
    margin: 0.65em 0;
}

@media screen and (max-width: 768px) {
    .contact__subtitle {
        padding: 0 10px;
    }
}

.contact__subtitle,
.contact__title {
    position: relative;
    z-index: 10;
}

.floor-plans {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: -60px 0 0;
    /* margin: 0; */
    padding: 0;
    list-style: none;
}

@media screen and (min-width: 641px) {
    .floor-plans {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 640px) {
    .floor-plans {
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media print {
    .floor-plans {
        display: block;
        width: 100%;
    }
}

.floor-plans__plan {
    max-width: 325px;
    background: transparent url(../images/background-light-texture.gif) repeat 0 0;
    margin-bottom: 40px;
}

@media screen and (min-width: 641px) {
    .floor-plans__plan {
        width: 47.5%;
    }
}

@media screen and (min-width: 1241px) {
    .floor-plans__plan {
        width: 30.3738318%;
    }
}

.floor-plans__plan img {
    z-index: 0;
    position: relative;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.floor-plans__link {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-direction: column;
    -webkit-box-orient: vertical;
    -ms-flexbox-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    text-decoration: none;
    padding-bottom: 20px;
    text-align: center;
}

.floor-plans__link::before {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.floor-plans__link:hover::before,
.floor-plans__link:focus::before {
    opacity: 0;
}

.floor-plans__link:hover .floor-plans__content,
.floor-plans__link:focus .floor-plans__content {
    border-color: #000;
}

.floor-plans__link:hover .floor-plans__cta,
.floor-plans__link:focus .floor-plans__cta {
    color: #000;
}

.floor-plans__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    border: 2px solid #ae8637;
    margin: -28px 20px 14px;
    padding: 10px 20px 20px;
    background: transparent url(../images/background-light-texture.gif) repeat 0 0;
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
}

.floor-plans__content h4,
.floor-plans__content p {
    color: #444;
}

.floor-plans__content .type__mixed {
    color: #ae8637;
}

.floor-plans__content img {
    margin: 0 auto 2.5rem;
}

.floor-plans__cta {
    margin: 0 24px;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

form,
.form {
    font-size: 1em;
}

form input[type="text"],
form input[type="search"],
form input[type="tel"],
form input[type="password"],
form input[type="url"],
form input[type="email"],
form input[type="color"],
form input[type="date"],
form input[type="datetime"],
form input[type="month"],
form input[type="range"],
form input[type="time"],
form input[type="week"],
form input[type="datetime-local"],
form input[type="number"],
form textarea,
.form input[type="text"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="url"],
.form input[type="email"],
.form input[type="color"],
.form input[type="date"],
.form input[type="datetime"],
.form input[type="month"],
.form input[type="range"],
.form input[type="time"],
.form input[type="week"],
.form input[type="datetime-local"],
.form input[type="number"],
.form textarea {
    border: 1px solid #e4e4e4;
    font-size: 16px;
    line-height: 1em;
    font-family: "Playfair Display", serif;
    font-style: italic;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    color: #ae8637;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}

form input[type="search"] {
    height: 55px;
}

form input[type="text"]:focus,
form input[type="search"]:focus,
form input[type="tel"]:focus,
form input[type="password"]:focus,
form input[type="url"]:focus,
form input[type="email"]:focus,
form input[type="color"]:focus,
form input[type="date"]:focus,
form input[type="datetime"]:focus,
form input[type="month"]:focus,
form input[type="range"]:focus,
form input[type="time"]:focus,
form input[type="week"]:focus,
form input[type="datetime-local"]:focus,
form input[type="number"]:focus,
form textarea:focus,
.form input[type="text"]:focus,
.form input[type="search"]:focus,
.form input[type="tel"]:focus,
.form input[type="password"]:focus,
.form input[type="url"]:focus,
.form input[type="email"]:focus,
.form input[type="color"]:focus,
.form input[type="date"]:focus,
.form input[type="datetime"]:focus,
.form input[type="month"]:focus,
.form input[type="range"]:focus,
.form input[type="time"]:focus,
.form input[type="week"]:focus,
.form input[type="datetime-local"]:focus,
.form input[type="number"]:focus,
.form textarea:focus {
    border-color: #ae8637;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

form textarea,
.form textarea {
    font-size: 1em;
    line-height: 1.2em;
}

form label,
.form label {
    text-transform: uppercase;
    font-family: "acumin-pro-condensed", sans-serif;
    color: #4f4e4e;
    letter-spacing: 0.2px;
    font-size: 1em;
    line-height: 1.42857142857143em;
    display: block;
    margin: 0.9em 0;
    text-align: left;
    position: relative;
}

form label.form-required:after,
.form label.form-required:after {
    content: " * ";
}

@media screen and (max-width: 768px) {
    form label,
    .form label {
        margin: 0.75em 0;
        font-size: 0.8em;
    }
}

.form-item {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    box-sizing: border-box;
    flex: 1 1 45%;
    margin: 0 5px 5px;
}

.form-item.js-form-type-select {
    flex: none;
    margin: 0 auto 20px;
    max-width: 300px;
}

.form-item.js-form-type-select label {
    text-align: center;
}

@media screen and (min-width: 769px) {
    .form-item.js-form-type-textarea {
        width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (max-width: 768px) {
    .form-item {
        width: 100%;
        margin: 0 0 10px;
        flex-basis: 100%;
    }
}

/* .contact .js-form-type-checkbox,
  .contact .js-form-type-select {
    display: block;
    width: 100%;
    margin: 0 0 17px;
    text-align: center;
  } */

.contact .js-form-type-checkbox {
    display: block;
    width: 100%;
    margin: 0 0 25px;
    flex-basis: 100%;
    text-align: center;
}

.js-form-type-checkbox {
    position: relative;
}

.js-form-type-checkbox input {
    position: absolute;
    opacity: 0;
}

.js-form-type-checkbox input + label::before {
    content: "";
    display: inline-block;
    margin-right: 9px;
    border: 1px solid #4f4e4e;
    width: 22px;
    height: 22px;
    border-radius: 3px;
    vertical-align: middle;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

@media screen and (max-width: 768px) {
    .js-form-type-checkbox input + label::before {
        position: absolute;
        top: 2px;
        left: 0;
        width: 12px;
        height: 12px;
    }
}

.js-form-type-checkbox input:focus + label::before {
    border-color: #ae8637;
}

.js-form-type-checkbox input:checked + label::before {
    background-image: url(../images/checkbox.svg);
    background-size: cover;
}

.js-form-type-checkbox label {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .js-form-type-checkbox label {
        position: relative;
        max-width: 200px;
        margin: 0 auto;
        padding-left: 20px;
        text-align: left;
    }
}

button[type="submit"],
input[type="submit"],
.form-submit {
    outline: none;
    border: 2px solid #ae8637;
    padding: 12px 45px 12px 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "acumin-pro-condensed", sans-serif;
    text-transform: uppercase;
    max-width: 240px;
    text-align: left;
    width: 100%;
    position: relative;
    background: transparent url(../images/icon-arrow.png) no-repeat 93% 50%;
    background-size: 22px auto;
    margin: 0 auto 30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 20px;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.form-submit:hover {
    background-color: #ae8637;
    color: #fdfdfd;
    background-image: url(../images/icon-arrow-white.png);
}

button[type="submit"].large,
input[type="submit"].large,
.form-submit.large {
    margin: 0.75em auto 2.75em;
    font-size: 18px;
    font-size: 1.8rem;
}

.user-login-form button[type="submit"],
.user-pass button[type="submit"],
.user-login-form input[type="submit"],
.user-pass input[type="submit"],
.user-login-form .form-submit,
.user-pass .form-submit {
    color: #ae8637;
    font-size: 1.25em;
}

.user-login-form button[type="submit"]:hover,
.user-pass button[type="submit"]:hover,
.user-login-form input[type="submit"]:hover,
.user-pass input[type="submit"]:hover,
.user-login-form .form-submit:hover,
.user-pass .form-submit:hover {
    color: #fdfdfd;
}

@media screen and (max-width: 768px) {
    button[type="submit"],
    input[type="submit"],
    .form-submit {
        margin: 30px auto 40px;
        border-width: 1px;
        max-width: 200px;
    }
}

.generic-callouts {
    padding: 0 18px;
}

@media screen and (min-width: 1241px) {
    .generic-callouts {
        padding: 0 59px;
    }
}

.generic-callouts__list {
    margin: 0;
    padding: 0 0 27px;
    list-style: none;
    width: 100%;
    max-width: 304px;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .generic-callouts__list {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: 926px;
        padding: 0 0 62px;
    }
}

.generic-callouts li {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 304px;
}

@media screen and (min-width: 769px) {
    .generic-callouts li {
        width: 33.333333%;
    }
}

.generic-callouts img {
    display: block;
    width: 100%;
    height: auto;
}

.generic-callouts a {
    display: block;
    height: 100%;
    padding: 7px;
    text-decoration: none;
}

.no-touchevents .generic-callouts a h4::after {
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition:
        transform 0.2s linear,
        -webkit-transform 0.2s linear;
}

.no-touchevents .generic-callouts a:hover,
.no-touchevents .generic-callouts a:focus {
    background: transparent url(../images/background-texture.png);
    -webkit-box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow:
        0 10px 100px 0 rgba(0, 0, 0, 0.1),
        0 61px 50px 0 rgba(0, 0, 0, 0.05);
    box-shadow:
        0 10px 100px 0 rgba(0, 0, 0, 0.1),
        0 61px 50px 0 rgba(0, 0, 0, 0.05);
}

.no-touchevents .generic-callouts a:hover h4,
.no-touchevents .generic-callouts a:focus h4 {
    color: #ae8637;
}

.no-touchevents .generic-callouts a:hover h4::after,
.no-touchevents .generic-callouts a:focus h4::after {
    -webkit-transform: scaleX(1.4285714);
    transform: scaleX(1.4285714);
}

.generic-callouts h4 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.2727273em;
    letter-spacing: 0.02em;
    color: #444;
    font-style: italic;
    font-weight: 400;
    margin: 0.85em 1rem 0;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

@media screen and (max-width: 640px) {
    .generic-callouts h4 {
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.2352941em;
    }
}

.generic-callouts h4::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    margin: 0.75em auto;
    background-color: #ae8637;
}

.generic-callouts p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5714286em;
    letter-spacing: 0.02em;
    color: #444;
    margin: 0 10.3448276% 1em;
}

@media screen and (max-width: 640px) {
    .generic-callouts p {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.4166667em;
    }
}

.generic-callouts p:last-child {
    margin-bottom: 2em;
}

.node-the-gatesworth .generic-callouts__list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-the-gatesworth .generic-callouts__list li a .box__link {
    margin-top: auto;
    margin-bottom: 25px;
}

.node-the-gatesworth .generic-callouts__list li a:hover .box__link:after {
    right: 0;
}

@media screen and (min-width: 769px) {
    .node-the-gatesworth .generic-callouts__list li a p {
        margin-bottom: 0;
    }
}

.box {
    background: #fdfdfd;
    position: relative;
    display: block;
    padding: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
    z-index: 10;
}

.box:before {
    content: "";
    display: block;
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border: 2px solid #ae8637;
    z-index: 0;
}

.box p,
.box h1,
.box h2,
.box h3,
.box h4,
.box h5,
.box ol,
.box ul,
.box blockquote,
.box a:not(.box__link) {
    z-index: 10;
    position: relative;
}

.box--light {
    background: transparent url(../images/background-light-texture.gif) repeat 0 0;
}

.box.centered {
    text-align: center;
}

.box.centered img {
    margin: 4em auto;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 640px) {
    .box.centered img {
        width: 100%;
    }
}

.box.centered picture:first-child img {
    margin-top: 1em;
    margin-bottom: 2em;
}

.box.never-border:before {
    display: none;
}

@media screen and (max-width: 1240px) {
    .box.with-navigation:not(.mobile-full-width) {
        background: transparent none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin: 0;
    }

    .box.with-navigation:not(.mobile-full-width):before {
        display: none;
    }

    .box.no-border:before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .box {
        -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 40px;
        box-shadow: rgba(0, 0, 0, 0.1) 0 0 40px;
    }

    .box:before {
        border-width: 1px;
    }

    .box:not(.mobile-full-width) {
        padding: 30px;
    }

    .box:not(.mobile-full-width):before {
        top: 18px;
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .box.mobile-full-width {
        z-index: 60;
    }

    .box.mobile-full-width:before {
        left: 0;
        right: 0;
        border-left: none;
        border-right: none;
    }

    .box.large:not(.centered):before {
        border-width: 2px;
        top: 0;
        border-top: none;
    }
}

@media print {
    .box {
        padding: 0;
        max-width: 100%;
        margin: 30px auto;
    }

    .box:before,
    .box.contact {
        display: none;
    }
}

.box__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}

@media print {
    .box__link {
        display: none;
    }
}

.content-block {
    width: 76%;
    max-width: 1070px;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .content-block__small {
        float: left;
        width: 30.3738318%;
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .content-block__small {
        text-align: center;
    }
}

@media screen and (min-width: 769px) {
    .content-block__large {
        float: right;
        width: 63.0841121%;
        margin-top: 0;
        margin-right: 2.0560748%;
    }
}

@media screen and (max-width: 768px) {
    .content-block__large {
        text-align: center;
    }
}

@media screen and (min-width: 1241px) {
    .content-block__main {
        margin-right: 441px;
    }
}

@media screen and (min-width: 1241px) {
    .content-block__sidebar {
        float: right;
        width: 300px;
        margin-right: 24px;
    }
}

@media screen and (max-width: 1240px) {
    .content-block__sidebar {
        margin-bottom: 4em;
    }
}

.content-block__content {
    clear: both;
    padding-top: 40px;
}

.content-block--with-top-border {
    margin-bottom: 140px;
    padding-top: 30px;
    border-top: 2px solid #ae8637;
}

.content-block--wide {
    width: 80%;
    max-width: 1135px;
}

.content-block--add-spacing {
    padding-top: 2em;
    padding-bottom: 7em;
}

.sharing__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sharing__list li {
    padding: 0;
    width: 36px;
    height: 36px;
    display: inline-block;
    margin: 10px 7px;
}

.sharing__list li a {
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: relative;
    top: 0;
}

.sharing__list li a img {
    width: 100%;
    display: block;
    height: auto;
}

.sharing__list li a:hover {
    top: -5px;
    opacity: 0.7;
}

.sharing__list li:before {
    display: none;
}

@media print {
    .sharing__list {
        display: none;
    }
}

.slides {
    position: relative;
    -webkit-transition: 1.5s;
    transition: 1.5s;
    opacity: 0;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.fp-enabled .slides {
    opacity: 1;
}

@media print {
    .slides {
        opacity: 1;
        margin: 40px 0;
    }
}

.node-home-page-alt .slides,
.node-landing-page-alternate .slides,
.node-landing-page-floorplans .slides,
.node-blank-page .slides {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
}

.slide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc8c0;
    background: transparent no-repeat 50% 50%;
    background-size: cover;
}

.slide__half-banner {
    z-index: 2;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 1241px) {
    .slide__half-banner {
        height: 50%;
        max-height: 486px;
        background: transparent no-repeat 50% 50%;
        background-size: cover;
    }

    .node-the-gatesworth .slide__half-banner {
        height: 50%;
        max-height: 486px;
        background: transparent no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .node-landing-page-alternate .slide__half-banner,
    .node-blank-page .slide__half-banner {
        height: 100%;
        max-height: none;
    }
}

@media screen and (max-width: 1240px) {
    .slide__half-banner {
        background-image: none !important;
    }
}

.slide__half-content {
    z-index: 2;
    position: relative;
}

.slide.single,
.slide.contact-form,
.slide.double {
    border: none;
}

.slide.initial {
    overflow: visible;
}

@media screen and (max-width: 1240px) {
    .slide {
        border: none;
        background-image: none !important;
        overflow: visible;
    }

    .slide.double {
        margin-bottom: -60px;
        z-index: 90;
    }

    .slide.contact-form {
        margin-top: 90px;
    }

    .slide.initial:after,
    .slide.initial:before {
        content: "";
        position: absolute;
        z-index: 1;
        left: 18px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-left: 2px solid #ae8637;
        border-bottom: 2px solid #ae8637;
        width: 50%;
        top: 0;
        bottom: 60px;
        display: block;
    }

    .node-landing-page-alternate .slide.initial:after,
    .node-landing-page-alternate .slide.initial:before,
    .node-landing-page-floorplans .slide.initial:after,
    .node-landing-page-floorplans .slide.initial:before,
    .node-blank-page .slide.initial:after,
    .node-blank-page .slide.initial:before {
        bottom: 0px;
    }

    .slide.initial:after {
        border-left: none;
        border-right: 2px solid #ae8637;
        left: auto;
        right: 18px;
    }
}

@media screen and (max-width: 768px) {
    .slide.initial:after,
    .slide.initial:before {
        bottom: 25px;
    }
}

@media print {
    .slide {
        border: none;
    }
}

@media screen and (max-width: 768px) {
    .node-landing-page-alternate .copy__title {
        text-align: center;
    }
}

.node-landing-page-alternate .slide,
.node-blank-page .slide {
    height: 50vh;
}

.node-landing-page-alternate .slide.double {
    margin-bottom: 24px;
}

@media screen and (max-width: 1240px) {
    .node-landing-page-alternate .slide.double figure:first-of-type,
    .node-landing-page-floorplans .slide.double figure:first-of-type {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 1240px) {
    .node-home-page-alt .slide,
    .node-landing-page-alternate .slide,
    .node-landing-page-floorplans .slide,
    .node-blank-page .slide {
        height: auto;
        min-height: 0;
        margin-bottom: 0;
    }

    .node-home-page-alt .slide.initial,
    .node-landing-page-alternate .slide.initial,
    .node-landing-page-floorplans .slide.initial,
    .node-blank-page .slide.initial {
        overflow: hidden;
    }
}

.slide__image {
    background: transparent no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}

.double .slide__image {
    right: auto;
    width: calc(50% - 12px);
}

.double .slide__image:last-child {
    left: auto;
    right: 0;
}

.double .slide__image.wide {
    width: calc(65.5% - 12px);
}

.double .slide__image.narrow {
    width: calc(34.5% - 12px);
}

@media screen and (max-width: 1240px) {
    .slide__image {
        position: relative;
        background: none !important;
        width: 100%;
    }

    .double .slide__image {
        margin: 0;
        width: 100%;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .double .slide__image.wide,
    .double .slide__image.narrow {
        width: 100%;
    }

    .double .slide__image .slide__image-mobile {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
}

@media print {
    .slide__image {
        background: transparent none;
        position: relative;
    }
}

.slide__caption {
    width: 90%;
    max-width: 326px;
    padding-bottom: 40px;
    left: 50%;
    top: 50%;
    position: absolute;
    min-height: 306px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 1em;
    color: #444;
}

.slide__caption.left {
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    left: 10.5%;
}

@media screen and (min-width: 1241px) {
    body.node-the-gatesworth figcaption.slide__caption.left {
        -webkit-transform: translateY(-90%) translateX(0);
        transform: translateY(-90%) translateX(0);
        left: 10.5%;
    }
}

.slide__caption.right {
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    left: 66%;
}

@media screen and (max-width: 1240px) {
    .slide__caption {
        position: relative;
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        left: auto;
        top: 0;
        margin: 0 auto;
        bottom: 0;
        width: 76%;
    }

    .slide__caption p {
        font-size: 0.85714285714286em;
        line-height: 1.375em;
    }

    .slide__caption.mobile-middle {
        top: -14px;
        margin-bottom: -28px;
    }

    .slide__caption.left,
    .slide__caption.right {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
        top: -14px;
    }
}

@media screen and (max-width: 640px) {
    .slide__caption {
        max-width: 245px;
        min-height: 235px;
    }
}

@media print {
    .slide__caption {
        opacity: 1;
        margin: 0 auto;
        display: block;
        top: auto;
        left: auto;
        max-width: 100%;
        min-height: 0;
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        position: relative;
    }

    .slide__caption.left,
    .slide__caption.right {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        left: auto;
        right: auto;
    }
}

.slide__image-mobile {
    display: none;
}

@media screen and (max-width: 1240px) {
    .slide__image-mobile {
        display: block;
        max-width: 100%;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        height: auto;
    }
}

@media print {
    .slide__image-mobile {
        display: none;
    }
}

@media screen and (min-width: 1241px) {
    .slide__copy {
        z-index: 10;
        position: absolute;
        top: 42%;
        left: 18%;
        width: 70%;
        max-width: 480px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .node-the-gatesworth .slide__copy {
        /*left: 10%;*/
        max-width: 425px;
        display: none;
    }

    .slide__copy.slidein-right {
        right: 18%;
        left: auto;
        max-width: 400px;
    }

    .slide--home .slide__copy.slidein-right {
        max-width: 300px;
        right: auto;
        left: 50%;
        top: 50%;
        -webkit-transform: translate3D(-50%, -50%, 0);
        transform: translate3D(-50%, -50%, 0);
    }
}

@media screen and (max-width: 1240px) {
    .slide__copy {
        padding: 40px 38px 0.3em;
    }
}

@media print {
    .slide__copy {
        position: relative;
        top: auto;
        left: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        max-width: 100%;
        width: 100%;
    }
}

.slide__instructions {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1240px) {
    .slide__instructions {
        z-index: 95;
        text-align: center;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        left: 0;
        right: 0;
        margin-bottom: 5px;
        bottom: 20px;
    }
}

@media print {
    .slide__instructions {
        display: none;
    }
}

.slidein-up {
    margin-top: 40px;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    opacity: 0;
}

.slidein-up.delay {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.js-sr-complete .slidein-up,
.fp-section.active .slidein-up {
    opacity: 1;
    margin-top: 0;
}

.fp-section.leaving .slidein-up {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.fp-section.leaving .slidein-up.delay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@media screen and (max-width: 1240px) {
    .slidein-up {
        opacity: 1;
        margin-top: 0;
    }
}

@media print {
    .slidein-up {
        opacity: 1;
        margin: 0;
    }
}

.node-home-page-alt .slidein-up,
.node-landing-page-alternate .slidein-up,
.node-blank-page .slidein-up {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.slidein-fade {
    opacity: 0;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.js-sr-complete .slidein-fade,
.fp-section.active .slidein-fade {
    opacity: 1;
}

.fp-section.leaving .slidein-fade {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.fp-section.leaving .slidein-fade.delay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@media screen and (max-width: 1240px) {
    .slidein-fade {
        opacity: 1;
    }
}

@media print {
    .slidein-fade {
        opacity: 1;
        margin: 0;
    }
}

.node-home-page-alt .slidein-fade,
.node-landing-page-alternate .slidein-fade,
.node-blank-page .slidein-fade {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.slidein-left {
    opacity: 0;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    margin-left: -40px;
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.slidein-right {
    opacity: 0;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    margin-right: -40px;
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.js-sr-complete .slidein-left,
.fp-section.active .slidein-left {
    opacity: 1;
    margin-left: 0;
}

.js-sr-complete .slidein-right,
.fp-section.active .slidein-right {
    opacity: 1;
    margin-right: 0;
}

.fp-section.leaving .slidein-left,
.fp-section.leaving .slidein-right {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.fp-section.leaving .slidein-left.delay,
.fp-section.leaving .slidein-right.delay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@media screen and (max-width: 1240px) {
    .slidein-left {
        opacity: 1;
        margin-left: auto;
    }

    .slidein-right {
        opacity: 1;
        margin-right: auto;
    }

    .js-sr-complete .slidein-left,
    .fp-section.active .slidein-left {
        margin-left: auto;
    }

    .js-sr-complete .slidein-right,
    .fp-section.active .slidein-right {
        margin-right: auto;
    }
}

@media screen and (min-width: 1241px) {
    .node-landing-page-alternate .slidein-left,
    .node-landing-page-floorplans .slidein-left,
    .node-blank-page .slidein-left {
        padding: 15px 30px;
        background: rgba(255, 255, 255, 0.85);
        left: 10%;
    }

    .node-landing-page-alternate .slidein-right,
    .node-landing-page-floorplans .slidein-right,
    .node-blank-page .slidein-right {
        padding: 15px 30px;
        background: rgba(255, 255, 255, 0.85);
        right: 10%;
    }
}

@media print {
    .slidein-left,
    .slidein-right {
        opacity: 1;
        margin: 0;
    }
}

.node-home-page-alt .slidein-left,
.node-landing-page-alternate .slidein-left,
.node-blank-page .slidein-left .node-home-page-alt .slidein-right,
.node-landing-page-alternate .slidein-right,
.node-blank-page .slidein-right {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.slidein-right {
    opacity: 0;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    margin-right: -40px;
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.js-sr-complete .slidein-right,
.fp-section.active .slidein-right {
    opacity: 1;
    margin-right: 0;
}

.fp-section.leaving .slidein-right {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.fp-section.leaving .slidein-right.delay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@media screen and (max-width: 1240px) {
    .slidein-right {
        opacity: 1;
        margin-right: auto;
    }

    .js-sr-complete .slidein-right,
    .fp-section.active .slidein-right {
        margin-right: auto;
    }
}

@media print {
    .slidein-right {
        opacity: 1;
        margin: 0;
    }
}

.node-home-page-alt .slidein-right,
.node-landing-page-alternate .slidein-right,
.node-blank-page .slidein-right {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@media screen and (max-width: 1240px) {
    .slide__arrow {
        position: absolute;
        bottom: 90px;
        left: 22px;
    }
}

.dark-callout {
    min-height: 550px;
    height: 100vh;
    height: calc(100vh - 98px);
    position: relative;
    overflow: hidden;
    display: table;
    vertical-align: middle;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .dark-callout {
        height: 550px;
    }

    .dark-callout.top:after,
    .dark-callout.top:before {
        content: "";
        position: absolute;
        z-index: 1;
        left: 18px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-left: 2px solid #ae8637;
        border-bottom: 2px solid #ae8637;
        width: calc(50% - 80px);
        top: 0;
        bottom: 60px;
        display: block;
    }

    .dark-callout.top:after {
        border-left: none;
        border-right: 2px solid #ae8637;
        left: auto;
        right: 18px;
    }
}

@media print {
    .dark-callout {
        height: auto;
        min-height: auto;
        display: block;
    }
}

.dark-callout__background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    overflow: hidden;
}

.dark-callout__background:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    -webkit-transition: 2.25s;
    transition: 2.25s;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.js-sr-complete .dark-callout__background:before {
    opacity: 1;
}

.dark-callout__background:after {
    content: "";
    display: block;
    position: absolute;
    height: 300px;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.dark-callout__background img,
.dark-callout__background video {
    top: 50%;
    left: 50%;
    min-width: calc(100% + 2px);
    min-height: calc(100% + 2px);
    width: auto;
    height: auto;
    display: block;
    z-index: 0;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.dark-callout__background img.mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .dark-callout__background video {
        display: none;
    }

    .dark-callout__background img.mobile-only {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        min-height: 0;
        min-width: 0;
        width: 100%;
        height: auto;
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
    }
}

@media print {
    .dark-callout__background {
        display: none;
    }
}

.dark-callout__copy {
    opacity: 0;
    -webkit-transition: 1.25s;
    transition: 1.25s;
    padding-top: 50px;
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.js-sr-complete .dark-callout__copy {
    opacity: 1;
    padding-top: 0;
}

.pagination {
    text-align: center;
    padding: 52px 0;
    position: relative;
    width: 80%;
    max-width: 1150px;
    margin: 20px auto 0;
    font-family: "acumin-pro-condensed", sans-serif;
}

.pagination a {
    text-decoration: none;
}

.pagination a.next,
.pagination a.previous {
    position: absolute;
    width: 42px;
    height: 22px;
    display: block;
    text-align: left;
    text-indent: -2000px;
    overflow: hidden;
    background: transparent url(../images/icon-arrow.png) no-repeat 0 50%;
    top: 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: center top;
    transform-origin: center top;
}

.pagination a.next:hover,
.pagination a.previous:hover {
    background-position: 100% 50%;
}

@media screen and (max-width: 768px) {
    .pagination a.next,
    .pagination a.previous {
        width: 21px;
        height: 11px;
        background-size: 21px auto;
    }
}

.pagination a.next {
    right: 0;
}

.pagination a.previous {
    left: 0;
    -webkit-transform: rotate(180deg) translateY(-50%);
    transform: rotate(180deg) translateY(-50%);
}

.pagination a:hover,
.pagination a:active {
    color: #ae8637;
}

@media screen and (max-width: 768px) {
    .pagination {
        width: 70%;
    }
}

@media print {
    .pagination {
        display: none;
    }
}

.pagination__inline {
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
    margin: 0 5px;
    font-size: 2em;
    color: #a5a598;
}

.pagination__inline.active {
    color: #ae8637;
}

@media screen and (max-width: 768px) {
    .pagination__inline {
        font-size: 1.07142857142857em;
        padding: 2px;
        margin: 0 3px;
    }
}

.pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination__list li {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.related,
.image__features-wrap-grid {
    text-align: center;
    margin: 77px auto;
    width: 80%;
    max-width: 1140px;
}

@media screen and (max-width: 768px) {
    .related,
    .image__features-wrap-grid {
        margin: 50px auto;
    }
}

.related__wrap,
.features-wrap-grid__wrap {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 35px auto;
}

@media screen and (max-width: 1240px) {
    .related__wrap,
    .features-wrap-grid__wrap {
        display: block;
        max-width: 100%;
        max-width: 487px;
    }
}

@media screen and (max-width: 768px) {
    .related__wrap,
    .features-wrap-grid__wrap {
        margin: 36px auto;
    }
}

.related__item,
.features-wrap-grid__item {
    width: 31%;
    max-width: 330px;
    text-align: left;
    background: #fdfdfd;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 80px;
    margin-top: 45px;
    margin-bottom: 45px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 20px 40px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 20px 40px;
}

.features-wrap-grid__item {
    width: 49%;
    max-width: 550px;
}

.related__item img,
.features-wrap-grid__item img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 100;
}

.related__item:before,
.features-wrap-grid__item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border: 2px solid #ae8637;
    z-index: 0;
}

@media print {
    .related__item,
    .features-wrap-grid__item {
        border: none;
        padding: 0;
    }

    .related__item:before,
    .features-wrap-grid__item:before {
        display: none;
    }
}

@media screen and (max-width: 1240px) {
    .related__item,
    .features-wrap-grid__item {
        width: 100%;
        margin: 0 auto 40px;
    }
}

@media screen and (max-width: 768px) {
    .related__item,
    .features-wrap-grid__item {
        padding-bottom: 70px;
    }

    .related__item:before,
    .features-wrap-grid__item:before {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}

.related__caption,
.features-wrap-grid__caption {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 40px 0;
    display: block;
    font-size: 14px;
    color: #000;
}

.related__caption:before,
.features-wrap-grid__caption:before {
    content: "";
    width: 100%;
    width: calc(100% + 36px);
    left: -18px;
    right: -18px;
    position: relative;
    display: block;
    height: 22px;
    background: #fdfdfd;
    border-bottom: 2px solid #ae8637;
    margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
    .related__caption,
    .features-wrap-grid__caption {
        padding: 0 30px;
    }

    .related__caption p,
    .features-wrap-grid__caption p {
        font-size: 0.85714285714286em;
        line-height: 1.375em;
    }

    .related__caption:before,
    .features-wrap-grid__caption:before {
        width: calc(100% + 24px);
        top: 0;
        left: -12px;
        right: -12px;
        bottom: 18px;
    }
}

@media print {
    .related__caption,
    .features-wrap-grid__caption {
        padding: 0;
    }

    .related__caption:before,
    .features-wrap-grid__caption:before {
        display: none;
    }
}

.navigation {
    position: absolute;
    right: 144px;
    top: 8px;
    left: calc(9% + 200px);
    text-align: right;
    z-index: 100;
}

.node-landing-page-alternate .navigation,
.node-landing-page-floorplans .navigation {
    display: none;
}

@media screen and (min-width: 1106px) and (max-width: 1185px) {
    .navigation {
        top: 10px;
        left: 9%;
    }
}

@media screen and (min-width: 1241px) and (max-width: 1105px) {
    .navigation {
        top: 16px;
        left: 9%;
    }
}

@media screen and (max-width: 1240px) {
    .navigation {
        z-index: 10;
        background: #1c0406;
        position: fixed;
        top: 0;
        bottom: 0;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        left: 0;
        right: 0;
        padding-top: 70px;
        padding-bottom: 38px;
        visibility: hidden;
        opacity: 0;
        -webkit-transition:
            opacity 0.2s ease-in-out 0s,
            visibility 0s ease-in-out 0.2s;
        transition:
            opacity 0.2s ease-in-out 0s,
            visibility 0s ease-in-out 0.2s;
        overflow: hidden;
    }

    .lt-ie9 .navigation {
        visibility: visible;
        display: none;
    }

    .navigation:before {
        content: "";
        display: block;
        height: 2px;
        left: 18px;
        right: 18px;
        position: absolute;
        background: #ae8637;
        bottom: 20px;
        z-index: 0;
    }

    .navigation:after {
        content: "";
        display: block;
        border-left: 2px solid #ae8637;
        border-right: 2px solid #ae8637;
        left: 18px;
        right: 18px;
        position: absolute;
        bottom: 20px;
        top: 85px;
        z-index: 0;
    }

    body.node-89 .navigation:after,
    body.node-102 .navigation:after,
    body.node-116 .navigation:after,
    body.node-103 .navigation:after {
        top: 84px;
    }

    .menu-open .navigation {
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0s, 0s;
        transition-delay: 0s, 0s;
    }

    .lt-ie9 .menu-open .navigation {
        display: inherit;
    }
}

@media print {
    .navigation {
        display: none;
    }
}

.navigation__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.9em;
    letter-spacing: 0.04em;
}

.navigation__list a {
    text-decoration: none;
}

.navigation__list > li {
    display: inline-block;
    text-align: center;
    position: relative;
}

.navigation__list > li:hover .navigation__dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}

.lt-ie9 .navigation__list > li:hover .navigation__dropdown {
    display: inherit;
}

.navigation__list > li:hover > a {
    color: #ae8637;
}

.navigation__list > li > a {
    position: relative;
    z-index: 10;
    color: #444;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-weight: 400;
    display: block;
    padding: 16px 14px;
}

.navigation__list > li > a.active-trail:after,
.navigation__list > li > a.is-active:after {
    height: 5px;
    bottom: 2px;
    content: "";
    display: block;
    position: absolute;
    background: #ae8637;
    left: 10px;
    right: 10px;
    z-index: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
}

@media screen and (max-width: 1240px) {
    .navigation__list > li > a.active-trail:after,
    .navigation__list > li > a.is-active:after {
        display: none;
    }
}

@media screen and (max-width: 1260px) {
    /* .navigation__list>li>a.active-trail:after,
    .navigation__list>li>a.is-active:after {
      left: 20px;
      right: 20px;
    } */
}

@media screen and (max-width: 1120px) {
    .navigation__list > li > a {
        padding: 16px 8px;
    }

    /* .navigation__list>li>a.active-trail:after,
    .navigation__list>li>a.is-active:after {
      left: 8px;
      right: 8px;
    } */
}

@media screen and (max-width: 1010px) {
    .navigation__list > li > a {
        padding: 16px 4px;
    }
}

.navigation__list.sub {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 98%;
    margin: 0 auto;
    max-width: 875px;
}

.navigation__list.sub > li > a {
    padding: 5px 0 38px;
}

.navigation__list.sub > li > a:after {
    bottom: 0;
    /* left: 0;
    right: 0; */
}

@media screen and (max-width: 1240px) {
    .navigation__list.sub {
        display: none;
        width: calc(100% + 2px);
        padding: 0 0 10px;
        margin: 0;
        right: auto;
        left: -1px;
        bottom: auto;
        top: auto;
        position: absolute;
        background: #fdfdfd;
        border: 1px solid #ae8637;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-top: none;
        border-bottom-width: 10px;
    }

    .navigation__list.sub > li {
        padding: 0;
        margin: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .navigation__list.sub > li > a {
        line-height: 1em;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 100%;
        color: #444;
        font-size: 15px;
        font-size: 1.5rem;
        padding: 10px 10px;
    }

    .navigation__list.sub > li > a:hover {
        background: #f1f1f1;
        color: #444;
    }
}

#block-thegatesworth-main-menu .navigation__list > li:last-child > a {
    text-indent: -9999px;
    min-width: 15px;
}

#block-thegatesworth-main-menu .navigation__list > li:last-child > a:before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: transparent none no-repeat 0 50%;
    background-size: auto 85%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-image: url(../images/icon-search.svg);
    transform: translate(-50%, -50%);
}

#block-thegatesworth-main-menu .navigation__list > li:last-child:hover > a:before {
    opacity: 0.8;
}

#block-thegatesworth-main-menu .navigation__list > li:last-child > a.active-trail:after,
#block-thegatesworth-main-menu .navigation__list > li:last-child > a.is-active:after {
    left: 2px !important;
    right: 2px !important;
}

@media screen and (max-width: 1115px) {
    .navigation__list {
        font-size: 17px;
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 1240px) {
    .navigation__list {
        text-align: left;
        padding: 50px 18px 18px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        position: absolute;
        left: 0;
        right: -50px;
        bottom: 20px;
        top: 70px;
        z-index: 10;
        font-size: 30px;
        font-size: 3rem;
        line-height: 1.0666667em;
        letter-spacing: 0.0066667em;
    }

    .navigation__list > li {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 60px;
        display: block;
        text-align: left;
    }

    .navigation__list > li:hover > a {
        color: #fdfdfd;
    }

    .navigation__list > li > a {
        padding: 12px 20px;
        color: #fdfdfd;
    }

    #block-thegatesworth-main-menu .navigation__list > li:last-child > a:before {
        background-size: auto 100%;
        left: 15px;
        background-image: url(../images/icon-search-white.svg);
        transform: translateY(-50%);
    }
}

@media print {
    .navigation__list {
        display: none;
    }

    .navigation__list.sub {
        display: none;
    }
}

.navigation__dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1241px) {
    .navigation__dropdown {
        position: absolute;
        text-align: center;
        padding-top: 68px;
        z-index: 5;
        top: 0;
        left: 0;
        right: 0;
        background: #fdfdfd;
        -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 30px;
        box-shadow: rgba(0, 0, 0, 0.3) 0 0 30px;
        border-bottom: 10px solid #9d7831;
        visibility: hidden;
        opacity: 0;
        -webkit-transition:
            opacity 0.2s ease-in-out 0s,
            visibility 0s ease-in-out 0.2s;
        transition:
            opacity 0.2s ease-in-out 0s,
            visibility 0s ease-in-out 0.2s;
    }

    .lt-ie9 .navigation__dropdown {
        visibility: visible;
        display: none;
    }

    .navigation__dropdown > li {
        display: block;
        margin-bottom: -2px;
    }

    .navigation__dropdown > li:last-child {
        margin-bottom: 0;
    }

    .navigation__dropdown > li > a {
        display: block;
        padding: 19px 10px;
        color: #838383;
        position: relative;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        line-height: 1.2em;
    }

    .navigation__dropdown > li > a:before {
        content: "";
        height: 2px;
        top: 0;
        left: 20px;
        right: 20px;
        display: block;
        background: #f1f1f1;
        position: absolute;
    }

    .navigation__dropdown > li > a.active-trail,
    .navigation__dropdown > li > a.is-active,
    .navigation__dropdown > li > a:hover {
        background: #f1f1f1;
        color: #444;
    }
}

@media screen and (max-width: 1240px) {
    .navigation__dropdown {
        opacity: 1;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: 0.8s;
        transition: 0.8s;
    }

    .subnav-open .navigation__dropdown {
        max-height: 400px;
    }

    .navigation__dropdown > li:first-child {
        margin-top: 10px;
    }

    .navigation__dropdown > li:last-child {
        margin-bottom: 10px;
    }

    .navigation__dropdown > li > a {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.1666667em;
        letter-spacing: 0.0083333em;
        padding: 2px 0 3px;
        display: block;
        color: #ae8637;
    }

    .navigation__dropdown > li > a:hover {
        color: #fdfdfd;
    }
}

.navigation__toggle {
    position: absolute;
    top: 84px;
    right: 0;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: box-sizing;
    box-sizing: box-sizing;
    background: #ae8637;
    border: none;
    z-index: 2000;
    overflow: visible;
    outline: none;
    padding: 0;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    display: none;
}

.node-landing-page-alternate .navigation__toggle,
.node-landing-page-floorplans .navigation__toggle {
    display: none !important;
}

.node-landing-page-alternate .content-block--with-top-border {
    border-top: none;
    padding-top: 0;
}

.node-landing-page-alternate .content-block--with-top-border h3,
.node-landing-page-alternate .content-block--with-top-border p {
    display: none;
}

.node-landing-page-alternate article .content-block:not(.content-block--with-top-border) {
    padding-bottom: 50px;
}

.node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .type__subtitle {
    font-size: 2.5em;
    line-height: 1.14285714285714em;
    letter-spacing: 0.2px;
    width: auto;
    float: none;
    text-align: center;
}

@media screen and (max-width: 1240px) {
    .node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .type__subtitle {
        font-size: 1.75em;
    }
}

@media screen and (max-width: 640px) {
    .node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .type__subtitle {
        font-size: 1.25em;
    }
}

.node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .large-callouts__item {
    width: 72%;
    max-width: 890px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .large-callouts__item {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .large-callouts {
        padding-top: 0;
    }
}

.node-landing-page-alternate article .content-block:not(.content-block--with-top-border) .large-callouts__content {
    display: none;
}

.node-landing-page-alternate .box--light {
    background: #ffffff;
}

@media screen and (max-width: 1240px) {
    .navigation__toggle {
        display: block;
    }
}

@media print {
    .navigation__toggle {
        display: none;
    }
}

.navigation__toggle:before,
.navigation__toggle:after {
    width: 20px;
    height: 2px;
    left: 10px;
    background: #fdfdfd;
    position: absolute;
    display: block;
    content: "";
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.navigation__toggle:before {
    top: 14px;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.navigation__toggle:after {
    bottom: 14px;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.navigation__toggle span {
    text-indent: -2000px;
    text-align: left;
    overflow: hidden;
    display: block;
    height: 2px;
    width: 20px;
    position: absolute;
    top: 19px;
    background: #fdfdfd;
    left: 10px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.navigation__toggle:hover:before,
.navigation__toggle:hover:after,
.navigation__toggle:hover span {
    background: #fdfdfd;
}

.menu-open .navigation__toggle span {
    opacity: 0;
}

.menu-open .navigation__toggle:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 12px;
    left: 7px;
}

.menu-open .navigation__toggle:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 7px;
    bottom: 12px;
}

.navigation__sub-dropdown--mobile {
    margin-top: 35px;
}

@media screen and (max-width: 1240px) {
    .navigation__sub-dropdown--mobile {
        border: 1px solid #ae8637;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        margin: 40px auto 60px;
        position: relative;
        display: block;
    }

    .negative-top .navigation__sub-dropdown--mobile {
        max-width: 300px;
        margin: 30px auto 20px;
    }

    .no-touchevents .navigation__sub-dropdown--mobile:hover {
        background: #fdfdfd;
    }

    .no-touchevents .navigation__sub-dropdown--mobile:hover .navigation__list.sub {
        display: block;
    }

    .touchevents .navigation__sub-dropdown--mobile.tapped {
        background: #fdfdfd;
    }

    .touchevents .navigation__sub-dropdown--mobile.tapped .navigation__list.sub {
        display: block;
    }
}

.navigation__sub-dropdown--current {
    display: none;
}

@media screen and (max-width: 1240px) {
    .navigation__sub-dropdown--current {
        color: #444;
        position: relative;
        font-size: 15px;
        font-size: 1.5rem;
        text-transform: uppercase;
        font-family: "acumin-pro-condensed", sans-serif;
        text-align: left;
        display: block;
        padding: 8px 10px;
    }

    .navigation__sub-dropdown--current:after {
        content: "";
        width: 10px;
        height: 18px;
        display: block;
        background: transparent url(../images/icon-arrow-double.png) no-repeat 50% 50%;
        background-size: 100% auto;
        position: absolute;
        top: 8px;
        right: 15px;
    }
}

.navigation__schedule-a-tour {
    display: none;
    z-index: 11;
    position: absolute;
    right: 20px;
    bottom: 22px;
    left: 20px;
}

@media screen and (max-width: 1240px) {
    .menu-open .navigation__schedule-a-tour {
        display: block;
    }
}

.navigation__schedule-a-tour a {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1em;
    letter-spacing: 0.04em;
    display: block;
    padding: 16px 20px;
    background-color: #ae8637;
    color: #fdfdfd;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

.button-circle {
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 50%;
    display: block;
    margin: 10px auto;
    background: #ae8637;
    color: #fdfdfd;
    text-indent: -2000px;
    overflow: hidden;
    text-align: left;
    font-size: 30px;
    font-family: "acumin-pro-condensed", sans-serif;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: relative;
}

.button-circle:hover {
    background-color: #dfbc78;
}

.button-circle:before,
.button-circle:after {
    position: absolute;
    content: "";
    display: block;
    background: #fdfdfd;
    height: 1px;
    width: 15px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.button-circle.minus:after {
    display: none;
}

.button-circle.plus:after {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.button-circle.disabled {
    opacity: 0.25;
    cursor: default;
}

.button-circle.disabled:hover {
    background-color: #ae8637;
}

.play-button {
    padding: 8px 16px 10px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    text-decoration: none;
}

.play-button .icon {
    display: inline-block;
    width: 18px;
    height: 24px;
    margin-top: -4px;
    margin-left: 11px;
    vertical-align: middle;
    fill: currentColor;
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
}

.testimonial {
    padding: 30px 0;
    margin: 120px auto;
    width: 76%;
    max-width: 1100px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .testimonial {
        width: 100%;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        padding: 0;
        margin: 100px 0;
    }

    .testimonial:after {
        content: "";
        background: #1c0406;
        position: absolute;
        top: 56px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        display: block;
    }
}

@media print {
    .testimonial {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
    }

    .testimonial:after {
        display: none;
    }
}

.testimonial__image {
    width: 48%;
    margin: 0;
    max-width: 450px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.testimonial__image img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .testimonial__image {
        -webkit-box-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        width: 70%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media print {
    .testimonial__image {
        display: none;
    }
}

.testimonial__quote {
    margin: 0;
    width: 52%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.testimonial__quote:after {
    content: "";
    background: #1c0406;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3000px;
    right: -3000px;
    z-index: -1;
    display: block;
}

@media screen and (max-width: 768px) {
    .testimonial__quote {
        -webkit-box-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-top: 44px;
    }
}

@media print {
    .testimonial__quote {
        width: 100%;
    }

    .testimonial__quote:after {
        display: none;
    }
}

.text-size {
    z-index: 300;
    background: #fdfdfd;
    position: fixed;
    left: 0;
    top: 170px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 7px 5px;
}

@media screen and (max-width: 768px) {
    .text-size {
        display: none;
    }
}

@media print {
    .text-size {
        display: none;
    }
}

.text-size__title {
    color: #333333;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666667em;
    letter-spacing: 0.0833333em;
    font-family: "acumin-pro-condensed", sans-serif;
    width: 70%;
    margin: 10px auto;
    position: relative;
    padding-top: 16px;
}

.text-size__title:before,
.text-size__title:after {
    content: "A";
    color: #ae8637;
    font-family: "Playfair Display", serif;
    position: absolute;
    display: inline-block;
    vertical-align: baseline;
    left: 7px;
    top: 2px;
    text-align: left;
    width: 10px;
    font-size: 9.766px;
    font-size: 0.9766rem;
}

.text-size__title:after {
    top: 0;
    left: auto;
    right: 7px;
    font-size: 15.33px;
    font-size: 1.533rem;
}

.newsletter {
    display: none;
    border: 2px solid #ae8637;
    text-align: center;
    padding: 30px;
}

.newsletter__subtitle {
    margin: 0.725em auto 1.2em;
    max-width: 570px;
    display: block;
}

@media screen and (max-width: 768px) {
    .newsletter__form {
        max-width: 400px;
        margin: 0 auto;
    }
}

.wysiwyg {
    font-size: 1.42857142857143em;
    line-height: 1.75em;
    letter-spacing: 0.2px;
}

@media screen and (max-width: 1240px) {
    .wysiwyg {
        font-size: 1.25em;
    }
}

@media screen and (max-width: 640px) {
    .wysiwyg {
        font-size: 1em;
        line-height: 1.42857142857143em;
    }
}

.wysiwyg p {
    margin: 1.5em 0;
}

.wysiwyg h4 {
    color: #ae8637;
    font-size: 1.1em;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    margin: 1.3em auto;
    /* margin: 1.3em auto 2.7em; */
}

/* .node-simple-landing-page .wysiwyg h4,
  article[about="/plans-and-pricing/moving-made-easy"] .wysiwyg h4 {
    margin: 1.3em auto;
  } */

.wysiwyg blockquote {
    padding: 0 20px;
    text-align: center;
    color: #ae8637;
    font-size: 1.4em;
}

.wysiwyg blockquote:before {
    color: #838383;
    position: relative;
    top: auto;
    left: auto;
}

.wysiwyg blockquote q:before,
.wysiwyg blockquote q:after {
    display: inline-block;
}

.wysiwyg blockquote cite {
    color: #838383;
    font-size: 0.78571428571429em;
    margin: 1.5em 0;
}

.wysiwyg blockquote cite:before {
    background: #838383;
}

@media screen and (max-width: 768px) {
    .wysiwyg blockquote {
        font-size: 1.21428571428571em;
        line-height: 1.29411764705882em;
        padding: 0 9px;
    }

    .wysiwyg blockquote:before {
        display: none;
    }

    .wysiwyg blockquote cite {
        font-size: 0.9em;
        margin-bottom: 0;
    }
}

.wysiwyg img {
    max-width: 100%;
}

.wysiwyg .align-center {
    display: block;
    margin: 80px auto;
}

.node-local-ownership .wysiwyg .align-center {
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .wysiwyg .align-center {
        margin: 50px auto;
    }
}

.wysiwyg ol {
    list-style: none;
    margin: 1em 0;
    padding: 0 20px 0 0;
    counter-reset: numbers;
}

.wysiwyg ol li {
    margin: 0;
    padding: 0 0 0 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.wysiwyg ol li:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 22px;
    text-align: right;
    content: counter(numbers);
    counter-increment: numbers;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1em;
    letter-spacing: 0em;
    color: #ae8637;
}

.wysiwyg ol li:nth-of-type(-n + 9):before {
    content: "0" counter(numbers);
}

.wysiwyg ul {
    list-style: none;
    margin: 1em 0;
    padding: 0 20px 0 0;
}

.wysiwyg ul li {
    margin: 0;
    padding: 0 0 0 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.wysiwyg ul li:before {
    content: "";
    width: 19px;
    height: 1px;
    background: #ae8637;
    left: 0;
    top: 18px;
    display: block;
    position: absolute;
}

@media screen and (max-width: 768px) {
    .wysiwyg ul li {
        padding-left: 20px;
    }

    .wysiwyg ul li:before {
        top: 10px;
        width: 11px;
    }
}

.side-by-side__column .wysiwyg ul {
    color: #ae8637;
    font-style: italic;
    padding: 0;
}

.side-by-side__column .wysiwyg ul li {
    display: block;
}

.side-by-side__column .wysiwyg ul li:before {
    background: #ae8637;
}

.wysiwyg.copy__wysiwyg .align-center {
    position: relative;
    left: -90px;
    right: -90px;
    width: calc(100% + 180px) !important;
    height: auto !important;
}

.wysiwyg.copy__wysiwyg .align-center img {
    width: 100% !important;
    height: auto !important;
    max-width: 600px;
    margin: 0 auto;
}

.wysiwyg.copy__wysiwyg .align-center figcaption {
    padding-right: 90px;
    padding-left: 90px;
    text-align: center;
}

.side-by-side {
    padding: 60px 0;
    margin: 0 auto;
    width: 72%;
    max-width: 1136px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    .side-by-side {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px 0;
    }
}

@media print {
    .side-by-side {
        display: block;
        width: 100%;
    }
}

.side-by-side__column {
    width: 45%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

.side-by-side__column.image-only {
    max-width: 450px;
    margin-right: 15px;
}

.side-by-side__column.image-only img {
    margin: 0;
    display: block;
    width: 100%;
    height: auto;
}

.side-by-side__column.image-only figcaption {
    position: absolute;
    font-size: 1em;
    text-align: center;
    width: 100%;
}

.right .side-by-side__column {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.right .side-by-side__column.image-only {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

@media screen and (max-width: 768px) {
    .side-by-side__column {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .side-by-side__column.text-only {
        margin-top: 30px;
    }

    .side-by-side__column.image-only {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .side-by-side__column.image-only.has-caption {
        margin-bottom: 100px;
    }
}

@media print {
    .side-by-side__column {
        display: block;
        width: 100%;
    }

    .side-by-side__column.image-only {
        display: none;
    }
}

body.node-about-page .related__wrap:after {
    content: "";
    width: 31%;
    max-width: 330px;
    text-align: left;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 80px;
    margin-top: 45px;
    margin-bottom: 45px;
}

body.node-about-page .navigation__sub-dropdown--mobile .navigation__list {
    max-width: 600px;
}

/* Blog Page Style Updates */

body.node-our-stories-landing .box-plain {
    position: absolute;
    top: 50%;
    left: auto;
    right: 10%;
    display: inline-block;
    width: auto;
    padding: 1.5em 5em;
    background-color: white;
    font-size: 14px;
    color: inherit;
}

body.node-our-stories-landing .box-plain h2 {
    color: #444;
    font-size: 3em;
}

body.node-our-stories-landing .features-wrap-grid__item .item__category {
    font-family: acumin-pro-condensed, sans-serif;
    font-size: 1.25em;
    text-transform: uppercase;
}

body.node-our-stories-landing .features-wrap-grid__item .item__subheadline {
    margin: 10px 0 15px;
}

body.node-our-stories-landing .image__features-wrap-grid {
    margin-top: 0;
}

body.node-our-stories-landing .features-wrap-grid__item:before,
body.node-our-stories-landing .features-wrap-grid__caption:before,
body.node-story-detail .related__item:before,
body.node-story-detail .related__caption:before {
    content: none;
}

body.node-our-stories-landing .features-wrap-grid__item,
body.node-story-detail .related__item {
    padding: 0;
}

body.node-our-stories-landing .features-wrap-grid__item figure,
body.node-story-detail .related__item figure {
    margin-bottom: 0;
}

body.node-our-stories-landing .features-wrap-grid__item .features-wrap-grid__caption,
body.node-story-detail .related__item .related__caption {
    padding: 20px 40px;
}

@media screen and (max-width: 1240px) {
    body.node-our-stories-landing .box-plain {
        position: absolute;
        top: auto;
        bottom: 10%;
        left: 10%;
        padding: 1.5em 5em;
    }

    body.node-our-stories-landing .box-plain h2 {
        font-size: 2rem;
    }

    body.node-our-stories-landing .box-categories {
        position: relative;
        width: 60%;
        max-width: 270px;
        margin: 0 auto 30px;
        padding: 0;
        -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
        box-shadow: rgba(0, 0, 0, 0.25) 0 0 40px;
        z-index: 20;
    }

    body.node-our-stories-landing .box-categories .navigation__sub-dropdown--mobile {
        background-color: white;
    }
}

body.node-story-detail h5 {
    margin: 0;
}

body.node-story-detail .related__item .item__subheadline {
    margin: 10px 0 15px;
}

@media screen and (max-width: 650px) {
    body.node-our-stories-landing .box-plain {
        right: 0;
        bottom: 5%;
        left: 0;
        max-width: 90%;
        padding: 0.5em;
        text-align: center;
        box-sizing: border-box;
    }

    body.node-our-stories-landing .box-plain h2 {
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 1241px) {
    body.node-our-stories-landing .navigation__list.sub {
        justify-content: space-around;
        width: 80%;
        max-width: 1140px;
        margin: 0 auto;
        border-bottom: 1px solid #ae8637;
    }

    body.node-our-stories-landing .navigation__list.sub > li > a {
        padding: 5px 0 15px;
    }
}

/* New contact form styles */

#contact-message-contact-the-gatesworth-form .form-submit,
#contact-message-contact-the-gatesworth-landing-form .form-submit,
#contact-message-create-your-own-experience-form .form-submit {
    display: block;
    margin: 15px auto 30px;
}

#contact-message-create-your-own-experience-form legend {
    display: none;
}

#contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper {
    display: block;
    width: 85%;
    margin: 15px auto 30px auto;
}

#contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper .form-checkboxes {
    display: flex;
    flex-wrap: wrap;
}

#contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper .form-checkboxes > .form-item {
    width: 33.3%;
    margin-bottom: 0;
}

#contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper .form-checkboxes > .form-item label {
    text-align: left;
}

#contact-form-experience {
    margin: -80px auto 80px;
}

#contact-form-experience label {
    font-size: 1.2em;
}

.node-blank-page .slide__half-content {
    margin: 80px auto 30px;
}

#contact-form-experience .type__label {
    position: relative;
    display: block;
    margin: 3em 0 0;
    color: #4f4e4e;
    font-family: acumin-pro-condensed, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.75px;
    line-height: 1.42857142857143em;
    text-transform: uppercase;
}

#contact-form-experience .type__label span {
    font-weight: normal;
    text-transform: none;
}

@media (min-width: 769px) {
    #contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper .form-checkboxes > .form-item label {
        position: relative;
        padding-right: 10px;
        padding-left: 35px;
    }

    #contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper .form-checkboxes > .form-item label:before {
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media (max-width: 768px) {
    #contact-message-create-your-own-experience-form #edit-field-what-would-you-like-to-do---wrapper .form-checkboxes > .form-item label {
        margin-bottom: 15px;
    }
}

#block-thegatesworth-main-menu .navigation__list > li > a {
    padding: 16px 12px;
}

@media screen and (max-width: 1255px) {
    #block-thegatesworth-main-menu .navigation__list > li > a {
        padding: 16px 8px;
        /*max-width: 120px;
      text-align: center;
      line-height: 1;*/
    }
}

@media screen and (max-width: 1185px) {
    #block-thegatesworth-main-menu .navigation__list > li > a {
        padding: 15px 4px;
        /*font-size: 18px;*/
    }
}

@media screen and (max-width: 1063px) {
    #block-thegatesworth-main-menu .navigation__list > li > a {
    }
}

@media screen and (max-width: 1240px) {
    #block-thegatesworth-main-menu .navigation__list > li > a {
        padding: 16px 14px;
    }
}

body.node-page #block-thegatesworth-content > article section.copy:first-of-type {
    margin-top: 150px !important;
}

@media screen and (max-width: 640px) {
    body.node-page #block-thegatesworth-content > article section.copy:first-of-type {
        margin-top: 100px !important;
    }
}

.node-thank-you-page .site-messages {
    display: none !important;
}

.node-thank-you-page .type__subtitle {
    margin-bottom: 0;
}

/* Hide chat bot on certain content types */
.node-landing-page-alternate #chatbutton,
.node-landing-page-alternate #iframe_chat_popup,
.node-landing-page-alternate #h2_cls_close,
.node-landing-page-alternate .visitor-tracking-container,
.node-landing-page-floorplans #chatbutton,
.node-landing-page-floorplans #iframe_chat_popup,
.node-landing-page-floorplans #h2_cls_close,
.node-landing-page-floorplans .visitor-tracking-container,
.node-blank-page #chatbutton,
.node-blank-page #iframe_chat_popup,
.node-blank-page #h2_cls_close,
.node-blank-page .visitor-tracking-container {
    display: none !important;
}

.contact-alt {
    margin-top: 80px;
}

.contact-alt form .button {
    color: #ae8637;
}

.contact-alt form .button:hover {
    color: white;
}

.contact-alt form .form-item {
    display: block;
    margin: 30px auto;
}

.js-form-item-myaddress {
    display: none !important;
}
input#edit-myaddress {
    display: none !important;
}

.node-event section.copy,
.node-rsvp section.copy {
    text-align: center !important;
}

.node-event section.copy .wysiwyg p,
.node-rsvp section.copy .wysiwyg p {
    margin: 0.25em 0;
}

@media screen and (max-width: 1240px) {
    /* Updated to mobile dropdown menus */
    .navigation__list > li.navigation__dropdown--parent > a {
        position: relative;
        display: inline-block;
    }

    .navigation__list > li.navigation__dropdown--parent > a > i {
        position: absolute;
        top: 0;
        right: -50px;
        bottom: 0;
        display: block;
        width: 50px;
        background: transparent url(../images/icon-arrow-down-alt.png) no-repeat 50% 50%;
        z-index: 1;
    }

    .navigation__list > li.subnav-open.navigation__dropdown--parent > a > i {
        background: transparent url(../images/icon-arrow-up-alt.png) no-repeat 50% 50%;
    }
}

.property-logos ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.property-logos ul li {
    width: calc(100% / 4);
    padding: 0;
}

.property-logos ul li:before {
    content: none !important;
}

.property-logos ul li img {
    width: 85%;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 975px) {
    .property-logos ul li {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 768px) {
    .property-logos {
        margin-top: -100px;
    }

    .property-logos ul {
        flex-direction: column;
    }

    .property-logos ul li {
        width: 100%;
    }

    .property-logos ul li:nth-child(2) {
        margin-bottom: 15px;
    }

    .property-logos ul li img {
        width: 40%;
    }
}

/**
  * Cost Calculator
  */
.cost-calculator {
    padding: 60px 0;
    clear: both;
}

.cost-calculator table {
    width: 100%;
    border: 1px solid #ccc;
    font-size: 1.75rem;
    line-height: 2.25rem;
    table-layout: fixed;
}

.cost-calculator table thead td {
    text-align: center;
}

.cost-calculator table thead td:first-of-type {
    width: 50%;
}

.cost-calculator table td {
    padding: 1rem;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.cost-calculator table td.td--category {
    background-color: #999999;
    color: #ffffff;
}

.cost-calculator table td.td--your-cost,
.cost-calculator table td.td--your-total {
    text-align: center;
}

.cost-calculator table td.td--your-cost input,
.cost-calculator table td.td--your-total input {
    width: 100%;
    max-width: 55%;
    min-width: 50px;
    margin: 0 2px;
    padding: 0.5rem;
}

.cost-calculator table td.td--your-total input {
    margin-bottom: 0.5rem;
    color: red;
}

.cost-calculator table td.td--your-total span:last-of-type {
    display: block;
}

.cost-calculator table td.td--your-cost,
.cost-calculator table td.td--our-cost {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .cost-calculator table {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .cost-calculator table thead td:first-of-type {
        width: 35%;
    }

    .cost-calculator table td {
        padding: 0.5rem;
    }
}

body.node-83 .wysiwyg img,
body.node-85 .wysiwyg img,
body.node-88 .wysiwyg img,
body.node-89 .wysiwyg img,
body.node-101 .wysiwyg img,
body.node-102 .wysiwyg img,
body.node-103 .wysiwyg img,
body.node-111 .wysiwyg img,
body.node-115 .wysiwyg img,
body.node-116 .wysiwyg img,
body.node-117 .wysiwyg img,
body.node-128 .wysiwyg img,
body.node-story-detail .wysiwyg img {
    width: auto;
    height: auto;
}

/* Temp fix for homepage */
@media (min-width: 1241px) {
    /* .node-the-gatesworth .slide__copy h3.type__mixed,
    .node-the-gatesworth .slide__copy p.type__subtitle{
      color: #ffffff;
    }
  
    .node-the-gatesworth .slide__copy p.type__subtitle{
      border-color: #ffffff;
    } */
}

/* Homepage semi-transparent title background */
@media (min-width: 1241px) {
    .node-the-gatesworth .slide__copy {
        padding: 10px 30px;
        background-color: rgba(255, 255, 255, 0.75);
    }

    .slide--home .slide__copy {
        padding: 10px 15px;
    }
}

.node-the-gatesworth .text-graphic__call {
    display: none;
}

.node-the-gatesworth .text-graphic {
    border: none;
}

/* .node-the-gatesworth p.text-graphic__banner-inner span {
  display: block;
  font-family: acumin-pro-condensed, sans-serif;
  font-size: 2rem;
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-notification-bar {
  display: none;
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 5px 10px;
  background-color: #ae8637;
  font-family: acumin-pro-extra-condensed, sans-serif;
  letter-spacing: 0.05em;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 8010;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.07) inset;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.07) inset;
  line-height: 1;
}

@media screen and (max-width: 1241px) {
  .header-notification-bar {
    border-bottom: 1px solid #ffffff;
  }
}

.header-notification-bar a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.header-notification-bar a:hover,
.header-notification-bar a:focus,
.header-notification-bar a:active {
  color: white;
  opacity: 0.75;
}

body:not(.node-89):not(.node-101):not(.node-102):not(.node-103):not(.node-115):not(.node-116).site {
  padding-top: 108px;
}

body:not(.node-89):not(.node-101):not(.node-102):not(.node-103):not(.node-115):not(.node-116)
  .site-header {
  top: 30px;
}

body:not(.node-89):not(.node-101):not(.node-102):not(.node-103):not(.node-115):not(.node-116)
  .site-header__callout {
  top: 30px;
} */

body.node-89 .site-header__callout,
body.node-101 .site-header__callout,
body.node-102 .site-header__callout,
body.node-103 .site-header__callout,
body.node-115 .site-header__callout,
body.node-116 .site-header__callout {
    display: none !important;
}

body.node-89 #chatbutton,
body.node-89 #iframe_chat_popup,
body.node-89 #h2_cls_close,
body.node-101 #chatbutton,
body.node-101 #iframe_chat_popup,
body.node-101 #h2_cls_close,
body.node-102 #chatbutton,
body.node-102 #iframe_chat_popup,
body.node-102 #h2_cls_close,
body.node-103 #chatbutton,
body.node-103 #iframe_chat_popup,
body.node-103 #h2_cls_close,
body.node-115 #chatbutton,
body.node-115 #iframe_chat_popup,
body.node-115 #h2_cls_close,
body.node-116 #chatbutton,
body.node-116 #iframe_chat_popup,
body.node-116 #h2_cls_close,
body.node-119 #chatbutton,
body.node-119 #iframe_chat_popup,
body.node-119 #h2_cls_close,
body.node-120 #chatbutton,
body.node-120 #iframe_chat_popup,
body.node-120 #h2_cls_close {
    display: none !important;
}

/* @media (max-width: 1240px) {
   .header-notification-bar {
     font-size: 16px;
   }
 }
 
 @media (max-width: 500px) {
   .header-notification-bar {
     font-size: 14px;
   }
 } */

/* body:not(.node-89):not(.node-101):not(.node-102):not(.node-103):not(.node-115):not(.node-116)
  .header-notification-bar {
  display: block;
} */

/* Change to node-89 for production */

.node-89 .image__feature,
.node-89 header.box,
.node-89 .side-by-side__column h3,
.node-89 #contact-form,
.node-89 .side-by-side__column .wysiwyg,
.node-101 .image__feature,
.node-101 header.box,
.node-101 .side-by-side__column h3,
.node-101 #contact-form,
.node-101 .side-by-side__column .wysiwyg,
.node-102 .image__feature,
.node-102 header.box,
.node-102 .side-by-side__column h3,
.node-102 #contact-form,
.node-102 .side-by-side__column .wysiwyg,
.node-103 .image__feature,
.node-103 header.box,
.node-103 .side-by-side__column h3,
.node-103 #contact-form,
.node-103 .side-by-side__column .wysiwyg,
.node-115 .image__feature,
.node-115 header.box,
.node-115 .side-by-side__column h3,
.node-115 #contact-form,
.node-115 .side-by-side__column .wysiwyg,
.node-116 .image__feature,
.node-116 header.box,
.node-116 .side-by-side__column h3,
.node-116 #contact-form,
.node-116 .side-by-side__column .wysiwyg {
    display: none !important;
}

.node-89 .side-by-side__column .type__subtitle,
.node-101 .side-by-side__column .type__subtitle,
.node-102 .side-by-side__column .type__subtitle,
.node-103 .side-by-side__column .type__subtitle,
.node-115 .side-by-side__column .type__subtitle,
.node-116 .side-by-side__column .type__subtitle {
    padding-left: 0;
    border: none;
}

.node-amenities figure.image__feature {
    max-height: 600px;
    overflow: hidden;
}

.node-amenities header.intro {
    padding: 65px 3%;
}

.node-amenities header.intro .type__subtitle {
    font-size: 2.4em;
}

.node-90 .wysiwyg figure.align-center img {
    max-width: 600px;
    margin: 0 auto;
}

.node-90 .wysiwyg figure.align-center figcaption {
    padding-top: 0;
}

/* Words of Wisdom */
a.booklet img {
    max-width: 350px;
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%;
}

@media screen and (min-width: 1241px) {
    li.navigation__dropdown--parent:nth-child(3) .navigation__dropdown:after,
    li.navigation__dropdown--parent:nth-child(4) .navigation__dropdown:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        background: #9d7831;
        height: 10px;
        width: 150px;
    }

    li.navigation__dropdown--parent:nth-child(3) .navigation__dropdown li,
    li.navigation__dropdown--parent:nth-child(4) .navigation__dropdown li {
        width: 150px;
        background: #fdfdfd;
    }
}

form#contact-message-live-from-the-gatesworth-form .form-item {
    display: block;
    margin: 4% auto;
    max-width: 500px;
    width: auto;
}

/*
  * Live From The Gatesworth Updates
  */
body.node-113 article > .large-callouts__link .large-callouts__figure {
    width: 76%;
    max-width: 1070px;
    margin: 100px auto;
}

body.node-113 article > .large-callouts__link .large-callouts__content {
    display: none;
}

body.node-113 article > section.copy img {
    width: calc(100% + 180px);
    height: auto;
    margin-left: -90px;
    max-width: inherit;
}

/* LFTG Holidy Schedule */

body.node-111 .wysiwyg img {
    margin: 0 auto;
}

.text--callout {
    color: #ae8637;
    font-size: 3em;
    margin: 0 auto;
    width: auto;
    display: block;
}

.node-story-detail .text--callout {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    body.node-111 h3.copy__title {
        margin-bottom: 1rem;
        text-align: center;
    }
}

/* Back to Top button */

body #backtotop {
    background: url(../images/icon-chevron-up.svg) no-repeat center center;
    background-color: #ae8639;
    background-size: 50% 50%;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 100px;
    z-index: 2147483646;
    display: none !important;
}

@media screen and (max-width: 1240px) {
    body #backtotop {
        width: 35px;
        height: 35px;
    }
}

.node-senior-living-your-way {
}

/* .node-senior-living-your-way h1.visually-hidden {
  display: blokc;
  display: block;
  clip: none;
  overflow: visible;
  width: auto;
  height: auto;
  position: relative;
  z-index: 100000;
  clip: auto;
  color: white;
  font-style: italic;
  font-size: 8rem;
  max-width: 44vw;
  left: 100px;
  line-height: 1;
  top: 150px;
  max-width: 500px;
}

@media screen and (max-width: 1200px) {
  .node-senior-living-your-way h1.visually-hidden {
    font-size: 7rem;
    max-width: 33vw;
    top: 150px;
  }
}

@media screen and (max-width: 1240px) {
  .node-senior-living-your-way h1.visually-hidden {
    font-size: 7rem;
    max-width: 60vw;
    top: 150px;
  }
}

@media screen and (max-width: 640px) {
  .node-senior-living-your-way h1.visually-hidden {
    font-size: 4.5rem;
    max-width: 60vw;
    top: 80px;
    left: 30px;
  }
} */

@media screen and (min-width: 1241px) {
    .node-senior-living-your-way .slides .slide__half-banner picture img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1240px) {
    .node-senior-living-your-way .slides .slide__half-banner picture img {
        width: 100vw;
    }
}

.node-senior-living-your-way .site-article .slides + .copy + .copy,
.node-senior-living-your-way .site-article .slides + .copy + .copy + .copy + .copy + .copy + .copy + .copy {
    max-width: 100vw;
    width: 100%;
}

@media screen and (min-width: 1282px) {
    .node-senior-living-your-way .site-article .slides + .copy + .copy,
    .node-senior-living-your-way .site-article .slides + .copy + .copy + .copy + .copy + .copy + .copy + .copy {
        /* margin-top: -100px; */
    }
}

.node-senior-living-your-way .site-article .slides + .copy + .copy > div,
.node-senior-living-your-way .site-article .slides + .copy + .copy + .copy + .copy + .copy + .copy + .copy > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px;
    padding: 10px;
    background-color: white;
}

.node-senior-living-your-way .copy__wysiwyg img {
    width: 32%;
    height: auto;
}

@media screen and (max-width: 640px) {
    .node-senior-living-your-way .site-article .slides + .copy + .copy,
    .node-senior-living-your-way .site-article .slides + .copy + .copy + .copy + .copy + .copy + .copy + .copy {
        padding: 0;
    }
    .node-senior-living-your-way .site-article .slides + .copy + .copy > div,
    .node-senior-living-your-way .site-article .slides + .copy + .copy + .copy + .copy + .copy + .copy + .copy > div {
        gap: 5px;
    }
    .node-senior-living-your-way .copy__wysiwyg img {
        width: 49%;
    }

    .node-senior-living-your-way .site-article .slides + .copy + .copy + .copy + .copy + .copy + .copy + .copy .copy__wysiwyg img:last-of-type {
        display: none;
    }
}

.node-senior-living-your-way .side-by-side {
    margin-top: -200px;
}

@media screen and (max-width: 640px) {
    .node-senior-living-your-way .side-by-side {
        margin-top: -150px;
    }
}

section.contact h3 {
    color: #790000;
}

section.contact input.form-submit {
    background-color: #790000;
    border-color: #790000;
    color: white;
    background-image: url(../images/icon-arrow-white.png);
}

section.contact input.form-submit:hover {
    background-color: transparent;
    color: #790000;
    background-image: url(../images/icon-arrow-red.png);
}

.site-messages__list {
    display: none !important;
}

/* Resources */
.resources {
    padding: 0;
    list-style: none;
}

.resources .resource:last-child {
    border-bottom: none;
}

.resource {
    padding: 1.5em 0;
    border-bottom: 1px solid #ccc;
}

.resource > h2 {
    margin-top: 0;
}

.resource p {
    margin: 0 0 0.5rem;
}

.resource a.icon {
    font-size: 18px;
}

@media screen and (max-width: 640px) {
    .resource a.icon {
        font-size: 14px;
        padding-right: 30px;
        margin-top: 5px;
    }
}

/* Event Registration */
.contact.event-registration {
    margin: 50px auto 160px auto;
}

.contact.event-registration .form-item-field-number-of-attendees--0-value {
    display: block;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-bottom: 30px;
    flex: none;
}

.contact.event-registration .form-item-field-number-of-attendees--0-value label {
    text-align: center;
}

.contact.event-registration .form-item-field-number-of-attendees--0-value input {
    max-width: 100px;
}

/*Temp: Digitial Brochure Download*/
.node-the-gatesworth .copy__wysiwyg > img,
.node-senior-living .slides + .copy .copy__wysiwyg > img {
    max-width: 225px;
    height: auto;
    width: 75%;
    margin: 0 auto;
}

.node-the-gatesworth .copy__wysiwyg > img + img,
.node-senior-living .slides + .copy .copy__wysiwyg > img + img {
    max-width: 630px;
    height: auto;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .node-the-gatesworth .copy__wysiwyg > img + img,
    .node-senior-living .slides + .copy .copy__wysiwyg .copy__wysiwyg > img + img {
        width: calc(100% + 60px);
        margin-left: -30px;
    }
}

a.button {
    outline: 0;
    border: 2px solid #790000;
    padding: 5px 45px 7px 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: acumin-pro-condensed, sans-serif;
    text-transform: uppercase;
    max-width: 240px;
    text-align: left;
    width: 100%;
    position: relative;
    background: transparent url(../images/icon-arrow-white.png) no-repeat 93% 50%;
    background-size: 22px auto;
    margin: 0 auto 30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 20px;
    text-decoration: none;
    background-color: #790000;
    color: white;
}

a.button:hover,
a.button:focus {
    background-color: transparent;
    color: #790000;
    background-image: url(../images/icon-arrow-red.png);
}

/*Temp: 35th Anniversary Videon on Testimonials Page*/
.node-testimonials #block-thegatesworth-content > article section.copy:first-of-type,
.node-dining #block-thegatesworth-content > article section.copy:first-of-type {
    margin: 0 !important;
    padding: 0 !important;
    height: 0;
    opacity: 0;
}

.node-testimonials article section:nth-of-type(2) .large-callouts,
.node-dining article section:nth-of-type(2) .large-callouts {
    margin: 0;
    padding: 0;
}

.node-testimonials .site-article,
.node-dining .site-article {
    overflow: visible;
}

.node-testimonials .large-callouts-no-video,
.node-dining .large-callouts-no-video {
    padding-top: 0;
    margin-top: 0;
}

.node-testimonials .large-callouts:not(.large-callouts-no-video) p,
.node-dining .large-callouts:not(.large-callouts-no-video) p {
    font-size: 1.25em;
}

@media screen and (min-width: 641px) {
    .node-testimonials article section:nth-of-type(2),
    .node-dining article section:nth-of-type(2) {
        width: 72%;
        max-width: 890px;
    }

    .node-dining article section:nth-of-type(2) {
        margin-bottom: 50px;
    }
}

.node-testimonials article section:nth-of-type(2) .large-callouts__item,
.node-dining article section:nth-of-type(2) .large-callouts__item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.node-testimonials article section.content-block.js-sr .content-block__content,
.node-dining article section.content-block.js-sr .content-block__content {
    margin-top: 0;
}

fieldset.captcha {
    margin: 0 auto;
    width: 100%;
}

fieldset.captcha .captcha__element {
    justify-content: center;
}

fieldset.captcha label {
    text-align: center;
}

.grecaptcha-badge {
    display: none !important;
}

.node-landing-page-alternate .slides .slide__copy {
    display: none;
}

.node-landing-page-alternate .slides .slide__half-content .text-graphic {
    border: none;
    background-color: transparent;
}

.node-landing-page-alternate .slides .slide__half-content .text-graphic .text-graphic__call {
    display: none;
}

@media screen and (min-width: 1241px) {
    .node-landing-page-alternate .slides .slide__half-content .text-graphic {
        display: none;
    }
}

/* Homepage Video Hero
  ------------------------------------------------------------ */

.node-the-gatesworth .slide.is-video .slide__half-banner {
    height: auto;
    max-height: none;
}

.node-the-gatesworth .slide.is-video .slide__half-banner .intrinsic--banner {
    padding-top: 47.5vw;
}

.node-the-gatesworth .slide.is-video .slide__half-banner .intrinsic--banner .intrinsic__item {
    width: 100%;
    left: auto;
    transform: none;
}

.node-the-gatesworth .slide.is-video .slide__half-banner .intrinsic--banner .intrinsic {
    top: 50%;
    transform: translateY(-50%);
}

.node-the-gatesworth .slide:not(.is-video) .slide__half-banner {
    aspect-ratio: 16 / 6;
    height: auto;
    max-height: none;
}

/* Job Search
  ------------------------------------------------------------ */
.search-job-wrapper {
    /* width: 72%;
  max-width: 890px;
  margin: 0 auto 60px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 90px;
  clear: both; */
    /* margin-left: -60px;
  margin-right: -60px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.search-job-wrapper .apploi-drop-down {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.search-job-wrapper .search-job-container input {
    width: 100%;
    font-size: 18px;
    border-radius: 0;
}

.search-job-wrapper .apploi-drop-down select {
    height: 34px;
    line-height: 1.5em;
    padding: 1px 5px;
}

.search-job-wrapper .jobs-card {
    margin-top: 2rem !important;
}

.search-job-wrapper .jobs-card span {
    line-height: 1.5;
    text-wrap: balance;
}

.search-job-wrapper #paginator_footer {
    font-size: 14px;
}

.search-job-wrapper #paginator a {
}

@media screen and (max-width: 767px) {
    .search-job-wrapper {
        magin-left: 0px;
        margin-right: 0px;
        padding: 0 !important;
    }

    .search-job-wrapper .jobs-card span {
        font-size: inherit;
    }

    .search-job-wrapper .job-link {
        font-size: 16px;
    }
}

/* Temp */

#block-thegatesworth-main-menu .navigation__list > li > a {
    padding: 16px 8px !important;
}

@media screen and (min-width: 1241px) and (max-width: 1350px) {
    #block-thegatesworth-main-menu .navigation__list > li > a {
        padding: 19px 6px !important;
    }
    .navigation__list {
        font-size: 1.75rem;
    }
}

.node-thank-you-page .type__subtitle {
    font-size: clamp(30px, 4vw, 50px);
    text-wrap: balance;
}

.site-messages--error {
    display: none !important;
}

.with_frm_style .frm_message,
.frm_success_style {
    border-radius: 0 !important;
    text-wrap: balance;
}
