:root {
  /** Font default */
  --font-family-default: "Poppins", sans-serif;
  --font-family-title: "Montserrat", 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: #05b3c5;
  --secondary: #6fbf7a;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  margin: 0;
  overflow-x: hidden;
}

/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #FFFFFF;
  color: var(--font-color-default);
  margin: 0;
  overflow-x: hidden;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

header,
a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.text-white {
  color: #fff !important;
}

.filter-white {
  filter: brightness(0) invert(1);
}

.filter-black {
  filter: brightness(0);
}

.filter-gray {
  filter: grayscale(1);
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.dir-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.dir-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-flow: column-reverse wrap;
  flex-flow: column-reverse wrap;
}

.dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
}

.ai-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ai-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.ai-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jc-right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

.jc-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.jc-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.jc-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.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;
}

.non_parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  font-size: 0;
}

.non_parallax_bg canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax_bg canvas {
  background-attachment: fixed;
}

.safari-true .non_parallax_bg canvas {
  background-attachment: scroll !important;
}

body #pojo-a11y-toolbar {
  bottom: 0 !important;
  top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
  top: auto !important;
  bottom: 0 !important;
}

button:focus-visible,
a:focus-visible {
  outline-style: solid !important;
  outline-width: 5px !important;
  outline-color: red !important;
  transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background {
  display: none !important;
}

body.pojo-a11y-readable-font a[class^=ai-font],
body.pojo-a11y-readable-font span[class^=ai-font],
body.pojo-a11y-readable-font i[class^=ai-font],
body.pojo-a11y-readable-font em[class^=ai-font] {
  font-family: agentimage !important;
}

.site-title {
  position: relative;
  width: fit-content;
}

.site-title.is-center {
  margin: auto;
}

.site-title.has-accent::before {
  content: "";
  position: absolute;
  width: 3px;
  height: clamp(40px, 4.5vw, 61px);
  top: 2px;
  left: 10px;
  background: var(--secondary);
  z-index: 1;
}

.site-title.has-accent::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 25vh;
  top: 2px;
  left: 11px;
  background: #4f8a8f;
  opacity: 38%;
}

.site-title h2 {
  font-family: var(--font-family-title);
  font-size: clamp(46px, 4.6875vw, 75px);
  line-height: 1.1;
  color: #5d5d5d;
  text-transform: uppercase;
}

.site-title h2 span {
  display: block;
  font-family: var(--font-family-default);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.94em;
  color: #9c9c9c;
  padding-left: 8px;

}

.site-title.is-text-white h2,
.site-title.is-text-white h2 span {
  color: #fff;
}

.site-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(125px, 11vw, 165px);
  height: clamp(46px, 4vw, 54px);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--secondary);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: none;
  outline: none;
}

.site-btn.is-text-white {
  color: #fff;
  border-color: #fff;
}

.site-btn:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.site-btn.is-text-white:hover {
  background: #fff;
  color: var(--primary);
}

.slick-arrows {
  pointer-events: none !important;
}

.slick-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
  pointer-events: auto;
  color: #8e8e8e;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slick-arrows.is-text-white .slick-arrow {
  color: #fff;
}

.slick-arrows.is-text-white .slick-arrow img {
  filter: brightness(0) invert(1);
  opacity: 30%;
}

.slick-prev {
  margin-bottom: 16px;
}

.slick-next {}

.slick-prev img {
  transform: scaleX(-1);
}

.slick-arrow:hover {
  opacity: 0.75;
}

.slick-list {
  font-size: 0;
}

/* Global */

/**/
.header {
  z-index: 5;
  position: fixed;
  top: 0;
  width: 100%;
  padding: min(4vw, 63px) 0 24px;
}

.hdr-inner {
  /* height: 100%; */
  width: min(95%, 1442px);
  margin: auto;
  gap: 20px;
}

.hdr-logo {
  width: min(34.2%, 492px);
  padding-top: 2px;
}

