:root {
  /** Font default */
  --font-family-default: 'Wix Madefor Display', sans-serif;
  --font-family-title: 'Wix Madefor Display', sans-serif;
  --font-family-alt: 'Shippori Mincho B1', serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #000000;
  --font-color-title: #6c757d;
  /** Use for input, button, and any other element */
  --primary: #002d56;
  --secondary: #c6a04f;
  --accent: #d8432b;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: all 0.3s ease;
}

/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #FFFFFF;
  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; */
}

body.overflow {
  overflow: hidden;
}

.site-canvas {
  display: block;
  width: 100%;
}

.custom-container {
  max-width: 1318px;
  width: 100%;
  margin: auto;
}

a,
a:focus,
a:hover,
a:focus-within {
  text-decoration: none;
}

.home video {
  cursor: pointer;
}

.rel {
  position: relative;
}

.blk {
  display: block !important;
}

.no-padding {
  padding-right: 0 !important;
}

.disable {
  pointer-events: none;
}

.img-object {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-bg {
  background: #fff;
}

.img-wrapper {
  position: relative;
}

.img-wrapper canvas {
  display: block;
  width: 100%;
}

.img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.ios-true .bg-canvas,
.safari .bg-canvas {
  background-attachment: scroll !important;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-canvas-g {
  filter: grayscale(1);
}

.bg-fixed {
  background-attachment: fixed;
}

.bw {
  filter: grayscale(1);
}

.ease {
  transition: var(--default-transition);
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -o-transition: var(--default-transition);
}

.ease-1 {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

#main-wrapper {
  overflow: hidden;
}

.show-mb {
  display: none !important;
}

.txt-up {
  text-transform: uppercase;
}

.zi-100 {
  z-index: 100;
}

.rel-z {
  position: relative;
  z-index: 100;
}

.no-margin {
  margin: 0 !important;
}

.n-app {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
  background: transparent;
  border: 0;
}

/* Flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-c {
  align-items: center;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.fd-c{
  flex-direction: column;
}

.fd-rr {
  flex-direction: row-reverse;
}

/* POJO */
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 {
  display:none !important;
}

/* Header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  padding: 39px 18px;
}

.header-main {
  padding: 0;
}

.header-main .menu-primary-menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -18px;
}

.header-main .logo {
  width: clamp(208px,21vw,336px);
  padding: 0 15px;
}

.header-main .header-logo {
  max-width: 244px;
  width: 100%;
  margin: auto;
}

.header-logo a {
  position: relative;
}

.header-logo .fh-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.header-main ul {
  width: calc((100% - clamp(208px,21vw,336px)) / 2);
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: var(--default-transition);
}

.split-nav + .logo + .split-nav {
  position: relative;
  justify-content: flex-start;
}


.split-nav > li > a {
  font-size: clamp(10px,0.813vw,13px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
}


/* Sub Menu */
.split-nav li {
  position:relative;
  display: inline-block;
  padding: 0 clamp(11px,1.125vw,16px);
}

/* .split-nav > li:first-child {
  padding-left: 0;
}

.split-nav > li:last-child {
  padding-right: 0;
} */

.split-nav > li:not(:last-child)::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 15px;
  background: #fff;
  margin: auto;
}

.split-nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  background: none;
  padding: 35px 0 0;
  position: absolute;
  width: 100%;
  min-width: 250px;
  left: 50%;
  transform: translateX(-50%) translateY(-15%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  transition: var(--default-transition);
}

.split-nav .sub-menu a {
  font-size: clamp(10px,0.813vw,13px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.15em;
  background: var(--primary);
  padding: 13.5px 5px;
  display: block;
  background: rgba(0, 44, 86, 0.8);
}

.split-nav .sub-menu a:hover {
  background: rgba(198, 160, 79, 0.8);
  color: #fff;
}

.split-nav .sub-menu .sub-menu {
  margin-left: 100%;
  top:0;
}

.split-nav li:hover > .sub-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.split-nav .sub-menu li {
  position: relative;
  display: block;
  padding: 0 0 1px;
}

.li-accent {
  padding: 0 !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
}

.li-accent::before,
.li-accent::after {
  content: '';
  width: calc((100% - 28px) / 2);
  height: 2px;
  background: var(--secondary);
  display: block;
}

.li-accent span {
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  top: -8px;
  margin: auto;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 10px solid rgba(0, 44, 86, 0.8);
}

.li-accent span::before {
  content: '';
  position: absolute;
  left: -17px;
  top: 3px;
  width: 19px;
  height: 2px;
  background: var(--secondary);
  transform: rotate(322deg);
}

.li-accent span::after {
  content: '';
  position: absolute;
  right: -17px;
  top: 3px;
  width: 19px;
  height: 2px;
  background: var(--secondary);
  transform: rotate(38deg);
}

.split-nav .mega-menu .sub-menu {
  min-width: 250px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.split-nav li.menu-item-1114 .sub-menu {
  min-width: 250px;
}
.split-nav li.menu-item-1165 .sub-menu {
  min-width: 250px;
}

.split-nav .mega-menu .sub-menu li {
  /* width: calc(50% - 0.5px); */
  width: 100%;
}

.split-nav .mega-menu .sub-menu li.li-accent {
  width: 100%;
}

/* Fixed Header */
.header.fh {
  background: rgba(0, 44, 86, 0.88);
  padding: 18px;
}

.fh .header-main .logo {
  width: clamp(150px,17.063vw,273px);
}

.fh .header-main ul {
  width: calc((100% - clamp(150px,17.063vw,273px)) / 2);
}

.fh .header-main .header-logo {
  max-width: 180px;
}

.fh .split-nav .sub-menu {
  padding: 60px 0 0;
}


/* Global Title */
.global-title-txt {
  font-size: clamp(37px,3.750vw,60px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  line-height: 1;
}

.global-title-txt span {
  display: block;
  color: var(--secondary);
  font-weight: 500;
  font-size: clamp(14px,1.500vw,24px);
  letter-spacing: 0.5em;
  margin: 0 0 7px;
}

.white .global-title-txt {
  color: var(--secondary);
}

.white .global-title-txt span{
  color: #fff;
}

.one-line .global-title-txt span {
  display: inline-block;
  font-size: clamp(37px,3.750vw,60px);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin: 0;
}

.global-title.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-title-inner {
  position: relative;
}

.global-accent i {
  position: relative;
  display: block;
  width: 90px;
  height: 37px;
}

.global-accent i::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 18px;
  width: 56px;
  height: 2px;
  background: #737373;
  transform: rotate(322deg);
}

.global-accent i::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 18px;
  width: 56px;
  height: 2px;
  background: #737373;
  transform: rotate(38deg);
}

.global-accent-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}

.global-accent-inner::before {
  content: '';
  width: 60px;
  height: 2px;
  background: #737373;
  margin-right: -1px;
}

.global-accent-inner::after {
  content: '';
  width: 250px;
  height: 2px;
  background: #737373;
  margin-left: -1px;
}

.accent .global-title-inner {
  padding: 0 0 32px;
}

.global-accent {
  position: absolute;
  left: -200px;
  bottom: 0;
}

.white-lg .global-title-txt {
  color: #fff;
}

.gold .global-accent-inner::before,
.gold .global-accent-inner::after,
.gold.global-accent i::before,
.gold.global-accent i::after {
  background: var(--secondary);
}


/* Global Button */
.global-btn {
  max-width: 240px;
  width: 100%;
  height: 60px;
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: var(--default-transition);
}

.global-btn.white {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.global-btn:hover {
  background: var(--secondary) !important;
  color: #fff !important;
  border-color: var(--secondary) !important;
}

/* Slick */
.slick-list * {
  outline: none !important;
}

/* Contact */
.contact-wrap  {
  padding: 100px 0 106px;
}

.contact-wrap .parallax-bg {
  opacity: 0.15;
}

.contact-title .global-accent-inner::after {
  width: auto;
  flex: 1;
}

.contact-title .global-accent {
  left: 0;
  width: 100%;
}

.contact-title .global-title-txt {
  padding-left: 200px;
}

.contact-form {
  max-width: 740px;
  width: 100%;
  margin: 46px auto 0;
}

.cf-field-4 .cf-field {
  width: 50%;
  margin: 0 0 26px;
}

.cf-field-4 .cf-field:nth-child(odd) {
  padding-right: 10px;
}

.cf-field-4 .cf-field:nth-child(even) {
  padding-left: 10px;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #757575;
  text-transform: uppercase;
  color: #686868;
  font-size: 11px;
  letter-spacing: 0.14em;
  outline: none;
  padding: 0;
  height: 44px;
}

.cf-field textarea {
  resize: none;
  height: 69px;
  padding: 0 40px 0 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.cf-field textarea::-webkit-scrollbar {
  display: none;
}

.cf-field-submit {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 30px;
  height: 28px;
}

.cf-field-submit input {
  opacity: 0;
  padding: 0;
  font-size: 0;
  border: 0;
  width: 30px;
  height: 28px;
}

.cf-field-submit input + span {
  position: absolute;
  margin: 0;
  right: 0;
  top: 42px;
}

.cf-field-submit i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--secondary);
  font-size: 28px;
  transition: var(--default-transition);
  pointer-events: none;
}

.cf-field-submit input:hover + span + i {
  color: var(--primary);
}

.cf-row.cf-field-2 {
  margin: 14px 0 0;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 65px 0 50px;
}

.footer a {
  color: #fff;
  transition: var(--default-transition);
}

.footer a:hover {
  color: var(--secondary);
}

.footer-disclaimer {
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 15px;
  padding: 0 15px;
}

.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 15px;
  margin: 14px 0 19px;
}

