/* Define theme colors here */
:root {
  /* Light Tones */
  --light-primary: #f3eadb; /* Light cream/beige - Accent */
  --light-secondary: #cddddc; /* Pale blue-grey - Accent */

  /* Dark Tones */
  --dark-primary: #4c4236; /* Dark earthy brown - Accent */
  --dark-secondary: #4c4236; /* Dark earthy brown - Accent */

  /* Accent Tones */
  --accent-primary: #697051; /* Sage green - Secondary Color */
  --accent-secondary: #4c4236; /* Dark earthy brown - Used for bg_dark */
}
/* End Theme Colors */
:root {
  --font-body: "Quincy Cf", "Georgia", "Times New Roman", "serif";

  --font-body-bold: "Quincy Cf", "Georgia", "Times New Roman", "serif";

  --font-heading: "BC Novatica", "Helvetica Neue", "Arial", "sans-serif";

  --font-light: "Quincy Cf", "Georgia", "Times New Roman", "serif";
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video,
abbr,
address,
cite,
del,
dfn,
ins,
kbd,
q,
samp,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
hgroup,
menu,
summary,
time,
mark,
audio {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  outline: 0;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
select {
  vertical-align: middle;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

a:focus {
  /* chrome focus styles */
  outline-color: rgb(77, 144, 254);
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
}

button {
  background: transparent;
  outline: 0;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

button:focus {
  /* chrome focus styles */
  outline-color: rgb(77, 144, 254);
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
}

/* Define button theme here
  
  Button will always use the --accent-primary color as the 
      - background in the default state
      - text color in the hover state
  
  This variable defines the
      - text color of the button's default state
      - background of the button's hover state
  
  Possible values: --light-primary or --dark-primary
  */
:root {
  --button_color: #ffffff;
}
/* End button theme */

body {
  color: var(--dark-primary);
}

.bg_white * {
  color: var(--dark-primary);
}

.bg_dark {
  background: var(--accent-secondary);
}

.bg_dark * {
  color: #ffffff;
}

.bg_dark p a:hover,
.bg_dark p a:focus {
  color: var(--accent-primary);
  text-shadow: 0 0 1px var(--accent-primary);
}

.bg_light {
  background: var(--light-primary);
}

.bg_light * {
  color: var(--dark-primary);
}

._accent {
  color: var(--light-secondary);
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  -webkit-transition: none;
  transition: none;
}

.screen-reader-text.skip-link:focus {
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  left: 10px;
  top: 10px;
  z-index: 100000;
  display: inline-block;
  height: auto;
  width: auto;
  cursor: pointer;
}

body:not(._tabbing) button,
body:not(._tabbing) a {
  outline: none;
}

html,
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: grayscale;
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--accent-primary);
}

button,
a {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

p {
  margin-bottom: 30px;
  font-weight: 300;
}

p:last-of-type {
  margin-bottom: 0;
}

p a {
  text-decoration: underline;
}

p a:hover,
p a:focus {
  text-decoration: underline;
  text-shadow: 0 0 1px #000000;
}

main {
  width: calc(100vw - (100vw - 100%));
}

main:focus-visible {
  outline: 0;
  /* bugfix black outline */
}

section {
  width: calc(100vw - (100vw - 100%) - 60px);
  margin: 0 30px 20px;
  position: relative;
}

section > div {
  width: 88%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 6vw 4vw;
}

figure {
  font-size: 0;
}

figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

figure.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}

figure.bg-img img {
  opacity: 0;
  visibility: hidden;
  display: block;
}

._content {
  padding: 0 4vw;
}

.button {
  background: var(--accent-primary);
  color: var(--button_color);
  padding: 15px 37px;
  font-size: 16px;
  font-family: var(--font-body-bold);
  font-weight: bold;
  border: 1px solid var(--accent-primary);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.button svg,
.button img {
  margin-left: 10px;
  fill: var(--button_color);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

/* Instead of swapping colors, we keeps the background 'Blaze' 
     and apply a brightness filter to create a darker shade. */
.button:hover,
.button:focus {
  background: var(--accent-primary);
  color: var(--button_color);
  box-shadow: inset 0 0 0 100em rgba(0, 0, 0, 0.15);
  border-color: var(--accent-primary);
}
/* Ensures the arrow/icon stays white (var(--button_color)) 
         instead of changing to the accent color. */
.button:hover svg,
.button:hover img,
.button:focus svg,
.button:focus img {
  fill: var(--button_color);
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

ul + .button,
p + .button {
  margin-top: 60px;
}

.neo_brochure {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 2;
  -webkit-transform: rotate(-180deg) translateY(50%);
  transform: rotate(-180deg) translateY(50%);
}

.neo_brochure > a {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  padding: 40px 15px;
}

.neo_brochure > a > img,
.neo_brochure > a > svg {
  margin-left: 0;
  margin-bottom: 14px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.neo_brochure > a:hover > img,
.neo_brochure > a:hover > svg,
.neo_brochure > a:focus > img,
.neo_brochure > a:focus > svg {
  -webkit-transform: rotate(180deg) translateY(5px);
  transform: rotate(180deg) translateY(5px);
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  display: block;
}

h1,
.h1 {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1.05;
  font-weight: 500;
}

@media screen and (max-width: 1480px) {
  h1,
  .h1 {
    font-size: calc(80px + -35 * (100vw - 1480px) / -1160);
  }
}

@media screen and (max-width: 320px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 50px;
  font-weight: 500;
}

@media screen and (max-width: 1480px) {
  h2,
  .h2 {
    font-size: calc(50px + -15 * (100vw - 1480px) / -1160);
  }
}

@media screen and (max-width: 320px) {
  h2,
  .h2 {
    font-size: 35px;
  }
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 1480px) {
  h3,
  .h3 {
    font-size: calc(22px + -2 * (100vw - 1480px) / -1160);
  }
}

@media screen and (max-width: 320px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1480px) {
  h4,
  .h4 {
    font-size: calc(20px + -2 * (100vw - 1480px) / -1160);
  }
}

@media screen and (max-width: 320px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

h6,
.h6 {
  font-family: var(--font-body);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 300;
}

@media screen and (max-width: 1480px) {
  h6,
  .h6 {
    font-size: calc(20px + -2 * (100vw - 1480px) / -1160);
  }
}

@media screen and (max-width: 320px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}

.neo_scurve {
  overflow: hidden;
}

.neo_scurve > div {
  padding-top: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.neo_scurve > div > div {
  width: 50%;
}

.neo_scurve ._media {
  width: calc(50% + (100vw - 100% - 60px) / 2);
  margin-left: calc(-1 * (100vw - 100% - 60px) / 2);
}

.neo_scurve ._content {
  padding-top: 6vw;
  padding-bottom: 6vw;
  padding-left: 0;
  padding-right: 4vw;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}

.neo_scurve ._content p {
  font-weight: 300;
}

.neo_scurve ._content + ._media {
  margin-left: 0;
  margin-right: calc(-1 * (100vw - 100% - 60px) / 2);
}

.neo_scurve ._media + ._content {
  padding-left: 4vw;
  padding-right: 0;
}
#header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 100%;
  padding: 0 30px;
}

#header > div {
  height: 76px;
  width: 88%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 4vw;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

#header > div .neo_logo {
  font-size: 0;
  height: 60%;
}

#header > div .neo_logo > img,
#header > div .neo_logo > svg {
  width: auto;
  height: 100%;
  max-width: 200px;
}

#header > div .neo_menu {
  height: 100%;
  /* Firefox scrollbar */
  scrollbar-color: var(--accent-primary) #ffffff;
  scrollbar-width: auto;
  /* Chrome scrollbar */
}

#header > div .neo_menu::-webkit-scrollbar {
  width: 5px;
}

#header > div .neo_menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--accent-primary);
}

#header > div .neo_menu nav {
  height: 100%;
}

#header > div .neo_menu nav ul {
  height: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  gap: 16px;
}

