:root {
  /** Font default */
  --font-family-default: "Outfit", sans-serif;
  /*--font-family-title: "Noto Serif Display", serif;*/
  --font-family-title: "Cinzel", serif;
  --font-size-default: 17px;
  --font-size-title: 55px;
  --font-color-default: #4d4d4d;
  --font-color-title: #4c4c4c;
  /* --primary-color: 160,138,83;*/
  /* #a08a53 */
  --primary-color: 134, 112, 57;
  /*#867039*/
  --secondary-color: 200, 172, 104;
  /* #c8ac68 */
  --tertiary-color: 151, 120, 46;
  /* #97782e */
  --border-radius: 160px;
  /** Use for input, button, and any other element */
  /* --primary: #a08a53;*/
  --primary: #8f732f;
  --secondary: #c8ac68;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .4s cubic-bezier(.4, 0, .2, 1);
}
/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #f8f8f8;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale; */
}
.slick-slide {
  outline: none !important;
}
a,
a:focus,
a:visited,
a:hover,
button {
  outline: 0 !important;
  text-decoration: none !important;
}
a {
  color: inherit;
}
#main-wrapper {
  position: relative;
  overflow: hidden;
}
.gsite-title {
  position: relative;
  font-family: var(--font-family-title);
  font-size: var(--font-size-title);
  color: var(--font-color-title);
  line-height: 1.1;
}
.gsite-title small {
  display: block;
  font-family: var(--font-family-default);
  font-size: 24px;
  color: rgba(var(--primary-color), 1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.gsite-title small.bottom {
  font-family: var(--font-family-title);
  letter-spacing: 0.1em;
  margin-top: 15px;
}
.gsite-title.is-text-white {
  color: #ffffff;
}
.gsite-title.is-text-white div,
.gsite-title.is-text-white small {
  color: #ffffff;
}
.gsite-button,
a.gsite-button {
  display: inline-block;
  position: relative;
  width: 218px;
  max-width: 100%;
  font-size: 15px;
  color: #4d4d4d;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  padding-left: 9px;
  z-index: 1;
  transition: all var(--default-transition);
}
.gsite-button::before,
a.gsite-button::before {
  content: "";
  display: block;
  position: absolute;
  width: 54px;
  height: 100%;
  top: 0;
  left: 9px;
  background: rgba(var(--secondary-color), 1);
  border-radius: 50px;
  z-index: -1;
  transition: all var(--default-transition);
}
.gsite-button i,
a.gsite-button i {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 33px;
  height: 2px;
  background: #4d4d4d;
  z-index: 10;
  transition: all var(--default-transition);
}
.gsite-button i::before,
.gsite-button i::after,
a.gsite-button i::before,
a.gsite-button i::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  top: 0;
  right: -1px;
  background: #4d4d4d;
  transition: all var(--default-transition);
}
.gsite-button i::before,
a.gsite-button i::before {
  transform: rotate(45deg);
  top: -2px;
}
.gsite-button i::after,
a.gsite-button i::after {
  transform: rotate(-45deg);
  top: 2px;
}
.gsite-button span,
a.gsite-button span {
  position: relative;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translateX(-12px);
  transition: transform var(--default-transition);
}
.gsite-button:hover,
a.gsite-button:hover {
  color: #ffffff;
}
.gsite-button:hover::before,
a.gsite-button:hover::before {
  width: calc(100% - 9px);
  background: rgba(var(--tertiary-color), 1);
}
.gsite-button:hover i,
a.gsite-button:hover i {
  width: 52px;
  background: #ded4bd;
}
.gsite-button:hover i::before,
.gsite-button:hover i::after,
a.gsite-button:hover i::before,
a.gsite-button:hover i::after {
  background: #ded4bd;
}
.gsite-button:hover span,
a.gsite-button:hover span {
  transform: translateX(8px);
}
.gsite-button.is-button-white:not(:hover),
a.gsite-button.is-button-white:not(:hover) {
  color: #f8f8f8;
}
.gsite-button.is-button-white:not(:hover) i,
a.gsite-button.is-button-white:not(:hover) i {
  background: #f8f8f8;
}
.gsite-button.is-button-white:not(:hover) i::before,
.gsite-button.is-button-white:not(:hover) i::after,
a.gsite-button.is-button-white:not(:hover) i::before,
a.gsite-button.is-button-white:not(:hover) i::after {
  background: #f8f8f8;
}
.gsite-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.gsite-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gsite-input {
  position: relative;
}
.gsite-input input:not([type=submit]),
.gsite-input select,
.gsite-input textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  width: 100%;
  padding: 0;
  outline: none;
  background: none;
}
.gsite-input textarea {
  resize: none;
}
.gsite-submit {
  position: relative;
}
.gsite-submit input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
  outline: none;
  background: none;
}
.gsite-submit button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
}
.gsite-submit button:not(.gsite-button) {
  padding: 0;
}
.gsite-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  position: relative;
  padding: 0;
  border: 0;
  font-size: 22px;
  color: rgba(var(--tertiary-color), 1);
  transition: all var(--default-transition);
}
.gsite-arrow:hover {
  color: rgba(var(--secondary-color), 1);
}
.gsite-arrow[class*=prev] {
  margin-right: 48px;
}
.filter-white {
  filter: brightness(0) invert(1);
}
.parallax-scroll {
  background-attachment: fixed !important;
}
.name-Safari .parallax-scroll,
.is-mobile .parallax-scroll {
  background-attachment: scroll !important;
}
.canvas-img {
  position: relative;
}
.canvas-img canvas {
  display: block;
  width: 100%;
  background: rgba(var(--primary-color), 1);
}
.canvas-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.canvas-img img.lazyload,
.canvas-img img.lazyloading {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
img.fallback-image,
.canvas-img img.fallback-image {
  object-fit: contain !important;
  background-color: #fff !important;
  padding: 10px;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: 12%;
  left: 12%;
  width: auto;
  font-size: 12px;
}
.wpcf7 form .wpcf7-response-output {
  font-size: 12px;
  text-align: center;
}
.site-navi .sub-menu.show-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.aios-mobile-header-wrapper {
  z-index: 1026 !important;
}
.lazyload,
.lazyloading {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.admin-bar .header {
  top: 32px;
}
/* Pojo : START */
body #pojo-a11y-toolbar {
  bottom: 0 !important;
  top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
  top: auto !important;
  bottom: 0 !important;
}
button:focus-visible,
a:focus-visible {
  outline-style: solid !important;
  outline-width: 5px !important;
  outline-color: red !important;
  transition: none !important;
}
/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background {
  display: none !important;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
  background-color: rgba(var(--primary-color), 1) !important;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay,
#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items.pojo-a11y-links {
  border-color: rgba(var(--primary-color), 1) !important;
}
/* Pojo : END */
/* Header : START */
.header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  top: 0;
  left: 0;
  z-index: 1020;
  font-size: 0;
  transition: all var(--default-transition);
}
.header::before {
  content: "";
  display: block;
  position: absolute;
  width: 81.25%;
  height: 1px;
  bottom: 6px;
  right: 0;
  background: linear-gradient(to right, rgba(240, 235, 225, 0) 0%, rgba(248, 245, 240, 0.55) 50%, rgba(255, 255, 255, 0.55) 100%);
  transition: all var(--default-transition);
}
.header.is-sticky {
  background: #f8f8f8;
  box-shadow: 0 0 3px #000000;
}
.header:not(.is-sticky).is-dark {
  background: #f8f8f8;
}
.header:not(.is-sticky).is-dark::before {
  filter: none;
  bottom: 0;
}
.header.is-sticky .header-logo a img {
  filter: none;
  width: 185px;
}
.header:not(.is-sticky).is-dark .header-logo a img {
  filter: none;
}
.header.is-sticky .site-navi>li>a,
.header:not(.is-sticky).is-dark .site-navi>li>a {
  color: #4d4d4d;
}
.header.is-sticky .site-navi>li.menu-button>a,
.header:not(.is-sticky).is-dark .site-navi>li.menu-button>a {
  color: #4d4d4d;
}
.header.is-sticky .site-navi>li.menu-button:hover>a,
.header:not(.is-sticky).is-dark .site-navi>li.menu-button:hover>a {
  color: #ffffff;
}
.header-container {
  position: relative;
  max-width: 1380px;
  padding: 0 15px;
  margin: 0 auto;
}
.header-logo {
  text-align: center;
}
.header-logo a {
  display: inline-block;
}
.header-logo a img {
  filter: brightness(0) invert(1);
  transition: all var(--default-transition);
}
nav {
  position: relative;
  margin: 0 0 0 auto;
}
.site-navi li {
  display: block;
  position: relative;
}
.site-navi li a {
  display: block;
  position: relative;
  font-size: 15px;
  font-weight: 300;
  color: #f0ebe1;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--default-transition);
}
.site-navi>li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}
.site-navi>li>a {
  padding: 0 10px;
}
.site-navi>li>a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  max-width: 0;
  bottom: -36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: rgba(var(--tertiary-color), 1);
  transition: all var(--default-transition);
}
.site-navi>li:not(.menu-button):hover>a::after {
  max-width: 100%;
}
.site-navi .sub-menu {
  position: absolute;
  width: 100%;
  min-width: 200px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--default-transition);
}
.site-navi .sub-menu .sub-menu {
  top: 0;
  margin-left: 100%;
}
.site-navi .sub-menu li {
  margin-bottom: 1px;
}
.site-navi .sub-menu li a {
  padding: 10px;
  background: rgba(var(--tertiary-color), 1);
}
.site-navi .sub-menu li:hover>a {
  background: rgba(var(--primary-color), 1);
}
.site-navi>li>.sub-menu {
  left: -150%;
  right: -150%;
  margin: auto;
  padding-top: 37px;
}
.site-navi li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-navi .menu-button {
  padding: 0;
  margin: 0 0 0 16px;
}
.site-navi .menu-button>a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  color: #f0ebe1;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #ded4bd;
  border-radius: 20px;
  padding: 0 25px;
  height: 38px;
}
.site-navi .menu-button>a:hover {
  background: rgba(var(--tertiary-color), 1);
  border-color: rgba(var(--tertiary-color), 1);
}
/* Header : END */
/* Floating SMI : START */
.floating_smi {
  width: 35px;
  right: 1%;
  top: 50%;
  position: fixed;
  z-index: 100;
  transform: translate(0, -50%);
  font-size: 0;
}
.floating_smi a {
  width: 35px;
  height: 35px;
  margin: 15px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary);
  transition: var(--default-transition);
}
.floating_smi a:hover {
  background-color: rgba(var(--tertiary-color), 1);
}
.floating_smi a span {
  display: block;
  font-size: 20px;
}
/* Floating SMI : END */
/* Footer : START */
.footer {
  position: relative;
  font-size: 0;
  overflow: hidden;
}
.footer-container {
  position: relative;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}
