:root {
  /** Font default */
  --font-family-default: "Poppins", sans-serif;
  --font-family-title: 'Garamond';
  --font-size-default: 15px;
  --font-size-title: 60px;
  --font-color-default: #252525;
  --font-color-title: #123056;
  /** Use for input, button, and any other element */
  --primary: #123056;
  --secondary: #f8e218;
  --accent: #bababa;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: all 0.3s ease-in-out;
}

@font-face {
    font-family: 'Garamond';
    src: url('../../assets/fonts/Garamond-Bold.eot');
    src: url('../../assets/fonts/Garamond-Bold.eot?#iefix') format('embedded-opentype'),
        url('../../assets/fonts/Garamond-Bold.woff2') format('woff2'),
        url('../../assets/fonts/Garamond-Bold.woff') format('woff'),
        url('../../assets/fonts/Garamond-Bold.ttf') format('truetype'),
        url('../../assets/fonts/Garamond-Bold.svg#Garamond-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* 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; */
}


a, a:hover, a:link, a:active, a:focus {
  color: var(--font-color-default);
  outline: none;
  text-decoration: none;
}

.slick-slide, .slick-slide *, .slick-slide a {outline: none;}

.site_easing, #header_wrap a, .bm_info a, #burger_nav li a, #footer_wrap a {
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -ms-transition: var(--default-transition);
  -o-transition: var(--default-transition);
  transition: var(--default-transition);
}

#main-wrapper {
  position: relative;
  overflow: hidden;
}

.site_section {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
  .parallax_bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
    .safari-true .parallax_bg canvas,
    .mobile .parallax_bg canvas {
      background-attachment: scroll;
    }

.non_parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
  .non_parallax_bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.site_inner_container {
  position: relative;
  z-index: 3;
}
.canvas_img {
  position: relative;
}
  .canvas_img canvas {
    width: 100%;
    height: auto;
    display: block;
  }
  .canvas_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
.filter_white {
  filter: brightness(0) invert(1);
}


/* Global Site Title START */
.global_site_title {
  display: inline-block;
}
  .global_site_title h2,
  #content .global_site_title h2 {
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
  }
    .global_site_title h2 span,
    #content .global_site_title h2 span {
      display: block;
      margin-bottom: 4px;
      color: var(--accent);
      font-size: 27px;
      font-weight: 500;
      letter-spacing: 0.24em;
    }
    .global_site_title h2 strong,
    #content .global_site_title h2 strong {
      display: block;
      color: var(--primary);
      font-size: var(--font-size-title);
      font-weight: 700;
      font-family: var(--font-family-title);
      letter-spacing: 0.04em;
    }
  /* White Title */
  .global_site_title.white_title h2 strong,
  #content .global_site_title.white_title h2 strong {
    color: #ffffff;
  }
/* Global Site Title END */


/* Global Site Button START */
.global_site_btn {
  display: inline-block;
  max-width: 100%;
  position: relative;
}
  .global_site_btn a,
  .global_site_btn > div {
    width: auto;
    min-width: 236px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid var(--primary);
    transition: var(--default-transition);
  }
    .global_site_btn a:hover,
    .global_site_btn:hover > div {
      color: #ffffff;
      background-color: var(--primary);
    }
    .global_site_btn a span {
      display: inline-block;
      vertical-align: middle;
      position: relative;
    }
      .global_site_btn a span::before,
      .global_site_btn a span::after,
      .global_site_btn > div::before,
      .global_site_btn > div::after {
        width: 20px;
        height: 1px;
        content: '';
        display: inline-block;
        vertical-align: middle;
        background-color: var(--secondary);
        transition: var(--default-transition);
      }
        .global_site_btn a span::before,
        .global_site_btn > div::before {
          margin-right: 13px;
        }
        .global_site_btn a span::after,
        .global_site_btn > div::after {
          margin-left: 13px;
        }

    .global_site_btn input[type="submit"] {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      padding: 0;
      font-size: 0;
      outline: none;
      border: none;
      background: transparent;
    }

  /* Blue Button */
  .global_site_btn.blue_btn a,
  .global_site_btn.blue_btn > div {
    color: #ffffff;
    background-color: var(--primary);
  }
    .global_site_btn.blue_btn a:hover,
    .global_site_btn.blue_btn:hover > div {
      color: var(--primary);
      background-color: var(--secondary);
      border-color: var(--secondary);
    }
      .global_site_btn.blue_btn a:hover span::before,
      .global_site_btn.blue_btn:hover > div::before,
      .global_site_btn.blue_btn a:hover span::after,
      .global_site_btn.blue_btn:hover > div::after {
        background-color: var(--primary);
      }
