:root {
  /** Font default */
  --font-family-default: "Red Hat Display", sans-serif;
  --font-family-title: "Mulish", serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #3b3b3b;
  --font-color-light: #ffffff;
  --font-color-title: #000000;
  /** Use for input, button, and any other element */
  --primary: #141943;
  --gradient-blue: #2365ad;
  --gradient-green: #4ea94a;
  --accent-green: #70bb69;
  --button-bg: rgba(149,149,149,.26);
  
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .5s cubic-bezier(.4, 0, .2, 1);
}

/* 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; */
}
/* 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;
}

body.pojo-a11y-readable-font [class*="ai-font"] {
  font-family: agentimage !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;
}
.mobile .bg-img,
.safari-true .bg-img{
  background-attachment: scroll !important;
}
.visible-on-scroll {
  display: none !important;
}
#main-wrapper{
  overflow: hidden;
}
.entry-title,
.archive-title{
  position: relative;
  font-family: var(--font-family-title);
  color: var(--font-color-title);
  text-transform: uppercase;
  font-size: clamp(35px, 4.5vw, 72px) !important;
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: .01em;
}
#content-full{
  margin-top: 0 !important;
}
.ip-banner canvas{
  height: 465px;
}
#breadcrumbs{
  color: var(--font-color-light);
  margin-top: -39px !important;
  margin-bottom: 0 !important;
  padding-bottom: 23px;
  font-size: 16px;
  letter-spacing: .025em;
}
#breadcrumbs span{
  color: var(--font-color-light);
}
#breadcrumbs span.breadcrumb_last{
  font-weight: 700;
}
a,
a:hover,
a:focus{
  text-decoration: none;
  color: var(--font-color-default);
  transition: var(--default-transition);
}
#main-wrapper .ai-font-phone{
  font-size: 14px;
}
#main-wrapper .ai-font-mobile-b{
  font-size: 16px;
}
#main-wrapper .ai-font-envelope-f{
  font-size: 12px;
}
#main-wrapper .ai-font-facebook,
#main-wrapper .ai-font-instagram,
#main-wrapper .ai-font-youtube,
#main-wrapper .ai-font-linkedin{
  font-size: 20px;
}
.global-btn{
  display: block;
  position: relative;
  background: transparent;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  padding: 18px 0;
  border-image: linear-gradient(0deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
  border-image-slice: 1;
  border-width: 1px;
  border-style: solid;
  transition: var(--default-transition);
}
.global-btn:hover{
  background: transparent;
  border-image: linear-gradient(35deg, var(--gradient-green) 0%, var(--gradient-green) 40%, var(--gradient-blue) 60%, var(--gradient-blue) 100%);
  border-image-slice: 1;
  color: var(--font-color-light);
}
.global-btn::before{
  content: '';
  position: absolute;
  background: linear-gradient(35deg, var(--gradient-green) 0%, var(--gradient-green) 40%, var(--gradient-blue) 60%, var(--gradient-blue) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--default-transition);
}
.global-btn:hover::before{
  opacity: 1;
}
.global-btn::after{
  content: '';
  position: absolute;
  width: 3px;
  height: 44px;
  background: var(--accent-green);
  left: 6px;
  bottom: -5px;
}
.section-title span{
  display: block;
  color: var(--font-color-default);
  text-transform: uppercase;
  font-size: clamp(18px, 1.3vw, 21px);
  letter-spacing: .5em;
  padding-bottom: 10px;
  font-weight: 400;
}
.section-title{
  position: relative;
  font-family: var(--font-family-title);
  color: var(--font-color-title);
  text-transform: uppercase;
  font-size: clamp(35px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
}
.section-title::after{
  content: '';
  position: relative;
  display: block;
  width: 99px;
  height: 3px;
  background: linear-gradient(to right, var(--gradient-green) 0%, var(--gradient-blue) 100%);
  margin-top: 20px;
  margin-left: 5px;
}
.img-container{
  position: relative;
  display: block;
}
.img-container > canvas{
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary);
}
.img-container > img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* Main Header */
.header {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 20;
  top: 0;
  left: 0;
  transition: var(--default-transition);
}
.header .logo{
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  max-height: 0;
  transition: var(--default-transition);
}
.header .logo img{
  max-width: 170px;
  max-height: 65px;
  height: auto;
}
.header .navigation{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0;
  margin-right: -4%;
  margin-left: 4%;
}
.header .navigation nav > div{
  display: flex;
  justify-content: center;
}
.header #nav,
.header .nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header #nav li,
.header .nav li {
  position: relative;
}
.header #nav > li,
.header .nav > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 60px;
}
.header #nav:last-child > li:last-child,
.header .nav:last-child > li:last-child {
  margin-right: 0;
}
.header #nav > li > a,
.header .nav > li > a {
  position: relative;
  font-size: 16px;
  color: var(--font-color-light);
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 10px 15px 11px;
  letter-spacing: .075em;
  z-index: 1;
}
.header .nav > li > a:hover {
  background: transparent;
}
.header #nav > li:last-child > a,
.header .nav > li:last-child > a {
  margin-right: 0;
}
.header #nav > li > a::before,
.header .nav > li > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  margin: auto;
  background: var(--gradient-green);
  height: 4px;
  width: 59px;
  max-width: 0;
  transition: var(--default-transition);
}
.header .nav > li:hover > a::before {
  max-width: 100%;
  left: 0;
  right: 0;
}
.header #nav > li > a ::after,
.header .nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  right: 50%;
  margin: auto;
  background: var(--gradient-green);
  height: 4px;
  width: 59px;
  max-width: 0;
  transition: var(--default-transition);
}
.header .nav > li:hover > a::after {
  max-width: 100%;
  left: 0;
  right: 0;
}
.header .sub-menu{
  position: absolute;
  visibility: hidden;
  opacity: 0;
  min-width: 180px;
  width: max-content;
  top: 35px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  transition: var(--default-transition);
  pointer-events: none;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.header .sub-menu li{
  background: #fff;
  transition: var(--default-transition);
}
.header .sub-menu li:hover{
  background: transparent;
}
.header .sub-menu a{
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: var(--font-color-default);
  text-transform: uppercase;
  transition: var(--default-transition);
}
.header .sub-menu a:hover{
  color: var(--font-color-light);
}
.header .sub-menu a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
  opacity: 0;
  transition: var(--default-transition);
}
.header .sub-menu a:hover::after{
  opacity: 1;
}
.header .show-sub-menu{
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.header .burger-btn{
  cursor: pointer;
}
.header .burger-btn > div{
  background: var(--font-color-light);
  height: 1px;
  width: 26px;
  margin-bottom: 5px;
  transition: var(--default-transition);
}
.header .burger-btn > div:last-child{
  margin-bottom: 0;
}
.header .burger-btn:hover > div{
  background: var(--gradient-green);
}
/* Fixed Header */
.header.fixed-header{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(20,25,67,.91);
}
.header.fixed-header .logo{
  opacity: 1;
  visibility: visible;
  max-width: none;
  max-height: none;
}
.header.fixed-header .navigation{
  margin-right: 0;
  margin-left: 10%;
  padding: 17px 0;
}
.header.fixed-header .nav:first-child > li:last-child{
  margin-right: 40px;
}
.header.fixed-header .nav:last-child > li{
  margin-right: 30px;
}
.header.fixed-header .nav:last-child > li:first-child{
  margin-left: 40px;
}
.header.fixed-header .nav:last-child > li:last-child{
  margin-right: 0;
}

/* Floating SMIs */
.floating-smi{
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.floating-smi a{
  display: block;
  position: relative;
  color: var(--font-color-light);
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, .2));
  margin-bottom: 14px;
  padding: 10px;
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 100%;
  background: var(--button-bg);
  transition: var(--default-transition);
}
.floating-smi a:hover{
  background: transparent;
}
.floating-smi a::before{
  content: '';
  position: absolute;
  opacity: 0;
  background: linear-gradient(180deg, var(--gradient-blue) 0%, var(--gradient-green) 100%);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: var(--default-transition);
}
.floating-smi a:hover::before{
  opacity: 1;
}
.floating-smi a::after{
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(180deg, var(--gradient-blue) 0%, var(--gradient-green) 100%);
  border-radius: 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
    mask-composite: exclude;
  pointer-events: none;
}
.floating-smi .connect{
  position: absolute;
  left: -23px;
  bottom: -65px;
  transform: rotate(-90deg);
  color: var(--font-color-light);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .075em;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.71));
}

