/*transform origin*/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html.disable-scroll, html.disable-scroll body {
  overflow: hidden;
}

header {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2A343A;
  padding: 23px 5.35vw 26px;
  border-bottom: 2px solid #7D8890;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-page header:not(.header-scroll):not(.menu-open) {
  background: rgba(42, 52, 58, 0.5);
}
@media (max-width: 991px) {
  .home-page header:not(.header-scroll):not(.menu-open) {
    background: transparent;
    border-bottom: 0;
  }
}
.home-page header:not(.header-scroll):not(.menu-open) .header_logo {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.menu-open {
    border-bottom: 0;
  }
}
@media (max-width: 991px) {
  header {
    padding: 33px 5.12vw 32px;
  }
}
header > * {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.header_logo img {
  width: 170px;
}

.h_middle_sec {
  flex-grow: 0;
  flex-shrink: 0;
}
.h_middle_sec ul {
  display: flex;
  align-items: center;
}
.h_middle_sec, .h_middle_sec ul {
  justify-content: center;
}
.h_middle_sec > *:not(:first-child), .h_middle_sec ul > *:not(:first-child) {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .h_middle_sec > *:not(:first-child), .h_middle_sec ul > *:not(:first-child) {
    margin-left: 14px;
  }
}
.h_middle_sec li {
  list-style-type: none;
}
.h_middle_sec li.current_page_item a {
  color: #7D8890;
}

.h_right_sec {
  justify-content: flex-end;
}

.hamburger_menu {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  width: 84px;
  height: 28px;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 991px) {
  .hamburger_menu {
    width: 42px;
    height: 20px;
  }
}
.hamburger_menu:before, .hamburger_menu:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left top;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.hamburger_menu:after {
  top: auto;
  bottom: 0;
}
.hamburger_menu span, .hamburger_menu::before, .hamburger_menu:after {
  display: block;
  height: 0;
  width: 100%;
  border-bottom: 2px solid #E1D4A6;
}
.hamburger_menu span {
  margin: 14px 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 991px) {
  .hamburger_menu span {
    margin: 10px 0;
  }
}
.menu-open .hamburger_menu span {
  opacity: 0;
}
.menu-open .hamburger_menu:before {
  transform: rotate(18deg);
  transform-origin: left bottom;
}
@media (max-width: 991px) {
  .menu-open .hamburger_menu:before {
    transform: rotate(25deg);
  }
}
.menu-open .hamburger_menu:after {
  transform: rotate(-18deg);
}
@media (max-width: 991px) {
  .menu-open .hamburger_menu:after {
    transform: rotate(-23deg);
  }
}

.nav_menu_wrap {
  background-color: #2A343A;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 82px;
  z-index: 1400;
  width: 100%;
  height: 100%;
  overflow: auto;
}

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

.nav_menu_inner {
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  padding: 0 5.12vw;
}
@media (max-width: 991px) {
  .nav_menu_inner {
    display: block;
  }
}

.nav_mob_links ul,
.nav_menu_left,
.nav_img_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_mob_links {
  width: 100%;
}
.nav_mob_links ul {
  flex-direction: row-reverse;
}
@media (max-width: 389px) {
  .nav_mob_links ul {
    justify-content: space-between;
  }
  .nav_mob_links ul li:not(:last-child) {
    margin-left: 15px;
  }
}
.nav_mob_links li {
  list-style-type: none;
}
.nav_mob_links li.current_page_item a {
  color: #7D8890;
}
.nav_mob_links li:not(:last-child) {
  margin-left: 34px;
}

.nav_menu_left,
.nav_img_wrap {
  width: 50%;
  justify-content: flex-start;
  flex-direction: column;
}
@media (max-width: 991px) {
  .nav_menu_left,
  .nav_img_wrap {
    width: 100%;
  }
}

.nav_menu_left {
  padding: 106px 5.4vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .nav_menu_left {
    padding: 30px 0;
  }
}

.nav_menu_wrap .primary_nav {
  border-top: 2px solid #7D8890;
  width: 100%;
  font: 400 80px/1 "hwt-unit-gothic-720", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1299px) {
  .nav_menu_wrap .primary_nav {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .nav_menu_wrap .primary_nav {
    font-size: 70px;
  }
}
@media (max-width: 499px) {
  .nav_menu_wrap .primary_nav {
    font-size: 50px;
  }
}
@media (max-width: 359px) {
  .nav_menu_wrap .primary_nav {
    font-size: 45px;
  }
}
.nav_menu_wrap .primary_nav li {
  list-style-type: none;
  border-bottom: 2px solid #7D8890;
  text-align: center;
  padding: 30px 0;
}
.nav_menu_wrap .primary_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_menu_wrap .primary_nav li a:after, .nav_menu_wrap .primary_nav li a:before {
  content: "";
  opacity: 0;
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  background-color: #9F7015;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 991px) {
  .nav_menu_wrap .primary_nav li a:after, .nav_menu_wrap .primary_nav li a:before {
    width: 6px;
    height: 6px;
  }
}
.nav_menu_wrap .primary_nav li a::before {
  margin-right: 20px;
}
@media (max-width: 991px) {
  .nav_menu_wrap .primary_nav li a::before {
    margin-right: 7px;
  }
}
.nav_menu_wrap .primary_nav li a::after {
  margin-left: 20px;
}
@media (max-width: 991px) {
  .nav_menu_wrap .primary_nav li a::after {
    margin-left: 7px;
  }
}
.system .nav_menu_wrap .primary_nav li a:hover, .nav_menu_wrap .primary_nav li.current_page_item a {
  color: #7D8890;
}
.system .nav_menu_wrap .primary_nav li a:hover::after, .system .nav_menu_wrap .primary_nav li a:hover::before, .nav_menu_wrap .primary_nav li.current_page_item a::after, .nav_menu_wrap .primary_nav li.current_page_item a::before {
  opacity: 1;
}

.nav_img_wrap {
  padding: 112px 0 112px 5.4vw;
  display: block;
  border-left: 2px solid #7D8890;
}

.nav_menu_right {
  position: -webkit-sticky;
  position: sticky;
  top: 112px;
  display: block;
  width: 100%;
  height: calc(100vh - 224px - 82px);
}
.nav_menu_right.nav_img_fp, .nav_menu_right[data-page=floor-plans] {
  width: calc(100% - 5.4vw);
  background-size: contain !important;
}
.nav_menu_right.hidden {
  display: none;
}

/*.......Specials Popup.......*/
.specials_wrap {
  position: fixed;
  background-color: transparent;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1503;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  overflow: auto;
  flex-wrap: wrap;
  pointer-events: none;
}
@media (max-width: 991px) {
  .specials_wrap {
    justify-content: center;
    padding: 0 5.12vw;
  }
}
.specials_wrap.hidden {
  opacity: 0;
  visibility: hidden;
}
.specials_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.75;
  background: #2A343A;
}
.specials_wrap .specials_box {
  max-width: 503px;
  pointer-events: all;
  width: 100%;
  padding: 72px;
  background: #9F7015;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .specials_wrap .specials_box {
    padding: 64px 32px;
  }
}
.specials_wrap .specials_box:before {
  content: "";
  border: 2px solid #E1D4A6;
  top: 10px;
  left: 10px;
  right: 10px;
  display: block;
  bottom: 10px;
  position: absolute;
  z-index: -1;
}
.specials_wrap .specials_box a {
  font-size: 18px;
}
.specials_wrap .specials_box .specials_heading,
.specials_wrap .specials_box .specials_txt {
  margin-bottom: 25px;
}
.specials_wrap .specials_box > *:last-child {
  margin-bottom: 0;
}
.specials_wrap .specials_box .btn:after, .specials_wrap .specials_box .btn:before {
  background-color: #2A343A;
}
.specials_wrap .specials_box .special_disclaimer {
  margin-top: 20px;
  display: inline-block;
}
.specials_wrap .specials_box .specials_close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  position: absolute;
  width: 30px;
  height: 10px;
  top: 26px;
  right: 26px;
  background: url(../images/icons/close.svg) no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

.using-keytab .specials_wrap *:focus {
  outline-color: #E1D4A6;
}

/*......Specials Bar......*/
.specials_bar {
  position: fixed;
  background-color: #9F7015;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1501;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  overflow: auto;
  padding: 14px 5.35vw;
  gap: 5px;
}
@media (max-width: 991px) {
  .specials_bar {
    justify-content: center;
    padding: 12px 5.12vw;
  }
}
.specials_bar .specials_bar_cnt {
  text-align: center;
}
.specials_bar .special_disclaimer {
  display: inline-block;
}
.specials_bar .specials_bar_close {
  flex-shrink: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  align-items: center;
  display: flex;
  height: 40px;
  width: 20px;
  background: url(../images/icons/close.svg) no-repeat center center;
  background-size: contain;
}
@media (min-width: 992px) {
  .specials_bar .specials_bar_close {
    margin: auto 0;
    position: absolute;
    height: 100%;
    right: 26px;
    top: 0;
  }
}

.has_dollar_icon:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-top: -3px;
  margin-right: 8px;
  background: url(../images/icons/dollar.svg) no-repeat center center/100% auto;
}

.dollar_icon_color:before {
  background: url(../images/icons/dollar_blue.svg) no-repeat center center/100% auto;
}

.specials_bar .has_dollar_icon {
  display: inline-block;
}

.fp_special {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .fp_special {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .active .fp_special {
    margin-top: 10px;
  }
}

.fp_special {
  width: 95%;
}

.fp_disclaimer {
  width: 100%;
  margin-top: 16px;
}

.fp_special, .fp_special p {
  text-align: center;
}

.specials_wrap .special_disclaimer, .special_disclaimer {
  font-size: 0.85em;
}

.fp_disclaimer, .fp_disclaimer .special_disclaimer {
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
@media (max-width: 991px) {
  .fp_disclaimer, .fp_disclaimer .special_disclaimer {
    text-align: center;
  }
}

.fp_plan_type .secTitleFont.has_dollar_icon {
  position: relative;
}
.fp_plan_type .secTitleFont.has_dollar_icon::before {
  margin-top: -11px;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: -30px;
}
@media (max-width: 991px) {
  .fp_plan_type .secTitleFont.has_dollar_icon::before {
    display: none;
  }
}

@media (min-width: 1024px) {
  .fp_disclaimer, .fp_disclaimer .special_disclaimer {
    font-size: 0.875rem;
    /* line-height: 1.5rem; */
  }
}
@media (max-width: 991px) {
  .fp_special {
    width: 100%;
  }
}

/*# sourceMappingURL=fcp.css.map */