.footer-realtor-logos {
  font-size: 20px;
}

.footer-realtor-logos .ai-font-realtor-mls {
  font-size: 28px;
  margin: 0 0 0 9px;
}

/* Parallax */
.parallax-bg,
.simpleParallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.img-parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}
.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 250px;
  background-color: var(--dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
  width: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}
.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
  line-height: 1.7;
}

h1.entry-title,
#content .archive-subtitle,
#content .archive-title,
#inner-page-wrapper .agent-entry-title,
#inner-page-wrapper .entry-title,
#content .entry-title {
  font-size: clamp(37px,3.750vw,60px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  line-height: 1;
  display: flex;
  flex-direction: column-reverse;
  margin: 0.67em 0;
  font-family: var(--font-family-default);
}

#content .entry-title.aios-about-title {
    letter-spacing: 0;
    font-size: clamp(30px,3.3vw,45px);
}
h1.entry-title span,
#content .archive-title span,
#content .entry-title span {
  display: block;
  color: var(--secondary);
  font-weight: 500;
  font-size: clamp(14px,1.500vw,24px);
  letter-spacing: 0.5em;
  margin: 0 0 7px;
}

.aios-rm-sellers-template-default #content .entry-title,
.aios-rm-buyers-template-default #content .entry-title,
.aios-rm-financing-template-default #content .entry-title {
  font-family: var(--font-family-default);
  font-size: clamp(37px,3.750vw,60px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  line-height: 1;
}