#header > div .neo_menu nav ul > li {
  height: 100%;
}

#header > div .neo_menu nav ul > li a {
  display: block;
  height: 100%;
  color: var(--dark-primary);
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: bold;
  line-height: 1;
  padding: 25px 7px 25px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

#header > div .neo_menu nav ul > li a:hover,
#header > div .neo_menu nav ul > li a:focus {
  border-bottom: 5px solid var(--accent-primary);
}

#header > div .neo_login a {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--dark-primary);
  text-transform: uppercase;
}

#header > div .neo_login a > span {
  border-bottom: 1px solid transparent;
  -webkit-transition: border 0.35s ease-in-out;
  transition: border 0.35s ease-in-out;
}

#header > div .neo_login a > img,
#header > div .neo_login a > svg {
  margin-left: 11px;
  fill: var(--dark-primary);
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

#header > div .neo_login a:hover,
#header > div .neo_login a:focus {
  color: var(--accent-primary);
}

#header > div .neo_login a:hover > span,
#header > div .neo_login a:focus > span {
  border-bottom: 1px solid var(--accent-primary);
}

#header > div .neo_login a:hover > img,
#header > div .neo_login a:hover > svg,
#header > div .neo_login a:focus > img,
#header > div .neo_login a:focus > svg {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.neo_hamburger {
  display: none;
  position: relative;
  width: 50px;
  height: 76px;
  cursor: pointer;
}