.footer-top {
  position: relative;
  padding: 85px 0;
}
.footer-info {
  position: relative;
}
.footer-info .footer-info-title {
  margin-bottom: 26px;
}
.footer-info ul {
  display: flex;
  flex-direction: column;
}
.footer-info ul li {
  margin-bottom: 15px;
}
.footer-info ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--font-size-default);
  font-weight: 300;
  color: var(--font-color-default);
  line-height: 1.3;
  letter-spacing: 0.04em;
  padding-left: 20px;
  transition: all var(--default-transition);
}
.footer-info ul li a i {
  color: rgba(var(--primary-color), 1);
  width: 16px;
  margin-right: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer-info ul li a i.ai-font-envelope-f {
  font-size: 10px;
}
.footer-info ul li a i.icon-pin {
  height: 18px;
  margin-top: -10px;
  background: url(../../images/icon-pin.png) no-repeat center top/contain;
}
.footer-info ul li a:hover {
  color: rgba(var(--tertiary-color), 1);
}
.footer-form {
  position: relative;
  width: 56.14%;
  margin-top: 3px;
}
.footer-form p {
  font-size: var(--font-size-default);
  font-weight: 300;
  color: var(--font-color-default);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.footer-form .gsite-input-fields {
  margin: 0 -10px;
}
.footer-form .gsite-input {
  display: inline-block;
  vertical-align: bottom;
  width: 50%;
  padding: 0 10px;
  margin-bottom: 10px;
}
.footer-form .gsite-input input,
.footer-form .gsite-input textarea {
  height: 48px;
  font-size: 13px;
  color: var(--font-color-default);
  letter-spacing: 0.1em;
  border-bottom: 1px solid #d4c8b0;
}
.footer-form .gsite-input textarea {
  padding-top: 20px;
  height: 80px;
}
.footer-form .gsite-checkbox {
  position: relative;
  margin-top: 10px;
}
.footer-form .gsite-checkbox>span.wpcf7-form-control-wrap {
  position: absolute;
}
.footer-form .gsite-checkbox>span.wpcf7-form-control-wrap label {
  display: block;
  position: relative;
}
.footer-form .gsite-checkbox>span.wpcf7-form-control-wrap label span.wpcf7-list-item-label::before {
  content: "\b0126";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'agentimage';
  font-size: 14px;
  opacity: 0;
}
.footer-form .gsite-checkbox>span.wpcf7-form-control-wrap label input:checked+span.wpcf7-list-item-label::before {
  opacity: 1;
}
.footer-form .gsite-checkbox>span.wpcf7-form-control-wrap input {
  appearance: none;
  background: none;
  padding: 0;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #d4c8b0;
}
.footer-form .gsite-checkbox>span:not(.wpcf7-form-control-wrap) {
  display: block;
  font-size: 15px;
  color: var(--font-color-default);
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding-left: 25px;
}
.footer-form .gsite-input-lg {
  width: 73.43%;
}
.footer-form .gsite-input-xl {
  width: 100%;
}
.footer-form .gsite-submit {
  display: inline-block;
  width: 23.14%;
  margin-left: 3.13%;
  margin-bottom: 10px;
}
.footer-form .gsite-submit button.gsite-button {
  border: 0;
  background: none;
  min-width: 175px;
}
.footer-form .wpcf7-form-control-wrap {
  display: block;
}
.footer-form .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.footer-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  width: 100%;
  margin: 5px 0 0;
}
.footer-bottom {
  position: relative;
  background: rgba(240, 235, 225, 0.7);
  padding: 75px 0 70px;
}
.footer-logo-brokerage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  text-align: center;
}
.footer-logo a {
  display: inline-block;
}
.footer-brokerage {
  text-align: center;
  margin-left: 50px;
  padding-left: 50px;
  border-left: 4px solid #020202;
  min-height: 95px;
  display: flex;
  align-items: center;
}
.footer-brokerage a {
  display: inline-block;
}
.footer-mission {
  font-size: 15px;
  font-style: italic;
  color: var(--font-color-default);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 45px auto 0;
  max-width: 800px;
}
.ftr-logo-memberof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}