/* Global Site Button END */



/* Header START */
#header_wrap {
  width: 100%;
  position: fixed;
  z-index: 1011;
  top: 0;
  left: 0;
  padding: 63px 0 20px;
  font-size: 0;
  transition: var(--default-transition);
  color: #ffffff;
  text-align: center;
}
  .header_inner {
    padding: 0 6.25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
    .header_logo {
      width: 32.5%;
      font-size: 0;
      text-align: left;
      position: relative;
    }
      .header_logo img {
        max-width: 100%;
        height: auto;
      }
      .default_logo img {
        -webkit-filter: brightness(0) invert(1) drop-shadow(5px 5px 5px #000000);
        filter: brightness(0) invert(1) drop-shadow(5px 5px 5px #000000);
      }
      .fixed_logo {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
    .header_right {
      width: 67.5%;
      text-align: right;
    }
      .header_contact_info {
        padding-bottom: 15px;
      }
      .header_contact_info > div {
        display: flex;
        align-content: center;
        justify-content: flex-end;
      }
        .headinfo {
          margin-left: 25px;
          text-shadow: -1px 2px 2px #000000;
        }
          .headinfo:first-child {
            margin-left: 0;
          }
          .headinfo a {
            color: inherit;
          }
            .headinfo a:hover {
              color: var(--secondary);
            }
          .headinfo i {
            font-size: 12px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 12px;
          }
            .headinfo i.ai-font-phone {
              font-size: 15px;
            }
          .headinfo span {
            display: inline-block;
            vertical-align: middle;
            font-size: 15.52px;
            font-size: 0.97vw;
            letter-spacing: 0.01em;
          }
/* Header END */


/* Fixed Header START */
#header_wrap.fixedhead {
  padding: 7px 0;
  background-color: var(--primary);
}
  #header_wrap.fixedhead::before {
    width: 74px;
    height: 65px;
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    background-image: url(../../assets/images/fixed-accent-logo.png);
    background-size: auto 100%;
    background-position: top right;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    transform: translate(0,-50%);
    opacity: 0.1;
  }
  #header_wrap.fixedhead .header_contact_info {
    display: none;
  }
  #header_wrap.fixedhead .fixed_logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #header_wrap.fixedhead .default_logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  #header_wrap.fixedhead #nav .sub-menu {
    padding-top: 21px;
  }
  #header_wrap.fixedhead #nav > li > a {
    text-shadow: none;
  }
/* Fixed Header END */


/* Navigation START */
.navigation {
  
}
#nav {
  
}
  #nav li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 18.5px;
    position: relative;
  }
    #nav li:last-child {
      padding-right: 0;
    }
    #nav li a {
      display: block;
      padding: 2px 0;
      color: #ffffff;
      font-size: 15px;
      font-size: 0.938vw;
      line-height: 20px;
      letter-spacing: 0.035em;
      text-transform: uppercase;
      position: relative;
    }
      #nav > li > a {
        text-shadow: -1px 2px 2px #000000;
      }
      #nav > li > a::after {
        width: 0%;
        height: 3px;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        background-color: var(--secondary);
        transition: var(--default-transition);
        opacity: 0;
      }
        #nav > li:hover > a::after {
          width: 83px;
          max-width: 85%;
          opacity: 1;
        }
      
    #nav .sub-menu {
      list-style: none outside none;
      margin: 0;
      display: none;
      padding: 9px 0 0;
      position: absolute;
      z-index: 100;
      width: 100%;
      min-width: 186px;
      text-align: center;
    }
      #nav > li > .sub-menu {
        left: -150%;
        right: -150%;
        margin: 0 auto;
      }
      #nav .sub-menu li {
        width: 100%;
        padding: 0;
        position: relative;
      }
        #nav .sub-menu a {
          color: #ffffff;
          font-size: 15px;
          display: block;
          padding: 10px 5px;
          line-height: 19px;
          letter-spacing: 0.04em;
          position: relative;
        }
          #nav .sub-menu a::before {
            width: 100%;
            height: 100%;
            content: '';
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            background-color: var(--primary);
            opacity: 0.47;
            transition: var(--default-transition);
          }
          #nav .sub-menu li:hover > a::before {
            opacity: 1;
          }
        #nav .sub-menu .sub-menu {
          margin-left: 100%;
          top: 0;
          padding: 0 !important;
        }
          #nav .sub-menu .sub-menu li:hover > a {
            color: #ffffff;
            background-color: var(--accent);
          }