.aios-rm-sellers-template-default #content .entry h3,
.aios-rm-buyers-template-default #content .entry h3,
.aios-rm-financing-template-default #content .entry h3 {
  font-family: var(--font-family-alt);
  font-weight: 500;
  font-size: clamp(18px,1.750vw,28px);
  letter-spacing: 0.025em;
  line-height: 30px;
  color: var(--primary);
}


#content .entry {
  color: #686868;
  font-size: 14px;
  font-family: var(--font-family-alt);
  letter-spacing: 0.025em;
}

body.page-template-template-fullwidth #inner-page-wrapper > .container{
  width: 100%;
  padding: 0 0;
}

body:not(.aios-custom-ihomefinder-shortcode-template) #ai-minimalist-properties-results {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
}


/* Communities - Single */
.single-aios-communities #ai-modern-community-details .ai-modern-community-details-title h2 {
  font-family: var(--font-family-default);
/*  font-size: clamp(37px,3.750vw,60px);*/
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  line-height: 1;
}

.single-aios-communities #ai-modern-community-details .ai-modern-community-details-title h2 span {
  color: var(--primary);
  line-height: 1;
}

.single-aios-communities .ai-modern-community-details-content {
  color: #686868;
  font-size: clamp(12px,0.875vw,14px);
  font-family: var(--font-family-alt);
  letter-spacing: 0.025em;
  line-height: 25px;
}