.hdr-logo ul {
  gap: 22px;
  gap: 4.4715447154472%;
}

.hdr-logo .site-logo {
  width: 56.910569105691%;
}

.hdr-logo .site-broker {
  width: 38.617886178862%;
}

.hdr-logo img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hdr-info {
  /* width: 950px; */
  width: calc((100% - min(34.2%, 492px) - 20px));
}

.hdr-contact {}

.hdr-contact ul {
  padding-bottom: min(1.25vw, 20px);
}

.hdr-contact ul li {
  padding: 0 min(0.8125vw, 13px);
  border-right: 1px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hdr-contact ul li:last-child {
  padding-right: 0;
  border: none;
}

.hdr-contact ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  letter-spacing: 0.0125em;
  color: #fff;
}

.hdr-contact ul li a:hover {
  opacity: 0.75;
}

.hdr-contact ul li a i {}

.hdr-contact ul li a i.ai-font-phone {
  font-size: 11px;
  margin-right: 8px;
  margin-top: 2px;
}

.hdr-contact ul li a i.ai-font-envelope-filled-a {
  font-size: 8px;
  margin-right: 6px;
  margin-top: 2px;
}

.hdr-nav {}

.hdr-nav ul#nav {
  font-size: 0;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: min(1.8vw, 31.5px);
}

.hdr-nav ul#nav>li {
  position: relative;
}

.hdr-nav ul#nav>li>a {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  position: relative;
  text-decoration: none;
}

.hdr-nav ul#nav>li.header-hidden {
  display: none;
}

.hdr-nav ul#nav>li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  height: 2px;
  width: calc(100% + 8px);
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hdr-nav ul#nav>li:hover::before {
  opacity: 1;
}

.hdr-nav ul#nav li ul.sub-menu {
  display: block;
  position: absolute;
  left: -150%;
  right: -150%;
  text-align: center;
  padding: 0;
  margin: 0 auto !important;
  list-style: none outside none;
  width: 100%;
  min-width: 172px;
  opacity: 0;
  background: transparent;
  padding-top: 30px;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.hdr-nav ul#nav li#menu-item-66 ul.sub-menu {
  min-width: 300px;
}

.hdr-nav ul#nav>li:hover>ul.sub-menu {
  padding-top: 26px;
  opacity: 1;
  pointer-events: auto;
}

.hdr-nav ul#nav li ul.sub-menu li {
  line-height: 1;
  width: 100%;
  padding: 0;
  position: relative;
}

.hdr-nav ul#nav li ul.sub-menu li a {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #585858;
  /* height: 30px; */
  z-index: 4;
  background: #fff;
  padding: 8px 10px;
}

.hdr-nav ul#nav li ul.sub-menu li a:hover {
  color: #fff;
  background: var(--primary);
}

.hdr-nav ul#nav>li>ul.sub-menu>li>ul.sub-menu {
  padding: 0;
  right: 0;
  left: 95%;
  top: 0;
}

.hdr-nav ul#nav>li>ul.sub-menu>li:hover>ul.sub-menu {
  opacity: 1;
  pointer-events: auto;
  left: 100%;
}

.hdr-fixed {
  background: #fff;
  padding-top: 22px;
}

.hdr-fixed .hdr-logo .site-logo img {
  filter: none;
}

.hdr-fixed .hdr-contact ul li {
  border-right-color: #585858;
}

.hdr-fixed .hdr-contact ul li a,
.hdr-fixed .hdr-nav ul#nav>li>a {
  color: #585858;
}

.hdr-fixed .hdr-nav ul#nav>li::before {
  background: #585858;
}

/**/
/**/
.ftr-cf {
  /* height: 717px; */
  background: #111111;
  padding: clamp(70px, 7vw, 101px) 0;
  overflow: hidden;
}

.cf-bg {
  opacity: 11%;
  z-index: 0;
}