/* Navigation END */


/* Floating SMI START */
.floating_smi {
  width: 45px;
  position: fixed;
  z-index: 100;
  top: 58%;
  top: 400px;
  right: 3.125%;
  transform: translate(0,-50%);
  color: #ffffff;
  font-size: 0;
  text-align: center;
}
  .floating_smi .aios-section-nav {
    display: none;
  }
    .floating_smi_links {
      display: block;
    }
    .floating_info {
      margin-top: 25px;
    }
      .floating_smi a {
        width: 45px;
        height: 45px;
        display: inline-block;
        margin: 10px 0;
        color: inherit;
        position: relative;
        overflow: hidden;
        border-radius: 50%;
        transition: var(--default-transition);
      }
        .floating_smi a::before {
          width: 100%;
          height: 100%;
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          border-radius: 50%;
          background-color: var(--secondary);
          transition: var(--default-transition);
          opacity: 0.55;
          pointer-events: none;
          transition: var(--default-transition);
        }
        .floating_smi a:hover::before {
          opacity: 1;
          background-color: var(--primary);
        }
        .floating_smi a span {
          font-size: 23px;
          display: block;
          line-height: 45px;
        }
          .floating_smi a span.ai-font-envelope-f {
            font-size: 12px;
          }
          .floating_smi a span.ai-font-phone {
            font-size: 16px;
          }

        .nav-active-section-hp_cta_wrap,
        .nav-active-section-hp_areas_wrap,
        .nav-active-section-hp_featprop_wrap,
        .nav-active-section-hp_about_wrap,
        .nav-active-section-hp_statistics_wrap {
          color: var(--primary);
        }

        /* Hover */
        .floating_smi a:hover {
          color: #ffffff;
        }
/* Floating SMI END */



/* Footer START */
#footer_wrap {

}
  /* Footer Contact Form START */
  #footer_form_wrap {
    padding: 115px 0 125px;
    text-align: center;
  }
    .footer_form_bg {
      background-color: #000000;
    }
      .footer_form_bg canvas {
        opacity: 0.16;
      }
      .contact_form_wrap {
        width: 72%;
        max-width: 815px;
        margin: 0 auto;
      }
        .contact_form_title.global_site_title h2 span {
          color: #ffffff;
          margin-bottom: 10px;
        }
        .contact_form {
          font-size: 0;
          margin: 50px auto 0;
          position: relative;
          text-align: center;
        }
          .contact_form form {
            position: relative;
          }
          .form_field_wrap {
            width: 100%;
            display: inline-block;
            vertical-align: top;
            margin: 0 auto 15px;
            position: relative;
          }
            .form_field {
              display: inline-block;
              vertical-align: top;
            }
              .form_field:first-child {
                margin-left: 0;
              }
              .form_field_long {
                width: 100%;
              }
              .form_field_short {
                width: calc(50% - 6px);
                margin-left: 12px;
              }
                .form_field_short:first-child {
                  margin-left: 0;
                }
              .form_field input, .form_field textarea {
                width: 100%;
                height: 50px;
                padding: 0 20px;
                color: #707070;
                font-size: 14px;
                letter-spacing: 0.04em;
                border: none;
                background-color: #ffffff;
                outline: none;
                -webkit-appearance: none;
                -moz-appearance:    none;
                appearance:         none;
              }
              .form_field textarea {
                height: 110px;
                padding-top: 20px;
                resize: none;
                overflow-y: scroll;
                -ms-overflow-style: none;  /* IE and Edge */
                scrollbar-width: none;  /* Firefox */
              }
                .form_field textarea::-webkit-scrollbar {
                    display: none;
                }
          .form_submit {
            margin-top: 24px;
          } 
            .contact_form .ajax-loader, .contact_form .wpcf7-spinner {
              position: absolute;
              left: 0;
              right: 0;
              margin: 0 auto !important;
              bottom: -50px;
            }
            .contact_form .wpcf7-form-control-wrap {
              display: block;
            }
            .contact_form .use-floating-validation-tip span.wpcf7-not-valid-tip {
              width: auto;
              max-width: 100%;
              font-size: 12px;
              position: absolute;
              top: 10px;
            }
            .contact_form div.wpcf7-response-output,
            .contact_form .wpcf7 form .wpcf7-response-output {
              position: absolute;
              left: 0;
              right: 0;
              margin: 15px auto 0;
              color: #ffffff !important;
              font-size: 14px;
              text-align: center;
            }
  /* Footer Contact Form END */

  /* Footer Bottom START */
  #footer_bottom_wrap {
    padding: 89px 0 81px;
    color: #ffffff;
    background-color: var(--primary);
    text-align: center;
  }
    #footer_bottom_wrap a {
      color: inherit;
    }
      #footer_bottom_wrap a:hover {
        color: var(--secondary);
      }
      .footer_logo {
        font-size: 0;
        margin-bottom: 50px;
      }
        .footer_logo img {
          max-width: 100%;
          height: auto;
        }
      .footer_info {

      }
        .footinfo {
          display: inline-block;
          vertical-align: middle;
          margin-right: 26px;
        }
          .footer_info.address {
            margin-top: 40px;
          }
            .footer_info.address .footinfo {
              margin-right: 200px;
            }
            .footinfo:last-child {
              margin-right: 0 !important;
            }
          .footinfo i {
            font-size: 9px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 9px;
          }
            .footinfo i.ai-font-phone {
              font-size: 11px;
            }
          .footinfo strong {
            display: block;
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-transform: uppercase;
          }
          .footinfo span {
            font-size: 15px;
            font-weight: 300;
            display: inline-block;
            vertical-align: middle;
            letter-spacing: 0.02em;
          }
      .footer_disclaimer {
        margin-top: 40px;
        padding: 0 7% 55px;
        font-size: 12px;
        line-height: 2.2;
        letter-spacing: 0.02em;
        border-bottom: 1px solid rgba(255,255,255,0.28);
      }
      .footer_navigation {
        padding-top: 25px;
      }
        .footernav li {
          display: inline-block;
          vertical-align: middle;
          padding: 0 25px;
        }
          .footernav li:first-child {
            padding-left: 0;
          }
          .footernav li:last-child {
            padding-right: 0;
          }
          .footernav li a {
            font-size: 15px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
          }
      .footer_copyright {
        margin-top: 15px;
        font-size: 11px;
        line-height: 1.8;
        letter-spacing: 0.035em;
      }
      .footer_mls {
        margin-top: 15px;
        font-size: 0;
      }
        .footer_mls span {
          display: inline-block;
          vertical-align: middle;
          font-size: 27px;
        }
          .footer_mls span.ai-font-eho {
            font-size: 22px;
            margin-right: 9px;
          }