/* Floating Contact Form */
.contact-btn{
  position: fixed;
  z-index: 5;
  right: -59px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) !important;
  color: var(--font-color-light);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .075em;
  cursor: pointer;
  border-image: linear-gradient(90deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
  border-image-slice: 1;
  border-width: 1px;
  border-style: solid;
  padding: 18px 38px;
  transition: var(--default-transition);
  background: var(--button-bg);
}
.contact-btn:hover{
  background: transparent;
}
.contact-btn::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
  z-index: -1;
  transition: var(--default-transition);
  opacity: 0;
}
.contact-btn:hover::after{
  opacity: 1;
}
.floating-cf{
  display: flex !important;
  position: fixed;
  height: 100%;
  width: 708px;
  right: -100%;
  top: 0;
  transition: 1s ease-in-out;
  z-index: 1000;
  background: #fff;
}
.cf-wrap::-webkit-scrollbar {
  display: none;
}
.cf-wrap{
  overflow-y: scroll;
  height: 100%;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.floating-cf::before{
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(104, 149, 199, .28);
  filter: brightness(1.2);
  z-index: -1;
}
.floating-cf.show{
  right: 0;
}
.floating-cf .bg-img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: .16;
}
.contact-close{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--default-transition);
}
.contact-close:hover{
  color: var(--gradient-green);
}
.floating-cf .logo{
  text-align: center;
  margin: 50px 0 45px;
}
.floating-cf .cf-title span{
  color: #2366ae;
}
.floating-cf .cf-title{
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: 48px;
  color: var(--font-color-default);
  margin-bottom: 20px;
  text-align: center;
}
.floating-cf p{
  font-size: 14px;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 28px;
}
.floating-cf .wpcf7-form-control-wrap{
  position: relative;
  display: block;
  width: 100%;
}
.floating-cf input[type=text],
.floating-cf input[type=tel],
.floating-cf input[type=email],
.floating-cf textarea{
  width: 100%;
  background: #fff;
  font-size: 14px;
  letter-spacing: .05em;
  border: 1px solid #a4a4a4;
  outline: none;
  padding: 17px;
  margin-bottom: 8px;
}
.floating-cf textarea{
  margin-bottom: 14px;
  resize: none;
  height: 90px;
}
.cf-wrap{
  padding: 0 75px;
}
.cb-wrap{
  display: flex;
  font-size: 14px;
  letter-spacing: .05em;
  align-items: baseline;
  margin-bottom: 25px;
}
.cb-label{
  display: block;
  width: 100%;
  max-width: 110px;
}
.cb-wrap .wpcf7-list-item{
  margin: 0 0 0 30px;
}
.cb-wrap .wpcf7-list-item input[type=checkbox]{
  position: relative;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--font-color-default);
  background: #c8c8c8;
  margin-right: 8px;
  outline: none;
  cursor: pointer;
}
.cb-wrap .wpcf7-list-item input[type=checkbox]:checked::after{
  content: '\2714';
  outline: none;
  position: absolute;
  top: -1px;
  left: 1px;
  font-weight: 700;
  font-size: 12px;
}
.floating-cf .global-btn{
  border-image: none;
  border-color: var(--font-color-default);
  width: 200px;
  transition: var(--default-transition);
  z-index: 2;
  margin: auto;
  font-size: 16px;
  letter-spacing: .075em;
}
.floating-cf .global-btn:hover{
  border-image: linear-gradient(0deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
}
.floating-cf .global-btn::after{
  height: 53px;
  bottom: -14px;
}
.cf-info{
  display: flex;
  margin: 50px 0;
}
.cf-info li{
  display: flex;
  align-items: center;
  margin-right: 22px;
}
.cf-info li:last-child{
  margin-right: 0;
}
.cf-info li i{
  width: 18px;
  margin-right: 8px;
  color: var(--font-color-title);
}
.cf-info li a{
  color: var(--font-color-title);
  font-size: 15px;
  letter-spacing: .075em;
}
.cf-info li a:hover{
  color: var(--gradient-green);
}
.floating-cf .use-floating-validation-tip .wpcf7-not-valid-tip{
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
}
.floating-cf .wpcf7 form .wpcf7-response-output{
  position: absolute;
  width: 100%;
  margin: 0;
  text-align: center;
  bottom: -40px;
}
.floating-cf .wpcf7.js{
  position: relative;
}
/* Burger Menu */
.burger-menu{
  display: flex !important;
  position: fixed;
  height: 100%;
  width: 100%;
  right: -100%;
  top: 0;
  transition: var(--default-transition);
  z-index: 1000;
}
.burger-menu.show{
  right: 0;
}
.burger-menu .bg-img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
.burger-menu .overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(38deg, #348085 0%, #348085 0%, #2365ad 99%, #2365ad 100%);
  opacity: .90;
}
.burger-header{
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 22px;
  left: auto;
  right: auto;
  width: 100%;
  padding: 0 135px 20px;
  border-bottom: 1px solid #fff;
}
.burger-close{
  color: var(--font-color-light);
  font-size: 20px;
  transition: var(--default-transition);
  cursor: pointer;
}
.burger-close:hover{
  color: var(--font-color-title);
}
.burger-header .logo img{
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,.3));
}
.burger-menu .bg-logo{
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: .2;
}
#burger-nav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  padding: 0 135px;
  top: 220px;
  left: auto;
  right: auto;
  z-index: 2;
}
#burger-nav > li{
  margin-bottom: 65px;
  margin-right: 70px;
}
#burger-nav > li:last-child{
  margin-bottom: 0;
}
#burger-nav > li > a{
  color: var(--accent-green);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: .075em;
  font-weight: 600;
  margin-bottom: 22px;
  display: block;
}
#burger-nav > li > a:hover{
  color: var(--font-color-title);
}
#burger-nav > li .sub-menu a{
  color: var(--font-color-light);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .075em;
  margin-bottom: 22px;
  display: block;
}
#burger-nav > li .sub-menu a:hover{
  color: var(--font-color-title);
}
/* Footer */
.footer {
  position: relative;
  min-height: 700px;
  padding: 84px 0 60px;
}
.footer *{
  color: #e0e0e0;
}
.footer .bg-img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  filter: brightness(.34);
}
.footer a,
.footer button i,
.footer a i{
  transition: var(--default-transition);
}
.footer a:hover,
.footer button:hover i{
  color: var(--accent-green);
}
.footer .logo{
  margin-bottom: 60px;
}
.ftr-nav-row{
  display: flex;
  justify-content: space-between;
  max-width: 585px;
}
.ftr-title{
  font-family: var(--font-family-title);
  font-size: 24px;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
.ftr-contact{
  margin-top: 25px;
}
.ftr-contact li{
  display: flex;
  align-items: center;
  padding-bottom: 14px;
}
.ftr-contact li:last-child{
  padding-bottom: 0;
}
.ftr-contact li i{
  width: 20px;
  text-align: center;
  margin-right: 7px;
}
.ftr-contact a{
  font-size: 16px;
  letter-spacing: .01em;
}
#ftr-nav{
 column-count: 2; 
 column-gap: 55px;
 margin-top: 25px;
}
#ftr-nav li{
  padding-bottom: 14px;
}
#ftr-nav li:nth-child(3),
#ftr-nav li:nth-child(6){
  padding-bottom: 0;
}
#ftr-nav a{
  font-size: 16px;
  letter-spacing: .01em;
  text-transform: uppercase;
}
#ftr-nav .sub-menu{
  display: none;
}
.ftr-smi{
  margin: 50px 0;
  display: inline-flex;
}
.ftr-smi li{
  margin: 0 6px;
}
.ftr-smi li:first-child{
  margin-left: 20px;
}
.ftr-smi li:last-child{
  margin-right: 0;
}
.ftr-smi a{
  display: block;
  position: relative;
  color: #e0e0e0;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, .2));
  padding: 10px;
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 100%;
  background: var(--button-bg);
  transition: var(--default-transition);
}
.ftr-smi a:hover{
  background: transparent;
}
.ftr-smi a::before{
  content: '';
  position: absolute;
  opacity: 0;
  background: linear-gradient(180deg, var(--gradient-blue) 0%, var(--gradient-green) 100%);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: var(--default-transition);
}
.ftr-smi a:hover::before{
  opacity: 1;
}
.ftr-smi a::after{
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(180deg, var(--gradient-blue) 0%, var(--gradient-green) 100%);
  border-radius: 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
    mask-composite: exclude;
  pointer-events: none;
}
.footer .copyright{
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .05em;
  max-width: 500px;
  font-family: 'Poppins', sans-serif;
}
.ai-link{
  text-decoration: underline;
  font-weight: 700;
}
.ai-link:hover{
  text-decoration: underline;
}
.cc-icons{
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.cc-icons .ai-font-eho{
  font-size: 28px;
  margin-right: 15px;
}
.cc-icons .ai-font-realtor-mls{
  font-size: 36px;
}
.footer .form-col{
  padding-left: 0;
  padding-right: 15px;
  margin-left: -7px;
}
.footer .section-title{
  font-size: clamp(25px, 3.75vw, 60px);
}
.footer .section-title span{
  color: #e0e0e0;
  margin-left: 5px;
  padding-bottom: 20px;
}
.footer .section-title::after{
  background-image: none;
  background-color: #e0e0e0;
}
.ftr-form p{
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  margin: 28px auto;
  width: 90%;
}
.ftr-form input[type=text],
.ftr-form input[type=email],
.ftr-form input[type=tel],
.ftr-form textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  outline: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .01em;
  padding: 10px 0;
  width: 100%;
}
.ftr-form textarea{
  height: 75px;
  resize: none;
  margin-top: -10px;
  padding-right: 50px;

  -ms-overflow-style: none;
  scrollbar-width: none; 
}
.ftr-form textarea::-webkit-scrollbar {
  display: none;
}