.neo_hamburger::before,
.neo_hamburger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  background: #000000;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.neo_hamburger::before {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.neo_hamburger::after {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.neo_hero {
  height: calc(100vh - 90px - 20px);
  min-height: 450px;
  background: #000000;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.neo_hero > figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.neo_hero > figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.neo_hero > figure:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent -webkit-linear-gradient(
      bottom,
      #000000 0%,
      rgba(84, 84, 84, 0) 100%
    ) 0% 0% no-repeat padding-box;
  background: transparent
    linear-gradient(0deg, #000000 0%, rgba(84, 84, 84, 0) 100%) 0% 0% no-repeat
    padding-box;
  mix-blend-mode: multiply;
  opacity: 0.72;
}

.neo_hero > div {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.neo_hero > div span {
  font-weight: 300;
}

.neo_building > div {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}

.neo_building > div > div {
  width: 50%;
}

.neo_building > div > div._content {
  padding-right: 0;
}

.neo_building > div > div p {
  margin-bottom: 35px;
  font-weight: 300;
}

.neo_building > div > div ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.neo_building > div > div ul li {
  margin-right: 4vw;
  margin-bottom: 5px;
}

.neo_building > div > div ul li:last-of-type {
  margin-bottom: 0;
}

.neo_building > div > div ul li > span {
  display: block;
  font-weight: 300;
}

.neo_building > div > div ul li > span:first-of-type {
  margin-bottom: 5px;
}

.neo_building > div > div ul li > span:last-of-type {
  margin-bottom: 0;
}

.neo_amenities > div > div ul li {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.neo_amenities > div > div ul li:last-of-type {
  margin-bottom: 0;
}

.neo_amenities p {
  font-weight: 500;
}

.neo_gallery > div {
  width: 100%;
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}

.neo_gallery > div > div._heading {
  width: 88%;
  max-width: 1480px;
  margin: 0 auto 50px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.neo_gallery > div > div._heading > h2 {
  margin-right: 20px;
  margin-bottom: 0px;
}

.neo_gallery > div > div.neo_slider {
  width: calc(100% + 60px);
  margin-left: -30px;
}

.neo_gallery > div > div.neo_slider .slick-list {
  padding-left: calc(30px + 4vw + (100% - 60px) * 0.12 / 2);
}

.neo_gallery > div > div.neo_slider .slick-slide {
  margin: 0 10px;
  position: relative;
}

.neo_gallery > div > div.neo_slider .slick-slide button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.neo_gallery > div > div.neo_slider .slick-slide button:focus {
  outline-offset: -2px;
}

.neo_gallery > div > div.neo_slider figure img {
  max-height: 75vh;
  height: 50vw;
  width: auto;
}

.neo_gallery > div > div.neo_slider .slick-arrow {
  width: 45px;
  height: 45px;
  background: var(--accent-primary);
  border-radius: 100%;
  display: block;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.neo_gallery > div > div.neo_slider .slick-arrow > svg {
  fill: var(--button_color);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.neo_gallery > div > div.neo_slider .slick-arrow.slick-prev {
  left: 60px;
}

.neo_gallery > div > div.neo_slider .slick-arrow.slick-next {
  right: 60px;
}

.neo_gallery > div > div.neo_slider .slick-arrow:hover,
.neo_gallery > div > div.neo_slider .slick-arrow:focus {
  background: var(--accent-primary);
  color: var(--button_color);
  box-shadow: inset 0 0 0 100em rgba(0, 0, 0, 0.15);
  border-color: var(--accent-primary);
}

/* --- Gallery Slider Arrow Updates --- */

/* 1. General Hover/Focus Color */
/* Ensures the icon color is correct on both hover and focus */
.neo_gallery > div > div.neo_slider .slick-arrow:hover > svg,
.neo_gallery > div > div.neo_slider .slick-arrow:focus > svg {
  fill: var(--button_color);
}

/* 2. PREVIOUS Arrow logic */
/* Moves LEFT (-5px) on Hover or Focus */
.neo_gallery > div > div.neo_slider .slick-prev:hover > svg,
.neo_gallery > div > div.neo_slider .slick-prev:focus > svg {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}

/* 3. NEXT Arrow logic */
/* Moves RIGHT (5px) on Hover or Focus */
.neo_gallery > div > div.neo_slider .slick-next:hover > svg,
.neo_gallery > div > div.neo_slider .slick-next:focus > svg {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.neo_tour > div > div._heading {
  text-align: center;
}

.neo_tour > div > div._media figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.neo_tour > div > div._media figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.neo_availability > div > div._heading {
  text-align: center;
}

.neo_availability [role="table"] {
  overflow-y: auto;
  max-height: 70vh;
  padding-right: 10px;
  /* Firefox scrollbar */
  scrollbar-color: var(--accent-primary) #ffffff;
  scrollbar-width: auto;
}

/* Chrome scrollbar */
.neo_availability [role="table"]::-webkit-scrollbar {
  width: 5px;
}

.neo_availability [role="table"]::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--accent-primary);
}

.neo_availability [role="table"] [role="rowgroup"] [role="row"] {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid #e3e3e3;
  margin-bottom: 5px;
  padding: 15px 45px;
}

.neo_availability [role="table"] [role="rowgroup"] [role="row"] [role="cell"] {
  width: calc((100% - 150px - 185px) / 4);
  padding: 0 5px;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]._floorplan {
  width: 150px;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]._floorplan
  > figure {
  max-width: 70px;
  height: auto;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]._floorplan
  > figure
  > img {
  max-height: 52px;
  object-fit: cover;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]._detail {
  width: 185px;
  padding: 0;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]._detail
  > .button {
  margin-left: auto;
  width: 100%;
  text-align: center;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]
  p {
  margin-bottom: 0;
  font-weight: 300;
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]
  p
  strong {
  font-family: var(--font-body-bold);
}

.neo_availability
  [role="table"]
  [role="rowgroup"]
  [role="row"]
  [role="cell"]
  label {
  font-size: 16px;
  font-weight: 300;
}

.neo_location > div > div iframe {
  width: 100%;
  min-height: 75vh;
}

.neo_leasing {
  text-align: center;
}

.neo_leasing > div > div._heading img {
  width: auto;
  height: 45px;
  max-width: 100%;
  margin-bottom: 50px;
}

.neo_leasing > div > div._contacts > ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

.neo_leasing > div > div._contacts > ul > li {
  width: 25%;
  padding: 15px;
}

.neo_leasing > div > div._contacts > ul > li > p {
  margin-bottom: 20px;
  font-weight: 300;
}

.neo_leasing > div > div._contacts > ul > li > ul {
  line-height: 1.5;
}

.neo_leasing > div > div._contacts > ul > li > ul > li {
  display: block;
  margin-bottom: 3px;
}

.neo_leasing > div > div._contacts > ul > li a {
  font-size: 18px;
  color: var(--light-primary);
  font-family: var(--font-body-bold);
  border-bottom: 1px solid transparent;
  /* max-width: 240px; */
  word-wrap: break-word;
  display: inline-block;
}

.neo_leasing > div > div._contacts > ul > li a:hover,
.neo_leasing > div > div._contacts > ul > li a:focus {
  border-bottom: 1px solid var(--accent-primary);
}

.neo_leasing > div > div._contacts > ul > li > span {
  display: block;
  font-size: 18px;
  font-weight: 300;
}

#footer {
  width: calc(100vw - (100vw - 100%) - 60px);
  margin: 0 30px;
  position: relative;
  padding: 2vw 0;
}

#footer > div {
  width: 88%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 4vw;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

#footer > div.neo_footer {
  margin-top: 15px;
  margin-bottom: 30px;
}

#footer > div.neo_footer > div {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

#footer > div.neo_footer > div:first-child {
  margin-right: 15px;
  margin-bottom: 15px;
}

#footer > div.neo_footer > div .neo_socials > li {
  margin-left: 30px;
}