/* Footer END */


/* 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;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .archive-title,
#content .entry-title {
  color: var(--font-color-title);
  font-size: var(--font-size-title);
  font-weight: 700;
  font-family: var(--font-family-title);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#content .archive-title span,
#content .entry-title span {
  color: var(--accent);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.24em;
}
#content .archive-title strong,
#content .entry-title strong {
  display: block;
  color: var(--font-color-title);
  font-size: var(--font-size-title);
  font-weight: 700;
  font-family: var(--font-family-title);
  letter-spacing: 0.04em;
}
#content .archive-title a,
#content .entry-title a {
  display: inline-block;
}
#content .archive-title a:hover span,
#content .entry-title a:hover span,
#content .archive-title a:hover strong,
#content .entry-title a:hover strong {
  color: var(--secondary);
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  color: var(--font-color-title);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

#content .entry a:hover {
  color: var(--secondary);
}

ul.sitemap-list li.page-item--1 {
  display: none;
}

/* 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 {
  display:none !important;
}
/* POJO END */


section#hp_cta_wrap, section#hp_about_wrap, section#hp_statistics_wrap, section#hp_social_media_wrap, footer#footer_wrap{
    display: none;
}
section#hp_areas_wrap, section#hp_featprop_wrap{
    opacity: 0; 
}


.aios-communities-page .aiosCommunitiesGalaxy__col a {
  display: block;
}

.aios-communities-page .aiosCommunitiesGalaxy__col .aiosCommunitiesGalaxy__content h2 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

#ai-classic-contact-wrap .entry-title {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
#ai-classic-contact-wrap .ai-classic-contact-contents h2 img {
  max-width: 100%;
  height: auto;
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-content p {
  color: var(--font-color-default);
  font-size: var(--font-size-default);
  font-weight: 300;
  line-height: 1.7;
}

#content #agents-results .agents-name {
  font-weight: 700;
  font-family: var(--font-family-title);
  letter-spacing: 0.04em;
}
#content #agents-results .agents-name a:hover {
  color: var(--secondary);
}