.ftr-form .form-row{
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.ftr-form .form-row .wpcf7-form-control-wrap{
  width: 50%;
  margin-right: 20px;
}
.ftr-form .form-row .wpcf7-form-control-wrap:last-child{
  margin-right: 0;
}
.ftr-form .wpcf7-form-control-wrap{
  display: block;
  width: 100%;
}
.ftr-form .wpcf7.js{
  position: relative;
  margin-left: -4px;
  max-width: 460px;
}
.ftr-form .submit-btn{
  position: absolute;
  background: transparent;
  border: none;
  outline: none;
  bottom: 10px;
  right: 0;
}
.ftr-form .submit-btn i{
  font-size: 24px;
}
.ftr-form .wpcf7-spinner{
  position: absolute;
  bottom: 40px;
  right: 0;
  margin: 0;
}
.ftr-form .use-floating-validation-tip .wpcf7-not-valid-tip{
  position: absolute;
  color: #dc3232;
  width: auto;
  left: 0;
  top: 0;
}
.ftr-form .wpcf7 form .wpcf7-response-output{
  width: 100%;
  position: absolute;
  margin: 5px 0 0;
  text-align: center;
}
.footer .disclaimer{
  max-width: 460px;
  margin-top: 30px;
}
.footer .disclaimer p{
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: right;
  font-family: 'Poppins', sans-serif;
}

/* 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;
}
.fc-welcome .fc-desc h3{
    font-size: 1.17em !important;
     margin: .83em 0 !important;
     font-weight:700 !important;
}

/* 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;
}

/*section.hp-qs, section.hp-about, section.hp-work, section.hp-help, footer.footer{
    display: none;
}
section.hp-meet, section.hp-fp, section.hp-fc{
    opacity: 0; 
}*/

#agents-results .agents-col:first-child{
    display: none;
}