.ftr-logo-memberof span {
  font-style: normal;
  text-transform: uppercase;
}
.footernav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  margin-top: 40px;
}
.footernav::before,
.footernav::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  left: -7%;
  right: -7%;
  background: linear-gradient(to right, rgba(160, 138, 83, 0.1) 0%, rgba(160, 138, 83, 0.55) 50%, rgba(160, 138, 83, 0.1) 100%);
}
.footernav::before {
  top: 0;
}
.footernav::after {
  bottom: 0;
}
.footernav li {
  margin: 0 16px;
}
.footernav li a {
  font-size: 13px;
  font-weight: 300;
  color: var(--font-color-default);
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--default-transition);
}
.footernav li:hover>a {
  color: rgba(var(--tertiary-color), 1);
}
.footer-links {
  margin-top: 38px;
}
.footer-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links ul li {
  padding: 0 8px;
}
.footer-links ul li a {
  font-size: 15px;
  color: var(--font-color-default);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-decoration: underline !important;
  transition: all var(--default-transition);
}
.footer-links ul li a:hover {
  color: rgba(var(--tertiary-color), 1);
}
.footer-links ul li:not(:first-child) {
  border-left: 1px solid #4d4d4d;
}
.footer-accessibility {
  font-size: 14px;
  color: var(--font-color-default);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 16px;
}
.footer-accessibility a {
  transition: all var(--default-transition);
}
.footer-accessibility a:hover {
  color: rgba(var(--tertiary-color), 1);
}
.footer-copyright {
  font-size: 14px;
  color: var(--font-color-default);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 10px;
}
.footer-copyright a {
  transition: all var(--default-transition);
}
.footer-copyright a:hover {
  color: rgba(var(--tertiary-color), 1);
}
.footer-copyright a[href="https://www.agentimage.com"] {
  text-decoration: underline !important;
}
.footer-realtors {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--font-color-default);
  margin-top: 15px;
}
.footer-realtors i.ai-font-realtor-mls {
  font-size: 22px;
  margin-left: 8px;
}
[class^=ai-font]::before {
  font-family: 'agentimage';
}
.grecaptcha-badge {
  display: none !important;
}
.page-id-23 #inner-page-wrapper .container {
  width: 100%;
}
iframe[name="widgetCta"] {
  bottom: 100px !important;
  left: -9px !important;
  right: auto !important;
  display: none !important;
}
ul.sitemap-list li.page_item.page-item--1 {
  display: none;
}
div#apexchat_bar_invitation_wrapper,
div#apexchat_bar_invitation_wrapper iframe {
  top: auto !important;
  bottom: 0 !important;
}
.ip-utility-row h2 {
  text-align: center;
  text-transform: uppercase;
  color: rgba(var(--primary-color), 1);
}
.ip-utility-row .row .col-md-6 h3 {
  color: rgba(var(--primary-color), 1);
}
.ip-utility-row .row .col-md-6 ul li i {
  font-style: normal !important;
  font-size: 18px;
  display: inline-block;
  margin-right: 10px;
  color: rgba(var(--primary-color), 1);
}
.ip-utility-row .row .col-md-6 ul li.ip-utility-address {
  align-items: flex-start;
}
.ip-utility-row .row .col-md-6 ul li i.ai-font-location-c {
  transform: translateY(8px);
}
.ip-utility-row .row .col-md-6 ul {
  margin: 0 !important;
}
.ip-utility-row .row .col-md-6 ul li {
  list-style-type: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2em;
  font-size: 16px;
}
.ip-utility-row .row .col-md-6 ul li a:hover {
  opacity: 0.6;
}
.ip-utility-row .row .col-md-6 ul li i.ai-font-phone-alt {
  font-size: 11px;
}
.ip-utility-row {
  padding: 50px 0;
  border-bottom: 1px solid #ccc;
}
.ip-hm-row ul {
  margin: 0 !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ip-hm-row ul li {
  width: 33.33%;
  list-style: none;
  flex-grow: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
.ip-hm-row ul li a {
  line-height: 17px;
}
.ip-hm-row {
  padding: 50px 0;
}
.ip-hm-row h2 {
  text-align: center;
  font-size: 30px !important;
  color: #c8ac68;
}
.listings-footer.custom-header {
  /*display: none !important;*/
}
#listings-details .listings-open-house.show {
  display: block !important;
}
#listings-results .custom-header {
  display: none !important;
}
.aios-custom-ihomefinder-printable-template #content .listings-printable-header span {
  display: none;
}
.category-blog .aiosp-iframe-holder .aiosp-content,
.post-page-our-exclusive-listings .aiosp-iframe-holder .aiosp-content {
  height: 780px;
}
.aios-contact-field:not(.lg) {
  width: calc(100% / 2) !important;
}
.postid-95 .cd-accordions__list-left #accordion-2,
.postid-95 .cd-accordions__list-right #accordion-3 {
  display: none;
}
/* Footer : END */
/* Reverse Button */
.reverse-button .gsite-button {
  color: #ffffff;
}
.reverse-button .gsite-button::before {
  width: calc(100% - 9px);
  background: rgba(var(--tertiary-color), 1);
}
.reverse-button .gsite-button i {
  width: 52px;
  background: #ded4bd;
}
.reverse-button .gsite-button span {
  transform: translateX(8px);
}
.reverse-button .gsite-button i::before,
.reverse-button .gsite-button i::after {
  background: #ded4bd;
}
.reverse-button .gsite-button:hover {
  color: #4d4d4d
}
.reverse-button .gsite-button:hover::before {
  width: 54px;
  background: rgba(var(--secondary-color), 1);
}
.reverse-button .gsite-button:hover i {
  width: 33px;
  background: #4d4d4d;
}
.reverse-button .gsite-button:hover i::before,
.reverse-button .gsite-button:hover i::after {
  background: #4d4d4d;
}
.reverse-button .gsite-button:hover span {
  transform: translateX(-12px);
}
/* Reverse Button */
.floating-text-cta {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  box-shadow: 5px 10px 8px #888888;
  border-radius: 5px;
}
.floating-text-cta a {
  background-color: var(--secondary);
  color: #fff;
  padding: 10px;
  z-index: 9999;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.wpcf7 form .wpcf7-submit[disabled]:hover,
.wpcf7 form button[disabled]:hover {
  color: #4d4d4d !important;
  cursor: not-allowed;
}
.visible-on-scroll {
	display: none !important;
}

/* a1LUg000005IBDR */
.postid-97 .cd-stats-items,
.postid-97 .cd-stats:after,
.postid-97 section.cd-overview,
.postid-97 section#cd-college-station,
.postid-97 section#cd-living-in,
.postid-97 section#cd-cta,
.postid-97 section#cd-recreational{
    display: none;
}

