:root {
  --black: black;
  --charcol-blue: var(--slate-blue);
  --white: #fff;
  --slate-blue: #2f364b;
  --beaver: #b68b5e;
  --transparent: #fff0;
  --gray: #f1f1f1;
  --black-transparent: #00000087;
  --white-2: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Martel, sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 65px;
}

h2 {
  color: var(--charcol-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Martel, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
}

p {
  margin-bottom: 10px;
  font-family: Josefin Sans, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

.logo {
  width: 300px;
}

.section {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 30px 35px;
  display: flex;
}

.link-block {
  margin-right: auto;
}

.link {
  color: var(--slate-blue);
  text-transform: uppercase;
  margin-top: 3px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  text-decoration: none;
}

.link:hover {
  color: var(--beaver);
}

.link.w--current {
  color: var(--charcol-blue);
  font-style: italic;
  text-decoration: none;
}

.div-block {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  display: flex;
}

.text-block {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 3px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.section-2 {
  background-color: var(--beaver);
  justify-content: center;
  align-items: center;
  padding: 20px 19px;
  display: flex;
}

.div-block-3 {
  justify-content: flex-start;
  align-items: center;
  height: 750px;
  display: flex;
  position: relative;
}

.div-block-4 {
  justify-content: flex-start;
  align-items: center;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-4.right {
  justify-content: flex-end;
  align-items: center;
}

.div-block-5 {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  padding: 60px;
  display: flex;
}

.div-block-5.transparent {
  background-color: #fff0;
}

.div-block-6 {
  background-color: var(--charcol-blue);
  flex: 1;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.div-block-7 {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #dbdbdb;
  width: 100%;
  height: 100%;
}

.div-block-8 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.lead-heading {
  color: var(--black);
  font-family: Droid Serif, serif;
  font-size: 55px;
  line-height: 55px;
}

.lead-heading.white {
  color: var(--white);
}

.text-block-2 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.button {
  border: 2px solid var(--charcol-blue);
  background-color: var(--charcol-blue);
  border-radius: 5px;
  padding-top: 11px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.button:hover {
  border: 2px solid var(--charcol-blue);
  background-color: var(--transparent);
  color: var(--charcol-blue);
}

.button.inverted {
  border: 2px solid var(--white);
  background-color: #fff0;
  font-family: Lato, sans-serif;
  transition: all .2s;
}

.button.inverted:hover {
  color: var(--black);
  background-color: #fff;
}

.button.outlined {
  background-color: var(--transparent);
  color: var(--charcol-blue);
  transition: all .2s;
}

.button.outlined:hover {
  background-color: var(--charcol-blue);
  color: var(--white);
}

.apply-button {
  border: 2px solid var(--charcol-blue);
  background-color: var(--slate-blue);
  border-radius: 4px;
  margin-left: 15px;
  padding: 14px 24px 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  transition: all .2s;
}

.apply-button:hover {
  background-color: var(--transparent);
  color: var(--charcol-blue);
  font-weight: 700;
}

.nav-menu {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: flex-start;
  align-items: center;
  max-width: 1500px;
  display: flex;
}

.div-block-9 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.section-3 {
  color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 90px 14px;
  display: flex;
}

.section-3.gray {
  background-color: var(--gray);
}

.section-3.blue {
  background-color: var(--slate-blue);
  color: var(--white);
}

.section-3.stretch {
  flex: 1;
}

.image {
  object-fit: cover;
  align-self: auto;
  width: 500px;
  height: 500px;
}

.container-2 {
  grid-column-gap: 47px;
  grid-row-gap: 47px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-block-3 {
  color: var(--slate-blue);
  font-family: Droid Serif, serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
}

.text-block-3.white {
  color: var(--white);
}

.info {
  color: var(--black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.info.white {
  color: var(--white);
}

.div-block-10 {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.h2 {
  color: var(--beaver);
  font-family: Droid Serif, serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 45px;
}

.h2.white {
  color: var(--white);
}

.h2.center {
  color: var(--slate-blue);
  text-align: center;
  margin-top: 0;
}

.tab-link-tab-1 {
  background-color: var(--beaver);
  border: 1px solid #546951;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.tab-link-tab-1.w--current {
  background-color: #4d5f4a;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tabs-menu {
  display: flex;
}

.text-block-5 {
  color: var(--white);
  text-align: center;
  font-family: Josefin Sans, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.tabs {
  width: 100%;
  max-width: 1500px;
}

.image-2 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: static;
}

.slider {
  flex: 0 auto;
  width: auto;
  height: auto;
}

.mask {
  width: auto;
}

.section-5 {
  background-color: var(--charcol-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 90px 20px;
  display: flex;
}

.container-3 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin-bottom: 30px;
  display: flex;
}

.footer-logo {
  width: 350px;
}

.copyright {
  color: #191919;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
}

.footer-links {
  color: var(--charcol-blue);
  text-align: center;
  flex: none;
  font-weight: 400;
  text-decoration: none;
}

.footer-links:hover {
  color: var(--black);
}

.footer-links.w--current {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Varela Round, sans-serif;
}

.footer-links.w--current:hover {
  color: #22a9c5;
}

.ada-div {
  color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 750px;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.ada-bar {
  text-align: left;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-height: none;
  margin-top: 22px;
  margin-bottom: 16px;
  margin-right: 16px;
  display: flex;
  position: relative;
  overflow: visible;
}

.eho-image {
  color: #181818;
  width: 200px;
  height: auto;
}

.ada-footer {
  color: var(--white);
  text-align: center;
  font-family: Varela, sans-serif;
  font-size: 14px;
}

.image-6 {
  width: 200px;
}

.code-embed-2 {
  padding-top: 20px;
  padding-bottom: 0;
}

.code-embed-3 {
  height: 750px;
}

.div-block-11 {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.h1 {
  color: var(--charcol-blue);
}

.h1.center {
  margin-top: 0;
  padding-top: 20px;
  font-family: Droid Serif, serif;
}

.container-5 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  display: flex;
}

.paragraph.center {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.div-block-12 {
  width: 34%;
  height: 400px;
  position: relative;
}

.image-7 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-6 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-6 {
  z-index: 5;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: Droid Serif, serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-13 {
  background-color: var(--beaver);
  opacity: .64;
  position: absolute;
  inset: 0%;
}

.div-block-13.blue {
  background-color: var(--slate-blue);
}

.form-block {
  width: 100%;
}

.form {
  margin-top: 25px;
}

.body {
  flex-flow: column;
  display: flex;
}

.section-7 {
  position: relative;
}

.code-embed-4 {
  flex: 0 auto;
  width: 100vw;
  max-width: none;
  margin-bottom: 0;
  display: none;
}

.pop-up {
  z-index: 9999;
  background-color: var(--black-transparent);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-14 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  background-color: var(--white);
  color: var(--black);
  border: 2px solid #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 500px;
  max-width: 500px;
  height: 400px;
  padding: 45px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 5px #0000005c;
}

.close-button {
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 10px 10px auto auto;
}

.close-button:hover {
  opacity: .78;
}

.text-block-7 {
  text-align: center;
  font-family: Martel, sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 40px;
}

.text-block-8 {
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.image-9 {
  width: 100px;
  height: 100px;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
}

.footer-social-link {
  background-color: #fff0;
  border-radius: 0;
  margin-left: 5px;
  margin-right: 5px;
  transition: all .2s;
}

.footer-social-link:hover {
  opacity: .55;
}

.social-icon {
  width: 25px;
  height: 25px;
}

.div-block-17 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 45%;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.floorplan-title {
  color: var(--charcol-blue);
  text-align: center;
  margin-top: 10px;
  font-family: Droid Serif, serif;
  font-weight: 800;
}

.text-block-10 {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.floorplan-price {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.image-10 {
  object-fit: contain;
  height: 300px;
  max-height: 300px;
}

.div-block-19 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-top: 126px;
  padding-bottom: 126px;
  display: flex;
}

.image-11 {
  width: auto;
  max-width: 400px;
}

.phone-link {
  color: var(--black);
}

.phone-link.white {
  color: var(--white);
}

.spacer {
  width: 100%;
}

.paragraph-3 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.paragraph-4, .paragraph-5, .paragraph-6, .paragraph-7 {
  font-family: Montserrat, sans-serif;
}

.field-label {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.section-9 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  font-family: Droid Serif, serif;
}

.text-block-11 {
  font-family: Montserrat, sans-serif;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.background-color {
  background-color: #000000a6;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.footer-link {
  text-decoration-color: #fff;
}

.footer-link:hover {
  opacity: .8;
}

@media screen and (max-width: 991px) {
  .link {
    margin-top: 0;
  }

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

  .div-block-3 {
    height: 550px;
  }

  .div-block-4 {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .div-block-5 {
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    display: flex;
  }

  .div-block-7 {
    object-fit: cover;
  }

  .apply-button {
    border-radius: 0;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .nav-menu {
    background-color: #e6e6e6;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .menu-button {
    background-color: var(--charcol-blue);
    border-radius: 5px;
  }

  .menu-button.w--open {
    background-color: #855034;
    border-radius: 5px;
    transition: all .2s;
  }

  .icon {
    color: var(--white);
  }

  .container {
    flex-flow: column;
  }

  .section-3 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .image {
    width: auto;
  }

  .div-block-10 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .slider {
    width: 100%;
  }

  .mask {
    width: auto;
  }

  .container-3 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .div-block-11 {
    flex-flow: wrap;
  }

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

  .div-block-12 {
    width: 100%;
    height: 200px;
  }

  .section-6 {
    flex-flow: column;
  }

  .div-block-17 {
    width: 45%;
  }

  .image-10 {
    object-fit: contain;
  }

  .background-color {
    justify-content: flex-start;
    align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .container {
    flex-flow: column;
  }

  .section-3 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .image {
    height: 300px;
  }

  .container-2 {
    flex-flow: column;
  }

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

  .info {
    width: auto;
    max-width: none;
  }

  .tab-link-tab-1 {
    border: 1px solid #51664d;
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .tabs-menu {
    flex-flow: wrap;
  }

  .slider {
    width: auto;
    height: auto;
  }

  .mask {
    width: auto;
  }

  .section-5 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .container-3 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ada-div {
    flex-direction: column;
    width: auto;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .ada-bar {
    width: auto;
  }

  .eho-image {
    height: auto;
  }

  .ada-footer {
    width: auto;
  }

  .image-6 {
    max-width: 250px;
  }

  .code-embed-2 {
    max-width: 90vw;
  }

  .code-embed-3 {
    height: 500px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    margin-right: 10px;
    padding-right: 10px;
  }

  .section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-3 {
    flex-flow: column;
    height: 400px;
  }

  .div-block-4 {
    padding: 0;
  }

  .div-block-4.right {
    justify-content: center;
    align-items: center;
    max-width: 100vw;
  }

  .div-block-5 {
    max-width: 100vw;
    padding: 40px 20px;
  }

  .div-block-6 {
    display: none;
  }

  .div-block-8 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: wrap;
  }

  .lead-heading {
    font-size: 40px;
    line-height: 40px;
  }

  .container {
    max-width: 90vw;
  }

  .tab-link-tab-1 {
    width: 100%;
  }

  .ada-div {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ada-bar {
    width: auto;
    margin-right: 0;
  }

  .copyright-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }

  .h1.center {
    font-size: 40px;
    line-height: 40px;
  }

  .container-5 {
    max-width: 90vw;
  }

  .text-block-6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .form-block {
    max-width: 90vw;
  }

  .section-7 {
    border-bottom: 2px none var(--charcol-blue);
  }

  .pop-up {
    padding: 9px;
  }

  .div-block-14 {
    object-fit: fill;
    width: auto;
    max-width: 100vw;
    height: auto;
    max-height: 80vh;
    overflow: scroll;
  }

  .close-button {
    object-fit: fill;
    position: absolute;
  }

  .div-block-17 {
    width: auto;
  }

  .image-10 {
    height: auto;
    max-height: none;
  }

  .background-color {
    padding: 0;
  }
}