#ihf-main-container .glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

/*START TESTIMONIALS PAGE*/
.page-id-28 #content{
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.page-id-28 #breadcrumbs{
  width: 100%;
}
.page-id-28 .aios-testimonials-content .global-btn{
  width: 180px;
}
/* END TESTIMONIALS PAGE*/


/* START COMMUNITIES IP */
.post-aios-communities-danville .fc-highlight .hl-desc,
.post-aios-communities-triad .fc-highlight .hl-desc,
.post-aios-communities-bedford .fc-highlight .hl-desc{
  display: none;
}
.post-aios-communities-lynchburg .fc-highlight{
  display: none;
}
.post-aios-communities-burlington .fc-highlight{
  display: none;
}
.single-aios-communities .fc-highlight .hl-photo-wrap{
  justify-content: center;
}
.single-aios-communities .fc-welcome .bg-img{
  background-attachment: fixed !important;
}
.single-aios-communities.safari-true .fc-welcome .bg-img{
  background-attachment: scroll;
}
/* END COMMUNITIES IP */

#agents-results .agents-contact li a:hover{
  color: #fff !important;
  opacity: .7;
}
.aios-custom-ihomefinder-results-template #content-full .entry-title{
  width: 100% !important;
  padding: 0 !important;
}
.page-id-705 #breadcrumbs{
  margin-top: -70px !important;
}
#content .listings-printable-header span{
  display: none !important;
}