.single-aios-communities .leaflet-div-icon {
  border: none !important;
  background: transparent !important;
}

.single-aios-communities .ihf-map-icon {
  background: var(--accent);
  border: 1px solid var(--accent);
}

.single-aios-communities .ihf-map-icon:after {
  border-top-color: var(--accent);
}

/* Communities IP */
/*.page-id-27 #aios-modern-community-page .amcp-content > div .amcp-info .amcp-explore span {
  width: 100%;
  height: 60px;
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: var(--default-transition);
  font-weight: 400;
}

.page-id-27 #aios-modern-community-page .amcp-content > div .amcp-info .amcp-explore span:hover {
  background: var(--secondary);
  color: #fff;
}

.page-id-27 #aios-modern-community-page .amcp-content > div .amcp-info .amcp-explore {
  padding-right: 10px;
}*/
body #ai-modern-contact .ai-modern-contact-title{
    font-size: clamp(37px,3.750vw,60px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    line-height: 1;
}
body #ai-modern-contact .ai-modern-contact-title span{
  display: block;
  color: var(--secondary);
  font-weight: 500;
  font-size: clamp(14px,1.500vw,24px);
  letter-spacing: 0.5em;
  margin: 0 0 7px;
}
body #ai-modern-contact .ai-modern-contact-title strong{
  color: inherit;
}

body .ai-modern-testimonials-results-content-name{
  display: block;
  color: var(--secondary);
  font-weight: 500;
  font-size: clamp(14px,1.500vw,24px);
  letter-spacing: 0.5em;
  margin: 0 0 7px;
  font-family: var(--font-family-default);
}
body .ai-modern-testimonials-results-readmore{
  font-family: var(--font-family-default);
}
body .ai-modern-testimonials-results-content,
body .ai-modern-testimonials-results-popup-content{
  font-family: var(--font-family-alt);
  color: #686868;
  font-size: clamp(12px,0.875vw,14px);
  font-family: var(--font-family-alt);
  letter-spacing: 0.025em;
  line-height: 1.786;
}

html #aios-modern-listing-details .amld-content .amld-left h2 {
    display: block;
    color: var(--secondary);
    font-family: var(--font-family-default);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.5em;
    margin: 0 0 7px;
}

html #aios-modern-listing-details .amld-content .amld-left h2 span {
    font-family: var(--font-family-default);
    font-size: 54px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    padding-right: 50px;
    line-height: 1;
}

html #aios-modern-listing-details .amld-content .amld-cta-buttons li a {
/*        max-width: 240px;*/
    width: 100%;
    height: 60px;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary);
    font-family: var(--font-family-default);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: var(--default-transition);
}

body.page-id-21 p#breadcrumbs {
  padding: 0 15px;
}

/* Social Media Page */
.page-id-1216 .aios-smf-theme-two .aios-smf-left #theme-title h2 {
  color: var(--primary);
  font-size: clamp(37px,3.250vw,50px);
  font-weight: 600;
  font-family: var(--font-family-default);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
}
.page-id-1216 .aios-smf-theme-two .aios-smf-right #theme-content li.filter-feed a {
  color: var(--secondary) !important;
  font-family: var(--font-family-default);
}
.page-id-1216 .aios-smf-theme-two .aios-smf-right #theme-content li.filter-feed a.filter-active {
  color: var(--primary) !important;
}


body.pojo-a11y-readable-font [class*=ai-font-] {
  font-family: agentimage !important;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  width: auto;
  position: absolute;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

.tax-community-group  p#breadcrumbs{
    padding: 0 100px;
    margin: 1.12em 0;
}

.post-page-contact-us #ai-modern-contact .ai-modern-contact-info li.address br {
  display: none;
}