.ai-classic-about-cta {
  padding-top: 50px;
}
.ai-classic-about-greetings h1 img {
  max-width: 100%;
  height: auto;
}

.aios-smf-theme-three .aios-smf-header #theme-title h2 {
  color: var(--primary);
  font-family: var(--font-family-title);
  letter-spacing: 0.04em !important;
}

#ai-classic-contact-wrap .ai-classic-contact-info-wrap .ai-classic-contact-image canvas {
  background-size: contain;
  background-repeat: no-repeat;
}
#ai-classic-contact-wrap .ai-classic-contact-informations li:first-child a:hover {
  color: var(--secondary);
}


/* Our Offices START */
.no-communities-found {
  font-size: 16px;
}

.page-template-template-fullwidth .aios-communities-page {
  padding: 30px 0 0;
}

.page-template-template-fullwidth .aiosCommunitiesBeacon__container {
  padding: 0 20px;
}

.ip_office {
  padding: 10px 0 0;
}

.ip_office__row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -6px;
  justify-content: center;
}

.ip_office__col {
  width: calc(100% / 3);
  padding: 6px;
}

.ip_office__col a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.ip_office__col a:hover .ip_office__img img {
  transform: scale(1.2);
}

#content .ip_office__col a:hover .ip_office__content h2 {
  bottom: 50%;
  transform: translate(0, 50%);
}

.ip_office__col a:hover .ip_office__content::before {
  opacity: .88;
}

.ip_office__col a:hover .ip_office__content::after {
  opacity: 0;
}

.ip_office__col.aios-communities-show-overlay .ip_office__content::after {
  opacity: 0.5;
}

.ip_office__col.aios-communities-has-text-shadow .ip_office__content h2 {
  text-shadow: 1px 2px 2px #000;
}

.ip_office__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ip_office__img canvas {
  display: block;
  width: 100%;
}

#content .ip_office__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s ease;
  max-width: 100%;
}

.ip_office__content {
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100% - 2.5vw);
  z-index: 5;
  transform: translate(0, -50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
}

#content .ip_office__content h2 {
  margin: 0;
  position: absolute;
  z-index: 5;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  bottom: 1.375vw;
  left: 0;
  transition: all 0.6s ease;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.24em;
}

.ip_office__content::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary);
  opacity: 0;
  transition: all 0.6s ease;
}

.ip_office__content::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  opacity: 0;
  transition: all 0.6s ease;
}

.ip_office .ai-communities-pagination {
  padding: 50px 0;
}

.ip_office .ai-communities-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip_office .ai-communities-pagination ul li {
  position: relative;
  display: block;
  margin: 15px 0;
  padding: 0 30px;
}

.ip_office .ai-communities-pagination ul li a i {
  transition: all 0.4s ease-in-out;
  width: 46px;
  height: 44px;
  font-style: normal;
  color: #898989;
}

.ip_office .ai-communities-pagination ul li a:hover {
  color: var(--secondary);
}

.ip_office .ai-communities-pagination ul li a:hover i {
  color: var(--secondary);
}
/* Our Offices END */


.r-housing {
	display: flex;
	gap: 5px;
}
.r-housing span {
	font-size: 40px;
}


/* Communities Button START */
.ip_comm_btns_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ip_comm_btn {
  width: 48%;
}
.ip_comm_btn.global_site_btn a {
  padding: 0 5px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
}
/* Communities Button END */


#IDX-main {
  padding-bottom: 60px;
}
.IDX-wrapper-standard #IDX-advancedSearchFields label {
  padding-left: 3px;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  width: auto;
  position: absolute;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

/* Agents START */
.aiosp-wrap .aiosp-ref-\#agents-popup-form .agents-popup-form input[type=text],
.aiosp-wrap .aiosp-ref-\#agents-popup-form .agents-popup-form input[type=email],
.aiosp-wrap .aiosp-ref-\#agents-popup-form .agents-popup-form input[type=tel],
.aiosp-wrap .aiosp-ref-\#agents-popup-form .agents-popup-form textarea {
  outline: none;
}
.aiosp-wrap .aiosp-ref-\#agents-popup-form .agents-popup-form input[type=submit]:hover {
  color: var(--secondary);
}
/* Agents END */


/* Social Media Wall START */
.aios-smf-theme-three .aios-smf-group .aios-smf-group-items li .aios-smf-group-item .filter-view-status {
  text-shadow: -1px 2px 2px #000000;
}
/* Social Media Wall END */