@media (min-width: 1400px){
  .header .container{
    width: 1160px;
  }
  .header.fixed-header .container{
    width: 1460px;
  }
}
@media only screen and (max-width: 1499px){
  .header.fixed-header .navigation{
    margin-right: 6%;
  }
}
@media only screen and (max-width: 1466px){
  .header.fixed-header .navigation{
    margin-left: 16%;
  }
  .header.fixed-header .nav > li{
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1366px){
  .header.fixed-header .navigation{
    margin-left: 3%;
    margin-right: 1%;
  }
}
@media only screen and (max-width: 1199px){
  .bg-img{
    background-attachment: scroll !important;
  }
  .header .navigation{
    margin-right: 4%;
    margin-left: 15%;
  }
  .header .nav > li{
    margin-right: 10px;
  }
  .header.fixed-header .nav:last-child > li:first-child{
    margin-left: 20px;
  }
  .header.fixed-header .nav:first-child > li:last-child{
    margin-right: 20px;
  }
  .header .nav > li > a{
    font-size: 12px;
  }
  .header .sub-menu a{
    font-size: 12px;
  }
  #ftr-nav{
    column-gap: 20px;
    padding-right: 15px;
  }
    .single-aios-communities.safari-true .fc-welcome .bg-img{
    background-attachment: scroll !important;
  }

}
  span.wpcf7-spinner {
    position: absolute;
    position: absolute;
    bottom: 40px;
    right: 0;
    margin: 0;
}