.aios-custom-ihomefinder-printable-template #breadcrumbs  {
    display: none;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 12px;
    padding: 0.2em 0.8em;
    width: auto;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.dropdown-menu.pull-right {
   z-index: 1001 !important;
}

#listings-details .listings-slideshow .listings-slideshow-slide:after {
  z-index: 5!important;
}

.home .bootstrap-select.btn-group .dropdown-menu.inner {
   max-height:200px !important;
}

#ai-minimalist-properties-results .ai-minimalist-properties-results-control {
  margin-top: 40px !important;
}












#content .hp-map-comm-areas.hp-map-comm-ip {
    position: relative;
    pointer-events: auto;
    margin-top: 50px;
    display: flex;
    flex-flow: row wrap;
}

#content .hp-map-comm-areas.hp-map-comm-ip li.hp-map-comm-title > a {
    display: inline-block;
    position: relative;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.150em;
    color: #686868;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: auto;
    font-family: var(--font-family-default);
}

#content .hp-map-comm-areas.hp-map-comm-ip > ul {
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    padding-right: 40px;
    list-style: none !important;
    margin: 0px !important;
    width: 50%;
}

#content .hp-map-comm-areas.hp-map-comm-ip > ul:not(:last-child) {
    margin-right: 45px;
    padding-right: 40px;
}

#content .hp-map-comm-areas.hp-map-comm-ip li.hp-map-comm-title {
    z-index: 1;
    position: relative;
    display: block;
    pointer-events: none;
}

#content .hp-map-comm-areas.hp-map-comm-ip li.hp-map-comm-title:not(:last-child) {
    margin-bottom: 44px;
}

#content .hp-map-comm-areas.hp-map-comm-ip ul.hp-map-comm-sub-menu li a {
    font-size: 13px;
    line-height: 1;
    color: #8b8b8b;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    pointer-events: auto;
    font-family: var(--font-family-default);
}











#content .hp-map-comm-areas.hp-map-comm-ip li.hp-map-comm-title ul {
    list-style: none;
    margin-left: 0;
}











#ai-modern-contact .ai-modern-contact-photo canvas {
    background-position: center !important;
    background-size: contain !important;
}

#ai-modern-contact .ai-modern-contact-photo span:before {
    opacity: 0;
}

/* Map */

.hp-map-container {
    display: block;
    position: relative;
    z-index: 3;
    overflow: hidden;
    font-size: 0;
}

.hp-map-wrapper {
    display: block;
    position: relative;
}


.hp-map-wrapper .global-title {
    position: absolute;
    top: 8%;
    right: 0;
    z-index: 5;
    width: 42%;
}

.hp-map-wrapper .global-accent {
    bottom: 7px;
    right: -18%;
    left: auto;
}

.hp-map-wrapper .global-accent-inner::after {
    width: 100vw;
    position: absolute;
    left: 100%;
    right: 0;
}

.hp-map-wrapper .global-accent-inner::before {
    width: clamp(175px,18vw,288px);
    position: absolute;
    bottom: 0;
    left: auto;
    right: 100%;
}

ul.hp-map-comm-sub-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.hp-map-comm-areas > ul:not(:last-child) {
    margin-right: 45px;
    padding-right: 40px;
}


.hp-map-comm-areas li.hp-map-comm-title > a:before {}


.hp-map-comm-areas {
    position: relative;
    pointer-events: auto;
    margin-top: 50px;
}

.hp-map-transparent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.hp-map-main {
    position: relative;
    width: 1600px;
}

.hp-map-hovers {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hp-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 4;
}

.hp-map-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 5;
    display: block;
    text-align: center;
    pointer-events: none;
}

.hp-map-pin span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.150em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: inline-block;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-align: center;
}

.hp-map-hovers > div.fairfax .hp-map-pin span {
    font-size: 17px;
}

.hp-map-hovers > div.fairfax .hp-map-pin span:before {
    top: -18px;
    right: -14px;
}