.cf-wrap {
  margin: auto;
  width: min(80%, 856px);
}

.cf-title .site-title {
  padding-left: 22px;
}

.cf-title .site-title.has-accent::before {
  left: 2px;
  top: auto;
  bottom: 11px;
}

.cf-title .site-title.has-accent::after {
  top: auto;
  bottom: 10px;
  left: 2px;
  background: #fff;
  opacity: 23%;
}

.cf-form {}

.cf-form form .info-holder {}

.cf-form form .info-item {
  width: 100%;
  padding: 4px min(1.3vw, 20.5px);
}

.cf-form form .info-item.ii-short {
  width: 50%;
}

.cf-form>.wpcf7 {
  position: relative;
}

.cf-form form input,
.cf-form form textarea {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  height: clamp(60px, 7vw, 78px);
  font-size: clamp(12px, 1vw, 14px);
  color: #fff;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.04em;
  background: transparent;
  padding: 0;
}

.cf-form form textarea {
  height: clamp(110px, 9vw, 137px);
  resize: none;
  padding-top: clamp(21px, 2.5vw, 38px);
}

.cf-btn {
  padding-top: 41px;
}

.cf-btn .site-btn {
  width: 177px;
}

.cf-form form .wpcf7-spinner {
  position: absolute;
  bottom: 65px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cf-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  right: auto;
  z-index: 3;
  font-size: clamp(12px, 1vw, 14px);

}

.cf-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  width: calc(100% - min(2.6vw, 41px));
  left: 0;
  right: 0;
  color: #fff;
  top: calc(100% + 20px);
  margin: auto;
  font-size: clamp(12px, 1vw, 14px);
}

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

/**/
/**/
.ftr {
  /* height: 592px; */
  background: #06a7b8;
  padding: 70px 0 30px;
}

.ftr-bg {
  opacity: 15%;
  z-index: 0;
}

.ftr-wrap {}

.ftr-wrap>div,
.ftr-top,
.ftr-bottom {
  width: min(90%, 1280px);
  margin: auto;
}

.ftr-logo {
  width: 100%;
  max-width: 480px;
  margin: auto;
}

.ftr-logos {}

.ftr-logos ul {
  gap: 11px;
  padding: 27px 7px;
  padding-left: 0;
}

.ftr-contact {}

.ftr-contact ul {
  padding-top: 26px;
  gap: min(2.125vw, 34px);
}

.ftr-contact ul li {
  text-align: center;
}

.ftr-contact ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0125em;
  color: #fff;
  text-align: center;
}

.ftr-contact ul li a i {}

.ftr-contact ul li a i.ai-font-phone {
  font-size: 11px;
  margin-right: 8px;
}

.ftr-contact ul li a i.ai-font-envelope-filled-a {
  font-size: 9px;
  margin-right: 13px;
}

.ftr-contact ul li a i.ai-font-location-c {
  margin-right: 11px;
}

.ftr-disclaimer {
  padding: 9px 0;
}

.ftr-disclaimer p {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: 0.009em;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.ftr-disclaimer p a {
  color: #fff;
}

.ftr-wrap hr {
  margin: 25px auto;
  border-top-color: #fff;
  opacity: 28%;
}

.ftr-nav {}

.ftr-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(2.53125vw, 40.5px);
}

.ftr-nav ul li {
  text-align: center;
}