#footer > div.neo_footer > div .neo_socials > li > a {
  display: block;
}

#footer > div.neo_footer > div .neo_socials > li > a > svg g,
#footer > div.neo_footer > div .neo_socials > li > a > svg path {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#footer > div.neo_footer > div .neo_socials > li > a:hover > svg g,
#footer > div.neo_footer > div .neo_socials > li > a:focus > svg g {
  stroke: var(--accent-primary);
}

#footer > div.neo_footer > div .neo_socials > li > a:hover > svg path,
#footer > div.neo_footer > div .neo_socials > li > a:focus > svg path {
  fill: var(--accent-primary);
}

#footer > div.neo_disclaimer {
  font-family: var(--font-light);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 300;
}

#footer > div.neo_copyright {
  font-size: 15px;
  font-weight: 300;
}

#footer > div.neo_copyright > div {
  margin-bottom: 20px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

#footer > div.neo_copyright > div > ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

#footer > div.neo_copyright > div:first-child {
  margin-right: 20px;
}

#footer > div.neo_copyright > div:first-child a {
  margin-left: 16px;
  color: var(--dark-primary);
  text-decoration: underline;
}

#footer > div.neo_copyright > div:first-child a:hover,
#footer > div.neo_copyright > div:first-child a:focus {
  color: var(--accent-primary);
}