.hp-map-hovers > div.arlington-alexandria .hp-map-pin span {
    font-size: 17px;
    line-height: 1.3;
    text-shadow: rgb(14, 37, 71) 1px 0px 0px, rgb(14, 37, 71) 0.540302px 0.841471px 0px, rgb(14, 37, 71) -0.416147px 0.909297px 0px, rgb(14, 37, 71) -0.989992px 0.14112px 0px, rgb(14, 37, 71) -0.653644px -0.756802px 0px, rgb(14, 37, 71) 0.283662px -0.958924px 0px, rgb(14, 37, 71) 0.96017px -0.279415px 0px;
}

.hp-map-hovers > div.arlington-alexandria .hp-map-pin span:before {
    top: auto;
    bottom: -17px;
    right: -18px;
}

.hp-map-hovers > div.prince-william .hp-map-pin span {
    line-height: 1.2;
    letter-spacing: 0.100em;
}

.hp-map-hovers > div.prince-william .hp-map-pin span:before {
    top: -24px;
    left: -18px;
}

.hp-map-hovers > div.loudoun .hp-map-pin span {
    letter-spacing: 0.150em;
    font-size: 19px;
}

.hp-map-comm-areas li.hp-map-comm-title {
    z-index: 1;
    position: relative;
    display: block;
    pointer-events: none;
}

.hp-map-comm-areas li.hp-map-comm-title:not(:last-child) {
    margin-bottom: 44px;
}

.hp-map-comm-areas > ul {
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    /* margin-right: 45px; */
    padding-right: 40px;
}

.hp-map-comm-areas li.hp-map-comm-title > a {
    display: inline-block;
    position: relative;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.150em;
    color: #686868;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: auto;
}

.hp-map-content {
    z-index: 5;
    position: absolute;
    top: 195px;
    right: 0;
    width: 671px;
}

.hp-map-title {
    display: block;
    position: relative;
}

.hp-map-wrapper .global-title-inner {
    display: inline-block;
}

.hp-map-comm-areas li.hp-map-comm-title.active > a:after, 
.hp-map-comm-areas li.hp-map-comm-title:hover > a:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.hp-map-comm-areas li.hp-map-comm-title.active a:before, 
.hp-map-comm-areas li.hp-map-comm-title:hover a:before {
    opacity: 0;
    visibility: hidden;
}

.hp-map-pin-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.hp-map-pin-list > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
    pointer-events: auto;
}

.hp-map-pin-item span {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    display: block;
    pointer-events: none;
    text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px, rgb(0, 0, 0) -0.416147px 0.909297px 0px, rgb(0, 0, 0) -0.989992px 0.14112px 0px, rgb(0, 0, 0) -0.653644px -0.756802px 0px, rgb(0, 0, 0) 0.283662px -0.958924px 0px, rgb(0, 0, 0) 0.96017px -0.279415px 0px;
}

.hp-map-pin-item span:before {
    position: absolute;
    content: '';
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #c6a04f;
}



.hp-map-pin-list > div[data-pin="potomac-falls"] span {
    line-height: 1.2;
}

.hp-map-hovers > div.active .hp-map-pin {
    opacity: 0;
    visibility: hidden;
}


.hp-map-pin-list > div[data-pin="dunn"] span:before {
    left: -6px;
    top: -8px;
}

.hp-map-pin-list > div[data-pin="loring"] span:before {
    left: 0;
    right: auto;
}

.hp-map-pin-list > div[data-pin="rosslyn"] span:before {
    left: -9px;
    right: auto;
    top: 2px;
}

.hp-map-pin-list > div[data-pin="crystal-city"] span:before {
    left: -9px;
    right: auto;
    top: 2px;
}


.hp-map-pin-list > div[data-pin="alexandria"] span:before {
    right: -9px;
    left: auto;
    top: 3px;
}

.hp-map-pin-list > div[data-pin="arlington"] span:before {
    right: -9px;
    left: auto;
    top: 3px;
}

.hp-map-pin-list > div[data-pin="clarendon"] span:before {
    right: -7px;
    left: auto;
    top: -4px;
}

.hp-map-pin-list > div[data-pin="old-town"] span:before {
    left: 22px;
    right: auto;
    top: -8px;
}

.hp-map-pin-list > div[data-pin="old-town"] span {
    text-align: left;
    line-height: 1.3;
}