.ftr-nav ul li a {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.ftr-nav .sub-menu {
  display: none;
}

.ftr-copyright {
  padding-top: 15px;
}

.ftr-copyright p {
  font-size: clamp(11px, 0.875vw, 12px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.035em;
  color: #fff;
  text-align: center;
}

.ftr-copyright p span {
  text-transform: uppercase;
}

.ftr-copyright p a {
  color: #fff;
}

.ftr-mls {
  padding-top: 13px;
  color: #fff;
  font-size: 29px;
  gap: 13px;
}

.ftr-mls i.ai-font-eho {
  font-size: 23px;
  margin-bottom: 2px;
}

.ftr-contact ul li a:hover,
.ftr-disclaimer p a:hover,
.ftr-nav ul li a:hover,
.ftr-copyright p a:hover {
  opacity: 0.75;
}

/**/

/*******************************************************
 *
 * 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);
  background: rgba(0, 0, 0, 0.17);

}

.page-id-50 .ip-banner::before,
.page-id-60 .ip-banner::before {
  background: rgba(0, 0, 0, 0.17);
}

.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;
}

#inner-page-wrapper {
  overflow: hidden;
}

#inner-page-wrapper,
#content {
  opacity: 0;
}

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

#content .entry-title,
#content .archive-title {
  font-family: var(--font-family-title);
  font-size: clamp(50px, 5vw, 75px);
  font-weight: 400;
  line-height: 1.1;
  color: #5d5d5d;
  text-transform: uppercase;
  margin: 30px 0;
  position: relative;
}

#content .entry-title span,
#content .archive-title span {
  display: block;
  font-family: var(--font-family-default);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.94em;
  color: #9c9c9c;
  padding-left: 8px;
}

#content .entry-title::before,
#content .archive-title::before {
  content: "";
  position: absolute;
  width: 3px;
  height: clamp(40px, 4.5vw, 61px);
  bottom: 5px;
  left: -15px;
  background: var(--secondary);
  z-index: 1;
}

#content .entry-title::after,
#content .archive-title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40vh;
  bottom: 5px;
  left: -14px;
  background: #4f8a8f;
  opacity: 38%;
}

.single-aios-communities #content .entry-title::before,
.single-aios-communities #content .archive-title::before,
.single-aios-communities #content .entry-title::after,
.single-aios-communities #content .archive-title::after {
  display: none;
}


.page-id-50 #ip-amante-ii-contact {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0 15px;
  width: 100%;
  max-width: 1600px;
  margin: auto;
}

.page-id-50 #content .site-title h2 {
  font-size: clamp(46px, 4.6875vw, 75px);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

.page-id-50 #content .site-title h2 span {
  margin: 0;
}

.page-id-50 #content .aios-contact-form input[type="submit"] {
  border-width: 2px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.12em;
  outline: none;
  height: 60px;
  width: 140px;
  padding: 0;
}

.page-id-50 #content .aios-contact-form input[type="submit"]:hover {
  color: #fff;
}

.page-id-50 #content .aios-contact-form .wpcf7-spinner {
  position: absolute;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 75px;
}

/** Blog Category */
.category-blog #content .archive-list {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}

.category-blog #content .archive-list:before,
.category-blog #content .archive-list:after {
  display: none;
}

.category-blog #content .archive-list>article {
  float: none;
}

.category-blog #content .archive-list .post {
  border-bottom: none;
}

.category-blog #content .archive-list .archive-thumbnail,
.category-blog #content .archive-list .archive-content {
  width: 100%;
}

.category-blog #content .archive-list .archive-thumbnail a {
  display: block;
  outline: none;
}

.category-blog #content .archive-list .archive-thumbnail canvas {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.category-blog #content .archive-list .article-long .archive-thumbnail {
  width: 60%;
}

.category-blog #content .archive-list .article-long .archive-has-thumbnail {
  width: 37%;
  margin-left: 3%;
}

.category-blog #content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
  margin-top: 0;
  font-size: 32px;
}

.category-blog #content .archive-list .article-long p {
  font-size: 22px;
}

.category-blog #content .archive-more {
  font-style: normal;
  text-decoration: none;
  width: 190px !important;
  text-transform: uppercase;
}

.category-blog article.col-md-12.article-long {
  margin-bottom: 20px;
}

.category-blog .global-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 54px;
  max-width: 100%;
  background: var(--secondary);
  color: #fff;
}

.category-blog .global-button:hover {
  background: var(--primary);
  transition: all 0.35s ease-in-out;
}