ul.sitemap-list li.page-item-120 {
  display: none;
}


/* RESPONSIVE */
@media only screen and (min-width: 992px) {
  .post-120 .IDX-category-results.IDX-wrapper-standard:not(.IDX-page-agent) {
    height: auto;
  }
  .post-120 .IDX-wrapper-standard .idx-results.idx-results--map .idx-results__content {
    height: 780px;
  }
}

/* Small Desktop Screens */
@media only screen and (max-width: 1440px) {
  .floating_smi {
    right: 1.125%;
  }

  /* Communities Button START */
  .ip_comm_btn.global_site_btn a {
    font-size: 12px;
  }
  /* Communities Button END */

}


@media only screen and (max-width: 1366px) {
  #nav li {
    padding: 0 15px;
  }
}


@media only screen and (max-width: 1280px) {
  .floating_smi {
    right: 5px;
  }
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
  .parallax_bg canvas {
    background-attachment: scroll;
  }
  .header_inner {
    padding: 0 3.25%;
  }
  #ai-classic-contact-wrap .entry-title {
    max-width: 970px;
  }
}


/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
  
  #pojo-a11y-toolbar {
    display: none;
  }

  #header_wrap {
    position: relative;
    z-index: 2;
    margin-top: 52px;
    padding: 20px 0;
    background-color: var(--primary);
  }
  .header_logo {
    width: 100%;
    text-align: center;
  }
  .default_logo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  #footer_form_wrap {
    padding: 100px 0;
  }
  .contact_form_wrap {
    width: 100%;
  }

  .footinfo {
    display: block;
    margin: 10px 0;
  }
  .footer_info.address .footinfo {
    margin: 25px 0 0;
  }
  .footer_info.address .footinfo:nth-child(2) {
      max-width: 260px;
      margin-left: auto;
      margin-right: auto!important;
  }
  .footinfo span {
    line-height: 1.3;
  }
  .footernav li {
    display: block;
    padding: 5px 0;
  }

  /* 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%;
  }

  #ai-classic-contact-wrap .entry-title {
    max-width: 750px;
  }


  .ip_office__col {
    width: calc(100% / 2)
  }

  /* Communities Button START */
  .ip_comm_btns_wrap {
    flex-flow: column;
  }
  .ip_comm_btn {
    width: 100%;
    max-width: 330px;
    margin: 5px auto;
  }
  /* Communities Button END */

  #ai-classic-about-wrapper .ai-classic-email-phone span {
    display: block;
  }
  #ai-classic-about-wrapper .ai-classic-agent-contact-info {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Agents START */
  #content #agents-results .agents-col:nth-child(even) .agents-main {
    flex-direction: row;
  }
  #content #agents-results .agents-contact {
    justify-content: center;
  }
  #content #agents-results .agents-contact li {
    letter-spacing: 0;
  }
  #content #agents-single .agents-img {
    max-width: 340px;
    margin: 0 auto;
  }
  #content #agents-single .agents-contact li.agents-contact-half {
    width: auto;
  }
  #content #agents-single ul.agents-contact li > div {
    padding-left: 0;
    padding-right: 0;
  }
  /* Agents END */

  .idx-pagination {
    margin-left: 0 !important;
    justify-content: center;
  }

  #ai-classic-contact-wrap .ai-classic-contact-informations li:last-child a {
    margin: 0 3px !important;
  }

}


/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }

  .ip_office__col {
    width: 100% !important
  }

  #IDX-detailsHeader .vp-player .eng-play, #IDX-detailsHeader .vp-player .esp-play {
    font-size: 12px;
  }
}


/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
  :root {
    --font-size-title: 42px;
  }
  #content .archive-title strong,
  #content .entry-title strong {
    font-size: 35px;
  }
  #ai-classic-contact-wrap {
    padding-top: 0 !important;
  }
  #ai-classic-contact-wrap .ai-classic-contact-informations li:first-child {
    flex-flow: column;
  }
  #ai-classic-contact-wrap .ai-classic-contact-informations li:last-child a {
    margin: 0 4px;
  }

  .ip_comm_btn.global_site_btn a {
    font-size: 11px;
  }

  /* Agents START */
  #content #agents-results .agents-contact li {
    font-size: 13px;
  }
  #content #agents-single .agents-contact li.agent-email-address {
    margin-top: 0;
  }
  /* Agents END */

  #IDX-main.IDX-category-details .IDX-inline-buttons,
  #IDX-main.IDX-category-details .col {
    overflow: scroll;
  }
}