#footer > div.neo_copyright svg,
#footer > div.neo_copyright img {
  width: 100px;
  height: auto;
}
/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: var(--dark-primary);
  opacity: 1;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ffffff;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ffffff;
}

.mfp-preloader a:hover {
  color: #ffffff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.mfp-close {
  width: 37.477px;
  height: 37.477px;
  line-height: 37.477px;
  position: absolute;
  right: 50px;
  top: 50px;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  padding: 0;
  color: #ffffff;
}

button.mfp-close > svg {
  stroke: #ffffff;
  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

button.mfp-close:hover,
button.mfp-close:focus {
  opacity: 1;
}

button.mfp-close:hover > svg,
button.mfp-close:focus > svg {
  stroke: var(--accent-primary);
}

.mfp-close-btn-in .mfp-close {
  color: #ffffff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #ffffff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  display: none !important;
}

button.mfp-arrow {
  position: absolute;
  opacity: 1;
  margin: 0;
  padding: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 45px;
  height: 45px;
  background: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: 100%;
  display: block;
}

button.mfp-arrow > svg {
  fill: var(--button_color);
  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

button.mfp-arrow:hover,
button.mfp-arrow:focus {
  opacity: 1;
  background: var(--button_color);
}

button.mfp-arrow:hover > svg,
button.mfp-arrow:focus > svg {
  fill: var(--accent-primary);
}

button.mfp-arrow-left {
  left: 30px;
}

button.mfp-arrow-right {
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0;
  background: var(--dark-primary);
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0;
  background: var(--dark-primary);
}

.mfp-figure small {
  color: #ffffff;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #ffffff;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /**
     * Remove all paddings around the image on small screen
     */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

@media screen and (min-width: 1742px) {
  /* $containMax is 1480px; */
  /* this is the media query at which the containers max out at 1480px wide */
  .neo_gallery > div > div.neo_slider .slick-list {
    padding-left: calc(30px + 4vw + (100% - 60px - 1480px) / 2);
  }
}

@media screen and (max-width: 1380px) {
  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"] {
    width: calc((100% - 100px - 185px) / 4);
  }

  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"]._floorplan {
    width: 100px;
  }

  .neo_leasing > div > div._contacts > ul > li {
    width: 50%;
  }
}

@media screen and (max-width: 1180px) {
  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"] {
    width: 33% !important;
    margin: 5px 0px;
  }

  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"]._detail
    > .button {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1080px) {
  #header > div,
  section > div,
  .neo_gallery > div > div._heading,
  #footer > div {
    width: 100%;
  }

  .neo_gallery > div > div.neo_slider .slick-list {
    padding-left: calc(30px + 4vw + (100% - 60px) * 0 / 2);
  }
}

@media screen and (max-width: 960px) {
  .neo_hamburger {
    display: block;
  }

  #header:before {
    content: "";
    background: transparent;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }

  #header div .neo_menu {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: auto;
  }

  #header div .neo_menu > nav {
    padding: 2.5vh 0;
  }

  #header div .neo_menu > nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  #header div .neo_menu > nav > ul > li > a {
    padding: 2.5vh 0px;
    font-size: 18px;
  }

  #header div .neo_login {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    margin-top: 5vh;
  }

  #header div .neo_login > a {
    font-size: 16px;
  }

  #header._active:before {
    background: #ffffff;
    -webkit-transform: scaleY(100%);
    transform: scaleY(100%);
  }

  #header._active .neo_menu,
  #header._active .neo_login {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }

  #header._active .neo_hamburger::before {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }

  #header._active .neo_hamburger::after {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }

  h2,
  .h2 {
    margin-bottom: 30px;
  }

  .neo_leasing > div > div._heading img {
    margin-bottom: 30px;
  }

  ul + .button,
  p + .button {
    margin-top: 40px;
  }
}

@media screen and (max-width: 840px) {
  section > div {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .neo_building > div > div {
    width: 100%;
  }

  .neo_scurve > div {
    padding: 0;
  }

  .neo_scurve ._media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }

  .neo_scurve ._content {
    width: 100%;
    padding: 45px 4vw !important;
  }

  .neo_scurve ._content + ._media {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  ._content {
    padding: 0 0;
  }

  .neo_gallery > div > div._heading > h2 {
    width: 100%;
    margin-bottom: 30px;
  }

  .neo_availability [role="table"] [role="rowgroup"] [role="row"] {
    padding: 15px;
  }
}

@media screen and (max-width: 720px) {
  main {
    overflow-x: hidden;
  }

  h2 br,
  .h2 br {
    display: none;
  }

  #header {
    padding: 0 10px;
  }

  #header > div {
    width: 100%;
    padding: 0 30px;
  }

  section {
    margin-bottom: 15px;
  }

  section,
  #footer {
    width: calc(100vw - (100vw - 100%) - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  section > div,
  .neo_gallery > div > div._heading,
  #footer > div {
    padding-left: 30px;
    padding-right: 30px;
  }

  .neo_leasing > div > div._contacts > ul > li {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 15px;
  }

  .neo_leasing > div > div._contacts > ul > li:last-of-type {
    margin-bottom: 0;
  }

  .neo_scurve ._content {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .neo_availability [role="table"] {
    max-height: 60vh;
  }

  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"] {
    width: 50% !important;
  }

  .neo_brochure {
    bottom: 0;
    top: unset;
    -webkit-transform: rotate(270deg) translate(100%, calc(-100vw + 100%));
    transform: rotate(270deg) translate(100%, calc(-100vw + 100%));
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }

  .neo_brochure > button,
  .neo_brochure .button {
    height: 100vw;
    text-align: center;
  }

  .neo_brochure > button > svg,
  .neo_brochure > button > img,
  .neo_brochure .button > svg,
  .neo_brochure .button > img {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  .neo_brochure > button:hover > img,
  .neo_brochure > button:hover > svg,
  .neo_brochure > button:focus > img,
  .neo_brochure > button:focus > svg,
  .neo_brochure .button:hover > img,
  .neo_brochure .button:hover > svg,
  .neo_brochure .button:focus > img,
  .neo_brochure .button:focus > svg {
    -webkit-transform: rotate(90deg) translateY(2px);
    transform: rotate(90deg) translateY(2px);
  }

  body {
    margin-bottom: 46px;
  }

  .neo_gallery > div > div.neo_slider {
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .neo_gallery > div > div.neo_slider .slick-list {
    padding-left: calc(40px + (100% - 20px) * 0 / 2);
  }

  .neo_gallery > div > div.neo_slider .slick-arrow.slick-prev {
    left: 25px;
  }

  .neo_gallery > div > div.neo_slider .slick-arrow.slick-next {
    right: 25px;
  }

  .neo_gallery > div > div.neo_slider figure img {
    height: 60vw;
  }
}

@media screen and (max-height: 500px) {
  #header div .neo_menu {
    max-height: 48vh;
  }
}

@media screen and (max-width: 540px) {
  #footer > div.neo_copyright > div {
    width: 100%;
    display: block;
    margin-right: 0;
  }

  #footer > div.neo_copyright > div:first-child a {
    display: block;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 16px;
  }
}

@media screen and (max-width: 480px) {
  #header > div {
    padding: 0 20px;
  }

  section > div,
  .neo_gallery > div > div._heading,
  #footer > div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .neo_scurve ._content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .neo_leasing > div > div._contacts > ul > li > p {
    margin-bottom: 10px;
  }

  .neo_leasing > div > div._contacts > ul > li a {
    display: block;
    font-size: 17px;
    pad: 5px;
  }

  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"]._detail
    > .button,
  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"]._detail
    > button {
    padding: 13px 18px;
  }

  .neo_gallery > div > div.neo_slider .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .neo_gallery > div > div.neo_slider .slick-arrow > svg {
    width: 40px;
    height: 40px;
  }

  .neo_gallery > div > div.neo_slider .slick-arrow.slick-prev {
    left: 15px;
  }

  .neo_gallery > div > div.neo_slider .slick-arrow.slick-next {
    right: 15px;
  }

  button.mfp-arrow {
    width: 40px;
    height: 40px;
  }

  button.mfp-arrow > svg {
    width: 40px;
    height: 40px;
  }

  button.mfp-arrow.mfp-arrow-left {
    left: 15px;
  }

  button.mfp-arrow.mfp-arrow-right {
    right: 15px;
  }

  button.mfp-close {
    right: 30px;
    top: 30px;
    width: 25px;
    height: 25px;
  }

  button.mfp-close > svg {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 400px) {
  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"]._detail
    > .button,
  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"]._detail
    > button {
    padding: 10px 12px;
  }
}

@media screen and (max-width: 380px) {
  #footer > div.neo_footer > div:first-child {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@media screen and (max-width: 360px) {
  .neo_availability
    [role="table"]
    [role="rowgroup"]
    [role="row"]
    [role="cell"] {
    width: 100% !important;
  }
}