.category-blog .archive-subtitle a {
  color: #5d5d5d;
}

.category-blog .archive-subtitle a:hover {
  color: var(--primary);
}

.ihf-container-modal {
  --aios-ihf-template-global-page-primary-color: var(--aios-ihf-template-details-page-primary-color);
  --aios-ihf-template-global-page-secondary-color: var(--aios-ihf-template-details-page-secondary-color);
}

/** Blog Category End */

.single-aios-communities .fl-title .site-title {
  margin: auto;
  text-align: left;
}

.single-aios-communities .fl-content .community-content {
  text-align: center;
}

.grecaptcha-badge {
  z-index: 99999;
}

body.home .qs-field .bootstrap-select.btn-group .dropdown-menu {
  top: 100%;
  bottom: auto;
}

body.home .qs-field  .dropdown-menu .dropdown-menu.inner{
  max-height: 210px !important;    
}

body.home .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
}

#ip-fl .fl-pagination ul li:not(.current) a:hover {
  background: transparent !important;
  color: var(--primary);
}

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

#inner-page-wrapper:has(.ihf-advanced-property-search) {
  overflow: visible;
}

.error-page-cf-wrap .wpcf7-not-valid-tip {
  width: auto;
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px;
  display: none;
}

.error-page-cf-wrap .wpcf7-not-valid-tip:last-of-type {
  display: block;
}

.error-page-cf-wrap .wpcf7-response-output {
  text-align: center;
}

/* 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: 1199px) {
  .hdr-nav ul#nav {
    gap: min(1vw, 15px);
  }

  .hdr-contact ul li a,
  .hdr-nav ul#nav>li>a,
  .hdr-nav ul#nav li ul.sub-menu li a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 991px) {
  #pojo-a11y-toolbar {
    display: none;
  }

  .site-title {
    text-align: center;
    margin: auto;
  }

  #content .entry-title,
  #content .archive-title,
  .site-title h2 {
    font-size: 37px;
  }

  .site-title h2 span {
    padding: 0 0 5px;
  }

  .site-btn {
    width: fit-content !important;
    height: auto;
    padding: 20px 30px;
    font-size: 13px;
    margin: auto;
  }

  #content .entry-title::before,
  #content .archive-title::before {
    left: -7px;
  }

  #content .entry-title::after,
  #content .archive-title::after {
    left: -6px;
  }

  #content .entry-title span,
  #content .archive-title span {
    padding-left: 0;
  }

  #main-header {
    position: relative;
    margin-top: 52px;
    background: #fff;
    padding: 25px 0 20px;
  }

  .hdr-inner {
    width: 90%;
    justify-content: center;
  }

  .hdr-logo {
    width: min(100%, 490px);
    padding: 0;
  }

  .hdr-logo .site-logo img {
    filter: none;
  }

  .cf-wrap {
    width: min(90%, 790px);
  }

  .cf-title .site-title {
    padding: 0 20px;
  }

  .ftr-contact ul,
  .ftr-nav ul {
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 10px;
    gap: 10px 18px;
  }

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

  .aios-custom-ihomefinder-details-template .ip-breadcrumbs {
    display: none;
  }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }

  html .aios-contact-photo {
    margin: 30px auto 0;
  }
}

@media only screen and (max-width: 480px) {
  .hdr-logo ul {
    gap: 15px;
  }

  .hdr-logo .site-logo,
  .hdr-logo .site-broker {
    width: fit-content;
  }
}

@media only screen and (max-width: 400px) {
  .cf-form form .info-item.ii-short {
    width: 100%;
  }

  .ftr-contact ul li a,
  .ftr-disclaimer p,
  .ftr-nav ul li a {
    font-size: 12px;
  }

  html body.ihf-results-template .site-title h2 {
    font-size: 35px !important;
  }  
}


@media(max-width: 320px) {
  html .aios-contact-photo {
    margin: 50px auto 0;
  }
}

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