input#ihf-login-user-password {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: #636363;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

input#ihf_inforeq_password {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: #636363;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}
.single-post article#content .entry-title{
  font-size: 50px !important;
}
ul.sitemap-list .page-item-343,
ul.sitemap-list .page-item-340,
ul.sitemap-list .page-item-14,
ul.sitemap-list .page-item-18,
ul.sitemap-list .page-item-69,
ul.sitemap-list .page-item-342,
ul.sitemap-list .page-item-31,
ul.sitemap-list .page-item-33,
ul.sitemap-list .page-item-122,
ul.sitemap-list .page-item-19,
ul.sitemap-list .page-item-23,
ul.sitemap-list .page-item-705,
ul.sitemap-list .page-item-341,
ul.sitemap-list .page-item-24,
ul.sitemap-list .page-item-30{
  display: none;
}
.error404 #content .use-floating-validation-tip .wpcf7-not-valid-tip{
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
}
.error404 #content .wpcf7 form .wpcf7-response-output{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  text-align: center;
}
.leaflet-div-icon{
  border: none !important;
}
.aiosCommunitiesGalaxy__col a{
  display: block;
}

/* 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) {
  #pojo-a11y-toolbar{
    display: none;
  }
  .ip-banner canvas{
    height: auto;
  }
  .header{
    position: relative;
    padding-top: 52px;
    background: var(--primary);
  }
  .header .logo{
    opacity: 1;
    visibility: visible;
    max-width: none;
    max-height: none;
    text-align: center;
    padding: 25px;
  }
  .header .navigation,
  .header .nav{
    display: none;
  }
  .floating-smi{
    display: none;
  }
  .contact-btn{
    display: none;
  }
  .floating-cf{
    display: none !important;
  }
  .burger-menu{
    display: none !important;
  }
  .footer .logo{
    text-align: center;
  }
  .ftr-nav-row{
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
    max-width: none;
  }
  .ftr-contact li{
    justify-content: center;
  }
  .ftr-title{
    width: 100%;
    text-align: center;
  }
  .footer nav{
    margin-top: 40px;
  }
  #ftr-nav{
    column-count: 1;
    column-gap: 0;
    padding-right: 0;
    text-align: center;
  }
  #ftr-nav li:nth-child(3), 
  #ftr-nav li:nth-child(6){
    padding-bottom: 14px;
  }
  .ftr-smi{
    display: flex;
    justify-content: center;
  }
  .ftr-smi li:first-child{
    margin-left: 0;
  }
  .ftr-smi{
    margin: 20px 0 50px;
  }
  .footer .copyright{
    text-align: center;
    width: 100%;
    max-width: none;
  }
  .cc-icons{
    justify-content: center;
  }
  .footer .form-col{
    margin: 0;
    padding: 0;
  }
  .ftr-form{
    margin-top: 50px;
  }
  .footer .section-title{
    width: 100%;
    text-align: center;
  }
  .footer .section-title span{
    margin-left: 0;
  }
  .footer .section-title::after{
    margin-left: auto;
    margin-right: auto;
  }
  .ftr-form .wpcf7.js{
    margin-left: auto;
    margin-right: auto;
  }
  .ftr-form .form-row{
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  .ftr-form .form-row .wpcf7-form-control-wrap{
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .footer .disclaimer{ 
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  .footer .disclaimer p{
    text-align: center;
  }

  /* 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%;
  }
    .page-id-28 #content{
        display: block;
    }
    .page-id-28 #content .aios-testimonials-content{
        padding: 0 !important;
    }

  /* Breadcrumbs underlap */
  .single-format-standard article #breadcrumbs{
    margin-top: -65px !important;
  }
  .single-format-standard.postid-634 article #breadcrumbs{
    margin-top: -39px !important;
  }

  .single-post article#content .entry-title{
    font-size: clamp(24px, 5vw, 50px) !important;
  }
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }
    /* Breadcrumbs underlap */
    .page-id-585 #breadcrumbs,
    .page-id-619 #breadcrumbs,
    .page-id-612 #breadcrumbs,
    .page-id-607 #breadcrumbs,
    .page-id-599 #breadcrumbs{
      margin-top: -65px !important;
    }
}
@media only screen and (max-width: 580px) {
  /* Breadcrumbs underlap */
  .page-id-582 #breadcrumbs,
  .page-id-574 #breadcrumbs{
    margin-top: -65px !important;
  }

}
@media only screen and (max-width: 480px) {
  .footer .logo img{
    max-width: 280px;
    height: auto;
  }
  .ftr-form .wpcf7.js{
    width: 90%;
  }
  .footer .disclaimer{
    width: 90%;
  }

  /* Breadcrumbs underlap */
  .single-format-standard article #breadcrumbs{
    margin-top: -95px !important;
  }
  .single-format-standard.postid-634 article #breadcrumbs{
    margin-top: -65px !important;
  }
}
@media only screen and (max-width: 380px) {
    /* Breadcrumbs underlap */
    .single-format-standard.postid-654 article #breadcrumbs,
    .single-format-standard.postid-652 article #breadcrumbs,
    .single-format-standard.postid-648 article #breadcrumbs{
      margin-top: -120px !important;
    }
    .page-id-585 #breadcrumbs,
    .page-id-619 #breadcrumbs,
    .page-id-612 #breadcrumbs,
    .page-id-599 #breadcrumbs,
    .page-id-607 #breadcrumbs {
      margin-top: -95px !important;
    }
}


/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */