/*************************************************
* Fonts
*************************************************/
@font-face {
  font-family: 'BeausiteClassicWeb-Medium';
  src: url('../fonts/beausite/BeausiteClassicWeb-Medium.woff2') format('woff2'), url('../fonts/beausite/BeausiteClassicWeb-Medium.woff') format('woff');
}
@font-face {
  font-family: 'BeausiteClassicWeb-Regular';
  src: url('../fonts/beausite/BeausiteClassicWeb-Regular.woff2') format('woff2'), url('../fonts/beausite/BeausiteClassicWeb-Regular.woff') format('woff');
}
@font-face {
  font-family: 'BeausiteClassicWeb-Bold';
  src: url('../fonts/beausite/BeausiteClassicWeb-Bold.woff2') format('woff2'), url('../fonts/beausite/BeausiteClassicWeb-Bold.woff') format('woff');
}
@font-face {
  font-family: 'BeausiteClassicWeb-Thin';
  src: url('../fonts/beausite/BeausiteClassicWeb-Thin.woff2') format('woff2'), url('../fonts/beausite/BeausiteClassicWeb-Thin.woff') format('woff');
}
@font-face {
  font-family: 'BeausiteClassicWeb-Light';
  src: url('../fonts/beausite/BeausiteClassicWeb-Light.woff2') format('woff2'), url('../fonts/beausite/BeausiteClassicWeb-Light.woff') format('woff');
}
@font-face {
  font-family: 'BeausiteFitWeb-Medium';
  src: url('../fonts/beausite/BeausiteFitWeb-Medium.woff2') format('woff2'), url('../fonts/beausite/BeausiteFitWeb-Medium.woff') format('woff');
}
@font-face {
  font-family: 'BeausiteFitWeb-Light';
  src: url('../fonts/beausite/BeausiteFitWeb-Light.woff2') format('woff2'), url('../fonts/beausite/BeausiteFitWeb-Light.woff') format('woff');
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
hr,
input,
textarea,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
main,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
select {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: 'BeausiteClassicWeb-Light', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #5e4939;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  hr,
  input,
  textarea,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  main,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video,
  select {
    font-size: 20px;
  }
}
span,
a {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}
a {
  text-decoration: none;
}
.cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hidden {
  display: none;
}
/*************************************************
* Font Styling mixing
*************************************************/
/*
    font-family,
    font-weight
 */
/*************************************************
* CUSTOM MIXING
*************************************************/
div.blank-header {
  width: 100%;
}
header.header {
  background: #f7f2ee;
  position: relative;
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
header.header.header-fixed {
  position: fixed;
  top: 0;
  z-index: 99;
  opacity: 0;
  /* Initially hidden for smooth transition */
  transform: translateY(-100%);
  /* Starts from top (off-screen) */
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  max-width: 1920px;
  margin: 0 auto;
}
header.header.header-fixed.header-scrolled {
  opacity: 1;
  /* Fully visible when scrolled */
  transform: translateY(0);
  /* Moves to its original position */
}
header.header .header-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  padding: 0px;
  margin: 0 auto;
}
header.header .header-wrap .logo-wrap {
  width: 120px;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
header.header .header-wrap .logo-wrap .logo {
  padding: 10px 10px;
}
header.header .header-wrap .logo-wrap .logo img {
  display: block;
  max-height: 100px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header.header .header-wrap .logo-wrap .logo-mobile {
  display: none;
}
header.header .header-wrap .menu-wrap {
  flex-grow: 1;
  padding-right: 120px;
}
header.header .header-wrap .menu-wrap ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
}
header.header .header-wrap .menu-wrap ul li a {
  font-family: 'BeausiteClassicWeb-Light', sans-serif;
  color: #b5a271;
  text-transform: uppercase;
  padding: 12px 32px;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header.header .header-wrap .menu-wrap ul li a:hover {
  color: #947f49;
}
header.header .header-wrap .menu-wrap ul li.current_page_item a {
  color: #947f49;
}
header.header .header-wrap ul.menu-button {
  display: none;
}
header.header .header-wrap ul.menu-button li.main-menu-item {
  position: relative;
}
header.header .header-wrap ul.menu-button li.main-menu-item > a {
  text-align: center;
  position: relative;
  display: block;
  padding: 14px 15px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
}
header.header .header-wrap ul.menu-button li.main-menu-item > a span.mobile-bars {
  width: 30px;
  margin-right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
header.header .header-wrap ul.menu-button li.main-menu-item > a span.mobile-bars .mobile-bar {
  width: 100%;
  height: 4px;
  margin: 3px 0;
  background: #5e4839;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
header.header .header-wrap ul.menu-button li.main-menu-item ul.menu {
  padding: 40px 0 40px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 14px 15px -6px rgba(0, 0, 0, 0.24);
  width: 300px;
  right: 0;
  top: 100%;
  overflow: hidden;
  background: #f7f2ee;
}
header.header .header-wrap ul.menu-button li.main-menu-item ul.menu li {
  padding: 0 20px;
  text-align: center;
}
header.header .header-wrap ul.menu-button li.main-menu-item ul.menu li a {
  position: relative;
  display: block;
  padding: 25px 15px;
  text-transform: uppercase;
  font-size: 18px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: none;
}
header.header .header-wrap ul.menu-button li.main-menu-item ul.menu li a:after {
  content: '';
  position: absolute;
  width: 0;
  max-width: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  margin: 0 auto;
  background: #b09e70;
  z-index: -1;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
header.header .header-wrap ul.menu-button li.main-menu-item ul.menu li a:hover:after {
  width: 100%;
  max-width: 300px;
}
header.header .header-wrap ul.menu-button li.main-menu-item:hover > a span.mobile-bars .mobile-bar.second-bar {
  width: 60%;
}
header.header .header-wrap ul.menu-button li.main-menu-item:hover ul.menu {
  opacity: 1;
  visibility: visible;
}
header.header.header-scrolled .header-wrap .logo-wrap .logo img {
  max-height: 70px;
}
@media screen and (max-width: 1280px) {
  header.header .header-wrap .menu-wrap {
    padding-right: 0px;
  }
  header.header .header-wrap .menu-wrap ul li a {
    font-size: 20px;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 960px) {
  header.header {
    z-index: 1;
  }
  header.header .header-wrap {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  header.header .header-wrap .menu-wrap {
    display: none;
  }
  header.header .header-wrap ul.menu-button {
    display: block;
  }
  header.header .header-wrap .logo-wrap {
    width: 80px;
  }
  header.header .header-wrap .logo-wrap .logo {
    padding: 5px 0px;
  }
  header.header .header-wrap .logo-wrap .logo img {
    max-height: 70px;
  }
}
@media screen and (max-width: 600px) {
  header.header .header-wrap .logo-wrap {
    width: 50px;
    width: auto;
  }
  header.header .header-wrap .logo-wrap .logo {
    padding: 5px 10px;
  }
  header.header .header-wrap .logo-wrap .logo img {
    max-height: 70px;
  }
  header.header .header-wrap .logo-wrap .logo-mobile {
    display: block;
    margin-left: 20px;
  }
  header.header .header-wrap .logo-wrap .logo-mobile img {
    max-height: 40px;
  }
}
footer.site-footer {
  background: #e2e0de;
  overflow: hidden;
}
footer.site-footer .footer-inner {
  padding: 140px 0 0 120px;
}
footer.site-footer .footer-inner .footer-wrap {
  position: relative;
  gap: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  padding: 100px 50px 30px;
  background-color: #f7f2ee;
  border-radius: 100px 0 0 0;
}
footer.site-footer .footer-inner .footer-wrap * {
  color: #787069;
}
footer.site-footer .footer-inner .footer-wrap p {
  font-size: 18px;
  margin-bottom: 0px;
}
footer.site-footer .footer-inner .footer-wrap .footer-corner-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
footer.site-footer .footer-inner .footer-wrap .footer-corner-lines .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #b9b2a7;
  border-left: 1px solid #b9b2a7;
  border-radius: 100px 0 0 0;
}
footer.site-footer .footer-inner .footer-wrap .footer-corner-lines .line-2 {
  border-radius: 120px 0 0 0;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  top: -20px;
  left: -20px;
}
footer.site-footer .footer-inner .footer-wrap .footer-corner-lines .line-3 {
  border-radius: 140px 0 0 0;
  height: calc(100% + 40px);
  width: calc(100% + 40px);
  top: -40px;
  left: -40px;
}
footer.site-footer .footer-inner .footer-wrap .f-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
footer.site-footer .footer-inner .footer-wrap .f-left .logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
footer.site-footer .footer-inner .footer-wrap .f-left .logos a:first-child img {
  border-right: 2px solid #5e4839;
}
@media screen and (max-width: 650px) {
  footer.site-footer .footer-inner .footer-wrap .f-left .logos a:first-child img {
    border: none;
  }
}
footer.site-footer .footer-inner .footer-wrap .f-left .logos img {
  padding: 10px 25px;
  height: 105px;
  max-width: 300px;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  footer.site-footer .footer-inner .footer-wrap .f-left .logos img {
    padding: 10px 20px;
    max-width: 220px;
    height: 90px;
  }
}
footer.site-footer .footer-inner .footer-wrap .f-right {
  display: flex;
  flex-direction: column;
  z-index: 1;
}
footer.site-footer .footer-inner .footer-wrap .f-right .agents-title {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
}
footer.site-footer .footer-inner .footer-wrap .f-right .f-right-top {
  margin-bottom: 40px;
}
footer.site-footer .footer-inner .footer-wrap .f-right .f-right-top .agents-list {
  display: flex;
  gap: 50px;
}
footer.site-footer .footer-inner .footer-wrap .f-right .f-right-top .agents-list p {
  line-height: 1.5;
}
footer.site-footer .footer-inner .footer-wrap .f-right .f-right-top .agents-list .agent .name {
  font-size: 22px;
}
@media screen and (max-width: 960px) {
  footer.site-footer .footer-inner {
    padding: 120px 0 0 80px;
  }
}
@media screen and (max-width: 650px) {
  footer.site-footer .footer-inner .footer-wrap {
    gap: 60px;
  }
  footer.site-footer .footer-inner .footer-wrap .f-left .logos {
    justify-content: center;
    gap: 20px;
  }
  footer.site-footer .footer-inner .footer-wrap .f-right {
    text-align: center;
    align-items: center;
  }
  footer.site-footer .footer-inner .footer-wrap .f-right .agents-list {
    flex-direction: column;
    gap: 20px;
  }
  footer.site-footer .footer-inner .footer-wrap .f-right .agents-list p {
    text-align: center;
  }
}
p,
p span,
p b,
p strong {
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  p,
  p span,
  p b,
  p strong {
    font-size: 22px;
  }
}
@media screen and (max-width: 840px) {
  p,
  p span,
  p b,
  p strong {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  p,
  p span,
  p b,
  p strong {
    font-size: 18px;
  }
}
p,
p span,
p b,
p strong {
  font-family: 'BeausiteClassicWeb-Light', sans-serif;
}
h1,
h1 strong,
h1 span {
  font-size: 72px;
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
  line-height: 110%;
}
@media screen and (max-width: 1366px) {
  h1,
  h1 strong,
  h1 span {
    font-size: 64px;
  }
}
@media screen and (max-width: 1024px) {
  h1,
  h1 strong,
  h1 span {
    font-size: 52px;
  }
}
@media screen and (max-width: 760px) {
  h1,
  h1 strong,
  h1 span {
    font-size: 46px;
  }
}
h2,
h2 strong,
h2 span {
  font-family: 'BeausiteFitWeb-Light', sans-serif;
  font-size: 54px;
  margin-bottom: 30px;
  line-height: 110%;
}
@media screen and (max-width: 1366px) {
  h2,
  h2 strong,
  h2 span {
    font-size: 46px;
  }
}
@media screen and (max-width: 1024px) {
  h2,
  h2 strong,
  h2 span {
    font-size: 38px;
  }
}
@media screen and (max-width: 760px) {
  h2,
  h2 strong,
  h2 span {
    font-size: 34px;
  }
}
h3,
h3 strong,
h3 span {
  font-size: 40px;
  font-family: 'BeausiteFitWeb-Light', sans-serif;
  line-height: 110%;
}
@media screen and (max-width: 1366px) {
  h3,
  h3 strong,
  h3 span {
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  h3,
  h3 strong,
  h3 span {
    font-size: 34px;
  }
}
@media screen and (max-width: 760px) {
  h3,
  h3 strong,
  h3 span {
    font-size: 28px;
  }
}
h4,
h4 strong,
h4 span {
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
  font-size: 36px;
  line-height: 110%;
}
@media screen and (max-width: 1366px) {
  h4,
  h4 strong,
  h4 span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  h4,
  h4 strong,
  h4 span {
    font-size: 26px;
  }
}
@media screen and (max-width: 760px) {
  h4,
  h4 strong,
  h4 span {
    font-size: 24px;
  }
}
h5,
h6,
h5 strong,
h6 strong,
h5 a,
h6 a,
h5 span,
h6 span {
  font-size: 24px;
  line-height: 120%;
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
}
@media screen and (max-width: 1366px) {
  h5,
  h6,
  h5 strong,
  h6 strong,
  h5 a,
  h6 a,
  h5 span,
  h6 span {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  h5,
  h6,
  h5 strong,
  h6 strong,
  h5 a,
  h6 a,
  h5 span,
  h6 span {
    font-size: 20px;
  }
}
ul.menu,
ul.menu-button {
  list-style: none !important;
}
#page {
  background: #D2CCC8;
  position: relative;
}
#page .site-inner {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
  margin: 0 auto;
}
.page-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.page-content ul li {
  padding-bottom: 10px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
.ta-center {
  text-align: center;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mt-60 {
    margin-top: 50px !important;
  }
}
.top-image-panel {
  background: #f7f2ee;
  margin-top: -25px;
  position: relative;
}
.top-image-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #ffffff;
  z-index: -11;
}
.top-image-panel .top-image-panel-inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  padding: 0px;
  margin: 0 auto;
}
.top-image-panel .top-image-panel-inner .left-panel {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 60px;
}
.top-image-panel .top-image-panel-inner .left-panel img {
  height: auto;
}
.top-image-panel .top-image-panel-inner .right-panel {
  width: calc(100% - 120px);
  background: #ffffff;
  padding: 25px 100px 25px 25px;
  border-top-left-radius: 120px;
  overflow: hidden;
  position: relative;
}
.top-image-panel .top-image-panel-inner .right-panel .decor-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.top-image-panel .top-image-panel-inner .right-panel.no-content {
  padding-bottom: 25px;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner {
  border-top-left-radius: 100px;
  overflow: hidden;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider {
  position: relative;
  width: 100%;
  /* ---------- Slick dots : active = solid white, inactive = white outline ---------- */
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slider-image {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slider-image img {
  width: 100%;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-arrow {
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-arrow:before {
  display: none;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-prev {
  left: 15px;
  background-image: url(../images/croussel_arrow_left.png);
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-next {
  right: 15px;
  background-image: url(../images/croussel_arrow_right.png);
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots {
  bottom: 10px;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots li {
  /* ACTIVE slide (Slick adds .slick-active to the <li>) */
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  outline: none;
  /* hover / focus grow (optional) */
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots li button:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
  opacity: 1;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots li button:hover:before,
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots li button:focus:before {
  transform: scale(1.15);
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-slider .slick-dots li.slick-active button:before {
  background: #fff;
  transform: scale(1.1);
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .top-image {
  width: 100%;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .content {
  flex: 1;
  width: 100%;
  max-width: 1420px;
  padding: 50px 30px;
  margin: 0 auto;
}
.top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .content p:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 960px) {
  .top-image-panel {
    margin-top: 0px;
  }
  .top-image-panel .top-image-panel-inner .left-panel {
    width: 80px;
    padding: 0 10px;
    margin-top: 30px;
  }
  .top-image-panel .top-image-panel-inner .right-panel {
    width: calc(100% - 80px);
    padding: 20px 50px 20px 20px;
  }
}
@media screen and (max-width: 600px) {
  .top-image-panel .top-image-panel-inner .left-panel {
    display: none;
  }
  .top-image-panel .top-image-panel-inner .right-panel {
    width: 100%;
    padding: 15px !important;
    border-top-left-radius: 0px;
  }
  .top-image-panel .top-image-panel-inner .right-panel .right-panel-inner {
    border-top-left-radius: 0px;
  }
  .top-image-panel .top-image-panel-inner .right-panel .right-panel-inner .content {
    width: 100%;
    max-width: 100%;
    padding: 30px 0px;
    margin: 0 auto;
  }
}
.full-image-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  border-top: 12px solid #e8c4bc;
  border-bottom: 20px solid #b5605d;
}
.full-image-section.no-border {
  border: none;
}
.full-image-section img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.site-btn {
  font-size: 18px;
  padding: 12px 45px;
  display: inline-block;
  border: 1px solid #5e4939;
  color: #5e4939;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.site-btn:hover {
  background: #5e4939;
  color: #f7f3ef;
}
@media screen and (max-width: 1024px) {
  .site-btn {
    font-size: 14px;
    padding: 16px 35px;
  }
}
.site-btn.min-wid-380 {
  min-width: 380px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .site-btn.min-wid-380 {
    min-width: 0px;
  }
}
.site-btn.green-btn {
  border: 1px solid #205719;
  color: #205719;
}
.site-btn.green-btn:hover {
  background: #205719;
  color: #f7f3ef;
}
.title-bar {
  text-align: center;
  padding: 25px 20px;
  background: #a6ac74;
}
.title-bar h1,
.title-bar h2 {
  margin-bottom: 0px;
  color: #f7f3ef;
}
.title-bar.grey-item {
  background: #786f69;
}
.title-bar.green-item {
  background: #709b74;
}
.title-bar.green-dark-item {
  background: #205719;
}
.title-bar.green-dark-item .site-btn:hover {
  background: #709b74;
}
.title-bar.brown-light-item {
  background: #b09e70;
}
.title-bar .site-btn {
  border-color: #ffffff;
  color: #ffffff;
}
/************************************************
Below style is not used. could be deleted later.
*************************************************/
.menu-after-effect:after {
  content: '';
  position: absolute;
  width: 0;
  max-width: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  margin: 0 auto;
  background: #b09e70;
  z-index: -1;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.menu-after-effect:hover:after {
  width: 100%;
  max-width: 300px;
}
.loading-image {
  position: fixed;
  z-index: 9999;
  max-width: 110px;
  opacity: 1;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.fancybox__container .carousel__button {
  color: #ffffff;
}
/*
**********************
      Pages
**********************
*/
.home-slider .slider-image {
  width: 100%;
  height: 1060px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.home-slider .slider-image .slider-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.home-slider .slider-image .slider-content {
  position: relative;
  text-align: center;
}
.home-slider .slider-image .slider-content * {
  color: #ffffff;
}
.home-slider .slider-image .abs-right-bottom-thin {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0.3;
}
.home-slider .slick-dots {
  bottom: 15px;
}
.home-slider .slick-dots li {
  margin: 0 7px;
}
.home-slider .slick-dots li button:before {
  font-size: 16px;
}
@media screen and (max-width: 1368px) {
  .home-slider .slider-image {
    height: 860px;
  }
}
@media screen and (max-width: 1024px) {
  .home-slider .slider-image {
    height: 680px;
  }
}
@media screen and (max-width: 760px) {
  .home-slider .slider-image {
    height: 560px;
  }
}
.property-hightlights-container {
  background: #5e4839;
  padding: 80px 0;
}
.property-hightlights-container .property-hightlights-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  padding: 0px 30px;
  margin: 0 auto;
}
.property-hightlights-container .property-hightlights-wrap .ph-single {
  width: 33.33%;
  padding: 50px 30px;
}
.property-hightlights-container .property-hightlights-wrap .ph-single .ph-single-inner {
  text-align: center;
}
.property-hightlights-container .property-hightlights-wrap .ph-single .ph-single-inner * {
  color: #f7f3ef;
}
.property-hightlights-container .property-hightlights-wrap .ph-single .ph-single-inner .phs-title {
  font-size: 20px;
  margin: 0 0 30px;
}
.property-hightlights-container .property-hightlights-wrap .ph-single .ph-single-inner .phs-logo {
  width: 100%;
  max-width: 170px;
  margin: 0 auto 30px;
}
.property-hightlights-container .property-hightlights-wrap .ph-single .ph-single-inner.ph-single-image .phs-title {
  margin: 30 0 0px;
}
@media screen and (max-width: 650px) {
  .property-hightlights-container {
    padding: 50px 0;
  }
  .property-hightlights-container .property-hightlights-wrap .ph-single {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 30px 20px;
  }
}
.map-container {
  width: 100%;
  height: 670px;
  border-top: 14px solid #b09e70;
  border-bottom: 23px solid #787069;
}
@media screen and (max-width: 1024px) {
  .map-container {
    height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .map-container {
    height: 400px;
  }
}
.upcoming-improvement-sections {
  border-top: 20px solid #b5605d;
  background-color: #e8c4bc;
  padding: 70px 0;
}
.upcoming-improvement-sections h2 {
  text-align: center;
  margin: 0 0 40px;
}
.upcoming-improvement-sections .upcoming-improvement-wrap {
  width: 100%;
  max-width: 1280px;
  padding: 0px 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.upcoming-improvement-sections .upcoming-improvement-wrap .ui-single {
  width: 50%;
  padding: 40px 0px;
}
@media screen and (max-width: 800px) {
  .upcoming-improvement-sections .upcoming-improvement-wrap .ui-single {
    width: 100%;
    padding: 25px 0px;
  }
}
.upcoming-improvement-sections .upcoming-improvement-wrap .ui-single .ui-single-inner {
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 0px 30px;
  margin: 0 auto;
}
.upcoming-improvement-sections .upcoming-improvement-wrap .ui-single .ui-single-inner h5 {
  margin-bottom: 20px;
}
.upcoming-improvement-sections .upcoming-improvement-wrap .ui-single .ui-single-inner p {
  font-size: 20px;
  line-height: 1.5;
}
.levels-container {
  border-bottom: 25px solid #b5605d;
  border-top: 20px solid #b5605d;
}
.levels-container .level-tabs-buttons {
  background-color: #f8edeb;
  padding: 20px 30px 0;
  display: flex;
}
.levels-container .level-tabs-buttons button {
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid #b5605d;
  background-color: #f8edeb;
  color: #b5605d;
  cursor: pointer;
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
}
.levels-container .level-tabs-buttons button.active {
  background-color: #b5605d;
  color: #f8edeb;
}
.levels-container .level-tabs-content .level-tab-pane {
  display: none;
}
.levels-container .level-tabs-content .level-tab-pane:not(.hidden) {
  display: flex;
}
.levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}
.levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap img {
  width: 100%;
  display: block;
}
.levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap .map-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap .map-icon {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 760px) {
  .levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap .map-icon {
    width: 18px;
    height: 18px;
  }
}
.levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap .map-icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.levels-container .level-tabs-content .level-tab-pane .interactive-level-wrap .map-icon:hover img {
  transform: scale(1.1);
}
.amenities-slider {
  position: relative;
  width: 100%;
  background-color: #786f69;
  /* ---------- Slick dots : active = solid white, inactive = white outline ---------- */
}
.amenities-slider .slider-image {
  width: 100%;
}
.amenities-slider .slider-image .image-bg {
  height: 840px;
  position: relative;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
@media screen and (max-width: 1024px) {
  .amenities-slider .slider-image .image-bg {
    height: 600px;
  }
}
@media screen and (max-width: 600px) {
  .amenities-slider .slider-image .image-bg {
    height: 500px;
  }
}
.amenities-slider .slider-image .image-bg .slider-360 {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .amenities-slider .slider-image .image-bg .slider-360 {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
.amenities-slider .slider-image .slider-text {
  padding: 20px 20px;
  background-color: #786f69;
}
.amenities-slider .slider-image .slider-text * {
  color: #f7f3ef;
}
.amenities-slider .slider-image .slider-text p {
  margin-bottom: 0px;
}
.amenities-slider .slick-arrow {
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.amenities-slider .slick-arrow:before {
  display: none;
}
.amenities-slider .slick-prev {
  left: 15px;
  background-image: url(../images/croussel_arrow_left.png);
}
.amenities-slider .slick-next {
  right: 15px;
  background-image: url(../images/croussel_arrow_right.png);
}
.amenities-slider .slick-dots {
  bottom: 10px;
}
.amenities-slider .slick-dots li {
  /* ACTIVE slide (Slick adds .slick-active to the <li>) */
}
.amenities-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  outline: none;
  /* hover / focus grow (optional) */
}
.amenities-slider .slick-dots li button:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
  opacity: 1;
}
.amenities-slider .slick-dots li button:hover:before,
.amenities-slider .slick-dots li button:focus:before {
  transform: scale(1.15);
}
.amenities-slider .slick-dots li.slick-active button:before {
  background: #fff;
  transform: scale(1.1);
}
.amenities-slider .slick-dots {
  bottom: 80px;
}
.building-features-container {
  background: #b5605d;
  position: relative;
}
.building-features-container .building-features-wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 50px 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.building-features-container .building-features-wrap .bf-single {
  padding: 30px 35px;
  width: 33.33%;
}
.building-features-container .building-features-wrap .bf-single:nth-child(7) {
  width: 88%;
}
.building-features-container .building-features-wrap .bf-single * {
  color: #f7f3ef;
}
.building-features-container .building-features-wrap .bf-single .bf-single-inner {
  text-align: center;
}
.building-features-container .building-features-wrap .bf-single .bf-single-inner .bf-icon {
  position: relative;
  width: 100px;
  margin: 0 auto 20px;
}
.building-features-container .building-features-wrap .bf-single .bf-single-inner .bf-content h5 {
  margin-bottom: 15px;
}
.building-features-container .building-features-wrap .bf-single .bf-single-inner .bf-content p {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .building-features-container .building-features-wrap .bf-single {
    width: 50%;
  }
}
@media screen and (max-width: 650px) {
  .building-features-container .building-features-wrap .bf-single {
    width: 100%;
  }
}
.travel-tab-panel {
  border-top: 30px solid #5e4839;
  border-bottom: 20px solid #5e4839;
}
.travel-tab-panel .ttp-title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #5c6734;
  padding: 15px 0;
}
.travel-tab-panel .ttp-title-container .ttp-title {
  min-width: 15%;
  margin: 0 10px;
  text-align: center;
  padding: 12px 15px;
  border: 1px solid #b8d7c2;
  color: #b8d7c2;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.travel-tab-panel .ttp-title-container .ttp-title:hover,
.travel-tab-panel .ttp-title-container .ttp-title.active {
  background: #b8d7c2;
}
.travel-tab-panel .ttp-title-container .ttp-title:hover h6,
.travel-tab-panel .ttp-title-container .ttp-title.active h6 {
  color: #5c6734;
}
.travel-tab-panel .ttp-title-container .ttp-title h6 {
  font-size: 20px;
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
  color: #b8d7c2;
  margin-bottom: 0px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.travel-tab-panel .ttp-image-container .ttp-image {
  display: none;
}
.travel-tab-panel .ttp-image-container .ttp-image img {
  width: 100%;
}
.travel-tab-panel .ttp-image-container .ttp-image.active {
  display: block;
}
.travel-tab-panel .ttp-image-container .ttp-image.full-height {
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .travel-tab-panel .ttp-title-container .ttp-title {
    padding: 15px 10px;
  }
  .travel-tab-panel .ttp-title-container .ttp-title.tab-cnt-4 {
    width: 50%;
  }
  .travel-tab-panel .ttp-title-container .ttp-title.tab-cnt-5 {
    width: 33.33%;
  }
  .travel-tab-panel .ttp-title-container .ttp-title h6 {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .travel-tab-panel .ttp-title-container .ttp-title.tab-cnt-2 {
    width: 100%;
  }
  .travel-tab-panel .ttp-title-container .ttp-title.tab-cnt-3 {
    width: 100%;
  }
  .travel-tab-panel .ttp-title-container .ttp-title.tab-cnt-4 {
    width: 100%;
  }
  .travel-tab-panel .ttp-title-container .ttp-title.tab-cnt-5 {
    width: 100%;
  }
}
.page-slider {
  position: relative;
  width: 100%;
  /* ---------- Slick dots : active = solid white, inactive = white outline ---------- */
}
.page-slider .slider-image {
  width: 100%;
  height: 750px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
@media screen and (max-width: 1024px) {
  .page-slider .slider-image {
    height: 600px;
  }
}
@media screen and (max-width: 600px) {
  .page-slider .slider-image {
    height: 500px;
  }
}
.page-slider .slick-arrow {
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.page-slider .slick-arrow:before {
  display: none;
}
.page-slider .slick-prev {
  left: 15px;
  background-image: url(../images/croussel_arrow_left.png);
}
.page-slider .slick-next {
  right: 15px;
  background-image: url(../images/croussel_arrow_right.png);
}
.page-slider .slick-dots {
  bottom: 10px;
}
.page-slider .slick-dots li {
  /* ACTIVE slide (Slick adds .slick-active to the <li>) */
}
.page-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  outline: none;
  /* hover / focus grow (optional) */
}
.page-slider .slick-dots li button:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
  opacity: 1;
}
.page-slider .slick-dots li button:hover:before,
.page-slider .slick-dots li button:focus:before {
  transform: scale(1.15);
}
.page-slider .slick-dots li.slick-active button:before {
  background: #fff;
  transform: scale(1.1);
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-odd .neighborhood-img {
  order: 2;
  margin-left: -100px;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-odd .neighborhood-info {
  order: 1;
  z-index: 1;
  border-top-left-radius: 0px;
  border-top-right-radius: 100px;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-even .neighborhood-img {
  margin-right: -100px;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-1 .neighborhood-info,
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-4 .neighborhood-info {
  background: #f7f2ee;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-2 .neighborhood-info {
  background: #c4d6c6;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner.neighborhood-single-3 .neighborhood-info {
  background: #c7caa7;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-img {
  width: calc(58% + 100px);
  min-height: 560px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-img {
    min-height: 400px;
  }
}
@media screen and (max-width: 550px) {
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-img {
    min-height: 330px;
  }
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info {
  width: 42%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-top-left-radius: 100px;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info .neighborhood-info-inner {
  width: 100%;
  max-width: 480px;
  padding: 65px 30px;
  margin: 0 auto;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info .neighborhood-info-inner h5 {
  margin-bottom: 15px;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info .neighborhood-info-inner p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0px;
}
.neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info .neighborhood-info-inner .site-btn {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info {
    width: 48%;
  }
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info .neighborhood-info-inner p {
    font-size: 18px;
  }
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-img {
    min-height: 460px;
    width: calc(52% + 100px);
  }
}
@media screen and (max-width: 800px) {
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-img {
    order: 1 !important;
    width: 100%;
    margin: 0px !important;
  }
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info {
    margin-top: -100px;
    order: 2;
    width: 100%;
  }
  .neighborhood-panel-container .neighborhood-panel-inner .neighborhood-single .neighborhood-single-inner .neighborhood-info .neighborhood-info-inner p {
    font-size: 18px;
  }
}
.floorplan-container {
  background: #e0dddb;
  border-bottom: 35px solid #786f69;
}
.floorplan-container .floorplan-info-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
}
.floorplan-container .floorplan-info-container .floorplan-info-single {
  width: 25%;
  padding: 10px 20px;
  font-size: 18px;
  border-bottom: 1px solid #786f69;
  border-left: 1px solid #786f69;
  display: flex;
  align-items: center;
}
.floorplan-container .floorplan-info-container .floorplan-info-single:first-child {
  font-size: 20px;
  font-family: 'BeausiteClassicWeb-Regular', sans-serif;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .floorplan-container .floorplan-info-container .floorplan-info-single {
    width: 50%;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .floorplan-container .floorplan-info-container .floorplan-info-single {
    width: 100%;
  }
}
.floorplan-container .floorplan-img-container img {
  width: 100%;
  height: auto;
}
.stacking-plan-container {
  background: #f7f3ef;
}
.stacking-plan-container .stacking-plan-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  width: 100%;
  padding: 20px 30px;
  gap: 60px;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info {
  width: 55%;
  margin-top: 200px;
}
@media screen and (max-width: 1150px) {
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info {
    margin-top: 50px;
  }
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suite-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  font-family: 'BeausiteFitWeb-Light', sans-serif;
  margin-bottom: 30px;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suite-title .floor-suite-border {
  width: 35%;
  height: 15px;
  background: #b5a271;
  margin-right: 20px;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 5px 0;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-name,
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-tenant-type,
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-image {
  width: 33%;
  padding: 13px 10px;
  text-align: center;
  color: white;
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-name *,
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-tenant-type *,
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-image * {
  color: white;
  font-size: 20px;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-name {
  background: #CAC6C3;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-tenant-type {
  background: #A09B95;
  text-align: left;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-tenant-type p {
  font-size: 14px;
  margin-bottom: 7px;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-image {
  background: #797069;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-image:hover {
  background: #605953;
}
.stacking-plan-container .stacking-plan-wrap .sp-image {
  width: 45%;
}
@media screen and (max-width: 960px) {
  .stacking-plan-container .stacking-plan-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info {
    width: 100%;
    margin-top: 0;
    order: 2;
  }
  .stacking-plan-container .stacking-plan-wrap .sp-image {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .stacking-plan-container .stacking-plan-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single {
    margin: 0px 0 15px 0;
  }
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-name,
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-tenant-type,
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-image {
    width: 100%;
    padding: 15px 10px;
  }
  .stacking-plan-container .stacking-plan-wrap .sp-suites-info .floor-suites-wrap .floor-suite-single .floor-suite-tenant-type {
    -webkit-align-items: center;
    align-items: center;
  }
}
.agents-listing-container {
  background: #CAC6C3;
  padding: 100px 0;
}
.agents-listing-container .agents-listing-wrap {
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  gap: 50px;
}
.agents-listing-container .agents-listing-wrap .agent-single {
  width: 100%;
  max-width: 400px;
}
.agents-listing-container .agents-listing-wrap .agent-single .agent-image {
  width: 100%;
  border-left: 80px solid #786f69;
  margin-bottom: 20px;
}
.agents-listing-container .agents-listing-wrap .agent-single .agent-info {
  padding-left: 80px;
}
.agents-listing-container .agents-listing-wrap .agent-single .agent-info p {
  font-size: 20px;
  margin-bottom: 0px;
}
.agents-listing-container .agents-listing-wrap .agent-single .agent-info p.name {
  font-size: 24px;
  font-family: 'BeausiteClassicWeb-Medium', sans-serif;
}
.contacts-container {
  background: #d6e8dc;
  padding: 50px 0;
}
.contacts-container * {
  color: #205719;
}
.contacts-container .contacts-wrap {
  width: 100%;
  max-width: 1200px;
  padding: 30px 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.contacts-container .contacts-wrap .contact-single {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.contacts-container .contacts-wrap .contact-single .contact-single-inner {
  padding: 0 30px;
}
.contacts-container .contacts-wrap .contact-single .contact-single-inner h4,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h4 b,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h4 span,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h5,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h5 b,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h5 span,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h6,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h6 b,
.contacts-container .contacts-wrap .contact-single .contact-single-inner h6 span {
  margin-bottom: 15px;
}
.contacts-container .contacts-wrap .contact-single .contact-single-inner h5 {
  font-size: 22px;
}
.contacts-container .contacts-wrap .contact-single .contact-single-inner h6 {
  font-size: 20px;
}
.contacts-container .contacts-wrap .contact-single .contact-single-inner p,
.contacts-container .contacts-wrap .contact-single .contact-single-inner p span,
.contacts-container .contacts-wrap .contact-single .contact-single-inner p b,
.contacts-container .contacts-wrap .contact-single .contact-single-inner p strong {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 10px;
}
.contacts-container .contacts-button {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 840px) {
  .contacts-container .contacts-wrap .contact-single {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }
  .contacts-container .contacts-wrap .contact-single .contact-single-inner {
    padding: 0 20px;
  }
  .contacts-container .contacts-wrap .contact-single .contact-single-inner h5 {
    font-size: 20px;
  }
  .contacts-container .contacts-wrap .contact-single:last-child {
    margin-bottom: 0;
  }
}
.tenant-container {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-bottom: 30%;
}
.tenant-container .tenant-content {
  width: 55%;
  border-bottom-left-radius: 100px;
  background-color: #d2d5b9;
  padding: 50px 50px 70px 70px;
}
@media screen and (max-width: 840px) {
  .tenant-container .tenant-content {
    width: 90%;
  }
}
.tenant-container .tenant-content * {
  color: #205719;
}
.tenant-container .tenant-content .tenant-logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 40px 0;
  gap: 30px;
}
.tenant-container .tenant-content .tenant-logos img {
  height: 70px;
  max-width: 220px;
  object-fit: contain;
}
.tenant-container .tenant-content p {
  line-height: 1.5;
}
@media screen and (max-width: 650px) {
  .tenant-container .tenant-content {
    padding: 30px 30px 60px 40px;
  }
  .tenant-container .tenant-content .tenant-logos {
    gap: 20px;
    margin: 20px 0;
  }
}
.single-available-page-content {
  padding-bottom: 40px;
}
.container-1200 {
  width: 100%;
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}
.detail-title {
  margin-bottom: 50px;
}
.single-available-container-1200 {
  padding: 100px 30px 140px;
}
@media screen and (max-width: 760px) {
  .single-available-container-1200 {
    padding: 70px 30px 100px;
  }
}
.wrap-50 {
  margin-bottom: 87px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.wrap-50 h4 {
  line-height: 100%;
  margin-bottom: 15px;
}
.wrap-50 .small-title {
  font-size: 16px;
  margin-bottom: 40px;
}
.wrap-50 .detail-table {
  max-width: 400px;
}
.wrap-50 .detail-table .dt-body {
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.wrap-50 .detail-table .dt-body .dt-cell {
  font-size: 18px;
  padding-right: 15px;
  font-size: 16px;
  line-height: 160%;
}
.wrap-50 .detail-table .dt-body .dt-label {
  width: 62%;
}
.wrap-50 .detail-table .dt-body .dt-value {
  width: 38%;
}
.wrap-50 .detail-table .dt-body ~ .dt-body {
  border-top: none;
}
.wrap-50 p {
  font-size: 16px;
  line-height: 160%;
}
.wrap-50 .space-desc {
  margin-top: 50px;
}
.wrap-50 .download-pdf {
  margin-top: 20px;
}
.wrap-50 .w50-left {
  width: 50%;
  padding-right: 90px;
}
.wrap-50 .w50-right {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .wrap-50 .w50-left {
    width: 55%;
    margin-bottom: 40px;
    padding-right: 60px;
  }
  .wrap-50 .w50-right {
    width: 45%;
  }
}
@media screen and (max-width: 760px) {
  .wrap-50 {
    margin-bottom: 50px;
  }
  .wrap-50 .w50-left {
    width: 100%;
    margin-bottom: 40px;
  }
  .wrap-50 .w50-right {
    width: 100%;
  }
}
.space-gallery-slider .slider-image {
  width: 100%;
  height: 700px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.space-gallery-slider .slick-dots {
  bottom: 15px;
}
.space-gallery-slider .slick-dots li {
  margin: 0 7px;
}
.space-gallery-slider .slick-dots li button:before {
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .space-gallery-slider .slider-image {
    height: 560px;
  }
}
@media screen and (max-width: 700px) {
  .space-gallery-slider .slider-image {
    height: 430px;
  }
}
@media screen and (max-width: 600px) {
  .space-gallery-slider .slider-image {
    height: 360px;
  }
}
.floor-plates-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 115px 0 120px;
}
.floor-plates-wrap .fp-left {
  width: 405px;
}
.floor-plates-wrap .fp-left h5 {
  margin-bottom: 30px;
}
.floor-plates-wrap .fp-right {
  width: calc(100% - 405px);
}
@media screen and (max-width: 1024px) {
  .floor-plates-wrap .fp-left {
    width: 250px;
  }
  .floor-plates-wrap .fp-right {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 760px) {
  .floor-plates-wrap {
    margin: 90px 0 90px;
  }
  .floor-plates-wrap .fp-left {
    width: 100%;
    margin-bottom: 40px;
  }
  .floor-plates-wrap .fp-right {
    width: 100%;
  }
}
.virtual-tour-section {
  width: 100%;
}
.virtual-tour-section h5 {
  margin-bottom: 40px;
}
.virtual-tour-section .vt-video video {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.virtual-tour-section .vt-video-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.virtual-tour-section .vt-video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*

.pano-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
  
    &.active {
      display: flex !important;
    }
  
    .modal-content {
      position: relative;
      width: 90%;
      max-width: 1600px;
      height: 80vh;
      background: #000;
      border-radius: 10px;
      overflow: hidden;
  
      .modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
        z-index: 10000;
      }
  
      .pano-viewer {
        width: 100%;
        height: 100%;
        min-height: 300px; // ✅ fallback to prevent 0px height
      }
    }
  }
  
  */
.pano-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.pano-modal.active {
  display: flex !important;
}
.pano-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 1600px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.pano-modal .modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}
.pano-modal .modal-content .pano-viewer {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  background: #000;
  position: relative;
}
.pano-modal .modal-content .pano-viewer > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