.hp-map-hovers > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hp-map-hovers > div.active .hp-map-img {
    opacity: 1;
    visibility: visible;
}

ul.hp-map-comm-sub-menu li {
    display: block;
    position: relative;
}

ul.hp-map-comm-sub-menu {
    position: relative;
    margin-top: 15px;
    pointer-events: none;
}

ul.hp-map-comm-sub-menu li a {
    font-size: 13px;
    line-height: 1;
    color: #8b8b8b;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    pointer-events: auto;
}


.hp-map-pin span:before {
    position: absolute;
    content: '';
    top: -15px;
    left: 0;
    right: 0;
    width: 7px;
    height: 7px;
    background-color: #c6a04f;
    border-radius: 50%;
    margin: 0 auto;
    pointer-events: none;
}


.hp-map-comm-areas li a.active span.line-accent, .hp-map-comm-areas li a:hover span.line-accent {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hp-map-comm-areas li:hover .hp-map-comm-sub-menu li:hover a {
    color: var(--secondary);
}

.hp-map-hovers > div.active .hp-map-pin-list {
    opacity: 1;
    visibility: visible;
}

.hp-map-comm-areas span.line-accent {
    position: absolute;
    bottom: -4px;
    left: calc(100% - 5px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    transform: translateY(50%);
}



.hp-map-comm-areas span.line-accent em {
    position: relative;
    display: block;
    width: 30px;
    height: 17px;
    z-index: 2;
}

.hp-map-comm-areas span.line-accent em::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 8px;
    width: 21px;
    height: 2px;
    background: #c6a04f;
    transform: rotate(320deg);
}

.hp-map-comm-areas span.line-accent em::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 8px;
    width: 21px;
    height: 2px;
    background: #c6a04f;
    transform: rotate(40deg);
}

.hp-map-comm-areas span.line-accent:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 100%;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: #c6a04f;
}

.hp-map-comm-areas span.line-accent:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: auto;
    right: 100%;
    width: 100vw;
    height: 2px;
    background-color: #c6a04f;
}

.hp-map-comm-areas li a:hover span.line-accent {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*hovers*/
.hp-map-hovers > div.loudoun .hp-map-img {
    top: 102px;
    left: 94px;
}

.hp-map-hovers > div.fairfax .hp-map-img {
    top: 349px;
    left: 406px;
}

.hp-map-hovers > div.arlington-alexandria .hp-map-img {
    top: 464px;
    left: 679px;
}

.hp-map-hovers > div.prince-william .hp-map-img {
    top: 463px;
    left: 269px;
}

.hp-map-hovers > div.loudoun .hp-map-pin {
    top: 322px;
    left: 300px;
}

.hp-map-hovers > div.fairfax .hp-map-pin {
    top: 519px;
    left: 527px;
}

.hp-map-hovers > div.arlington-alexandria .hp-map-pin {
    top: 488px;
    left: 666px;
}

.hp-map-hovers > div.prince-william .hp-map-pin {
    top: 702px;
    left: 414px;
}


p#breadcrumbs{
  margin: calc(1.12em + 3px) 0 1.12em;
  line-height: 1.7;
}