.postid-97 .cd-tableofcontents-wrap{
  height: 0;
  overflow: hidden;
}
/* a1LUg000005IBDR */

.single-aios-agents #agents-single .agents-testi-arrow.agents-testi-prev{
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.single-aios-agents #agents-single .agents-testi-arrow.agents-testi-next{
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.single-aios-agents #agents-single .hp-featured{
  padding: 85px 0;
}

















    .luxmeet-btn-cinfo {
        padding-bottom: 44px;
        margin-top: -22px;
        max-height: 0;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .luxmeet-btn-cinfo ul li {
        font-size: 18px;
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
    }

    .luxmeet-btn-cinfo ul li a {
        transition: all 0.3s ease-in-out;
    }

    .luxmeet-btn-cinfo ul li a:hover {
        color: #c9ac68 !important;
    }



.luxmeet-btn-cinfo.active {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
}










.aria-more-btn-cinfo {
    /* padding-bottom: 44px; */
    margin-top: 40px;
    max-height: 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

    .aria-more-btn-cinfo ul li {
        font-size: 18px;
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
    }

    .aria-more-btn-cinfo ul li a {
        transition: all 0.3s ease-in-out;
    }

    .aria-more-btn-cinfo ul li a:hover {
        color: #c9ac68 !important;
    }



.aria-more-btn-cinfo.active {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
}





















@media only screen and (min-width: 992px) {
  .desktop-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 1366px) {
  :root {
    --border-radius: 120px;
  }
  /* Header : START */
  .site-navi>li {
    margin: 0 3px;
  }
  .site-navi>li>a {
    padding: 0 5px;
  }
  .site-navi .menu-button>a {
    padding: 0 10px;
  }
  /* Header : END */
}
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
  :root {
    --font-size-title: 50px;
    --border-radius: 100px;
  }
  /* Header : START */
  .header-logo a img,
  .header.is-sticky .header-logo a img {
    width: 140px;
  }
  .site-navi>li>a {
    padding: 0;
  }
  .site-navi .menu-button {
    margin-left: 3px;
  }
  .site-navi .menu-button>a {
    padding: 0 5px;
  }
  /* Header : END */
}
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
  .ip-hm-row ul {
    flex-direction: column;
    align-items: center;
  }
  .ip-hm-row ul li {
    width: 100%;
  }
  #main-wrapper {
    padding-top: 52px;
  }
  .mobile-hide {
    display: none !important;
  }
  .desktop-hide {
    display: block !important;
  }
  #pojo-a11y-toolbar {
    display: none;
  }
  /* Header : START */
  .header {
    position: relative;
    padding: 20px 0;
  }
  .header-logo {
    width: 100%;
  }
  .header-logo a img {
    width: 240px;
    filter: none;
  }
  nav {
    display: none;
  }
  /* Header : END */
  /* Footer : START */
  .footer-container {
    max-width: 630px;
  }
  .footer-info {
    width: 100%;
  }
  .footer-info ul {
    align-items: center;
  }
  .footer-form {
    width: 100%;
    margin-top: 30px;
  }
  .footer-form p {
    text-align: center;
  }
  .footer-form .gsite-input,
  .footer-form .gsite-input-lg {
    width: 100%;
  }
  .footer-logo-brokerage {
    flex-direction: column;
  }
  .footer-brokerage {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 20px;
  }
  .footernav {
    flex-direction: column;
  }
  .footernav li {
    margin: 5px 0;
  }
  .footer-links ul {
    flex-direction: column;
    text-align: center;
  }
  .footer-links ul li:not(:first-child) {
    border-left: 0;
    margin-top: 10px;
  }
  /* Footer : END */
  iframe[name="widgetCta"] {
    bottom: 0 !important;
  }
  div#apexchat_bar_invitation_wrapper,
  div#apexchat_bar_invitation_wrapper iframe {
    top: 52px !important;
    bottom: auto !important;
    z-index: 5 !important;
  }
  div#apexchat_prechat_invitation_wrapper {
    bottom: 30px !important;
  }
  div#apexchat_video_greet_invitation_wrapper {
    bottom: 25px !important;
  }
  .footer-info ul li {
    text-align: center;
  }

  .ftr-logo-memberof img {
    max-width: 200px;
}
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
  :root {
    --font-size-title: 40px;
    --border-radius: 50px;
  }
  .gsite-arrow[class*=prev] {
    margin-right: 20px;
  }
  /* Footer : START */
  .footer-info ul li a {
    font-size: 14px;
  }
  /* Footer : END */
}
@media only screen and (max-height: 650px) {
  div#apexchat_tab_invitation_wrapper {
    top: 40% !important;
  }
}