@media only screen and (max-width: 1366px) {
    .hp-map-wrapper .global-accent {
      right: -20%;
    }
}
/* MOBILE */
@media only screen and (max-width: 1280px) {
  .single-aios-communities #ai-modern-community-details .ai-modern-community-details-title h2 {
    font-size: 40px;
  }

  html #aios-modern-listing-details .amld-content .amld-left h2 {
    font-size: min(24px, 2vw);
  }

  html #aios-modern-listing-details .amld-content .amld-left h2 span {
    font-size: 2em;
    padding-right: 2.083em;
  }
  .hp-map-wrapper .global-accent {
    right: -22%;
  }
}
@media only screen and (max-width: 1199px) {
  .hp-map-wrapper .global-accent {
    right: -26%;
    bottom: 20px;
  }
}
/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {

  /* The following are used on inner pages. Please edit carefully. */
  .inner {
    width: 100%;
  }
  #content-sidebar,
  #content-full {
    width: 100%;
  }
  .outer {
    width: 100%;
    min-width: 100%;
  }
  #content-sidebar #content {
    width: 100%;
  }

  /* Custom */
  .hidden-mb {
    display: none !important;
  }

  #pojo-a11y-toolbar {
    display:none;
  }

  .aios-mobile-header-wrapper {
    z-index: 1020 !important;
  }

  .amh-header-buttons {
    color: var(--primary);
  }

  .header,
  .header.fh {
    position: relative;
    background: var(--primary);
    padding: 62px 15px 10px;
    opacity: 1;
  }

  .fh .header-main .header-logo {
    max-width: 244px;
  }

  .fh .header-main .logo {
    width: clamp(208px,21vw,336px);
  }

  .header-main {
    display: flex;
    justify-content: center;
  }

  #split-nav,
  .split-nav {
    display: none;
  }

  .global-title {
    text-align: center;
  }

  .global-title .global-accent {
    display: none;
  }

  .global-btn {
    margin: auto;
  }

  .contact-title .global-title-txt {
    padding-left: 0;
  }

  .cf-field-4 .cf-field {
    width: 100%;
    padding: 0 !important;
  }

  .post-page-contact-us #ai-modern-contact .ai-modern-contact-photo canvas {
    max-width: 500px;
    margin: 0 auto;
  }

  html #aios-modern-listing-details .amld-content .amld-left h2 {
    font-size: max(3.027vw, 12px);
  }

  html #aios-modern-listing-details .amld-content .amld-left h2 span {
    letter-spacing: 0.125em;
  }
  .hp-map-wrapper .global-title {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      margin: 0;
  }
  
  .hp-map-outer {
      height: auto!important;
  }
  
  .hp-map-main {
      width: 100%!important;
      transform: none!important;
  }
  
  img.hp-map-transparent,
  map#map-area,
  img.hp-map-base,
  .hp-map-hovers{
      display: none!important;
  }
  
  .hp-map-content {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
  }
  
  .hp-map-container {
      padding: 60px 15px;
      background-color: #f5f5f5;
  }
  
  .hp-map-comm-areas > ul:not(:last-child) {
      margin: 0 0 20px;
  }
  
  .hp-map-comm-areas > ul {
      display: block;
      padding: 0!important;
      width: 100%;
  }
  
  .hp-map-comm-areas {
      display: block;
      width: 100%;
      margin: 0 auto;
      text-align: center;
  }
  
  .hp-map-comm-areas span.line-accent {
      opacity: 1!important;
      visibility: visible!important;
      transform: translateY(0)!important;
      /* display: none!important; */
      bottom: 11px;
      right: 15px;
      left: auto;
  }
  
  .hp-map-comm-areas li.hp-map-comm-title:not(:last-child) {
      margin-bottom: 30px;
  }
  
  .hp-map-wrapper .global-title-inner {
      padding: 0 0 40px;
  }
  
  .hp-map-comm-areas li.hp-map-comm-title > a {
      font-size: 16px;
      padding: 0 40px 20px 0;
      overflow: hidden;
      margin-left: 15px;
      letter-spacing: 0.050em;
  }
  
  .hp-map-comm-areas > ul:not(:last-child) {
      margin-bottom: 30px;
  }

  .hp-map-comm-areas li[data-map-target="arlington-alexandria"] a {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
  }

  ul.hp-map-comm-sub-menu li a {
      font-size: 15px;
      line-height: 1.6;
  }
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }
  .single-aios-communities #ai-modern-community-details .ai-modern-community-details-title h2 {
    font-size: 29px;
    letter-spacing: 0.05em;
  }

  .post-page-contact-us #ai-modern-contact .ai-modern-contact-info li.address br {
    display: block;
  }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
  .post-page-contact-us #ai-modern-contact .ai-modern-contact-info li a,
  .post-page-contact-us #ai-modern-contact .ai-modern-contact-info li p {
    font-size: 12px;
    letter-spacing: 0;
  }
  .hp-map-wrapper .global-title-txt {
    font-size: 35px;
  }
}

.ti-widget.ti-goog {
  right: 0 !important;
  left: auto !important;
}
