:root {
  /** Font default */
  --font-family-default: "Outfit", sans-serif;
  --font-family-title: "Outfit", sans-serif;
  --font-size-default: 14px;
  --font-size-title: 48px;
  --font-color-default: #3b3b3b;
  --font-color-title: #080808;
  /** Use for input, button, and any other element */
  --primary: #080808;
  --secondary: #eddbd9;
  --accent-light: #dd3333;
  --accent-dark: #2f3847;
  --accent-pink: #a16d5f;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: all 0.25s ease-in-out;

  --aios-ihf-template-global-page-primary-color: #901c24 !important;
  --aios-ihf-template-global-page-secondary-color: #000 !important;
}

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

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

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

.safari-true .fixed-bg canvas,
.mobile .fixed-bg canvas {
  background-attachment: scroll;
}

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

.non-fixed-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;
  max-width: 1400px;
  margin: 0 auto;
}

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

.gradient-text {
  background: #EDDBD9;
  background: linear-gradient(to right, #EDDBD9 0%, #EDDBD9 77%, #A16D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GLOBAL SITE TITLE */


.global-title-wrap {
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.global-title-wrap:before {
  position: absolute;
  left: 0;
  width: 119px;
  height: 1px;
  background: #901c24;
  content: '';
  bottom: 0;
}

.global-title-wrap span {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 100;
  color: #fff;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
}

.global-title-widget {
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: block;
  font-size: 65px;
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 700;
  letter-spacing: 0;
}

.global-title-wrap .global-title-widget i {
  font-size: 20px;
  color: #666666;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
}

.post-page-contact #inner-page-wrapper>.container {
  padding: 0 15px;
  width: 100%;
}

/* GLOBAL SITE BUTTON */

.global-button {
  display: flex;
  width: 207px;
  line-height: 50px;
  height: 50px;
  text-transform: uppercase;
  margin: 30px auto 0;
  transition: var(--default-transition);
  padding: 0;
  font-size: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  text-align: center;
}

.global-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #901c24;
  opacity: 0;
  transform: scale(.6);
  transition: var(--default-transition);
}

.global-button:hover {
  border-color: #901c24;
}

.global-button:hover::before {
  transform: scale(1);
  opacity: 1;
}


.global-button span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  display: block;
  width: 100%;
  z-index: 3;
  font-weight: 500;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.global-button span i {
  font-size: 16px;
  position: relative;
  margin-left: 10px;

}


.r-more {
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-flow: row wrap;
  padding-top: 30px;
  gap: 5px;
}



/* HEADER */
#header-wrap {
  width: 100%;
  position: fixed;
  z-index: 1011;
  top: 0;
  left: 0;
  font-size: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;

}

.main-header {
  width: 100%;
  z-index: 1002;
  margin: 0 auto;
  position: absolute;
  height: auto;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  padding: 30px 0;
  background: #000;
  /*border-bottom: 1px solid #fff;*/
}

.custom-container {
  max-width: 1400px;
  margin: 0 auto;
}

.custom-container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Header Logo */

.hdr-logo {
  display: flex;
  align-items: center;
}

.header .container-fluid .row {
  display: flex;
  align-items: center;
  margin: 0;
}

.hdr-logo span {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
}

.hdr-logo img {
  width: 204px;
}

.hdr-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding-left: 28px;
  border-left: 1px solid #fff;
  letter-spacing: 0.1em;
}


.hdr-info a {
  color: #fff;
  transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.hdr-info a:hover {
  opacity: 0.7;
}


/* NAVIGATION */

/* Sub Menu */
#nav li {
  position: relative;
  display: inline-block;
  font-size: 0;
}

#nav .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  min-width: 222px;
  list-style: none outside none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  text-align: center;
  padding-top: 44px;
  background: transparent;
}

#nav .sub-menu a {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  display: block;
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 300;
}

#nav .sub-menu a:hover {
  background: #901c24;
  text-decoration: none;
  color: #FFFFFF;
}

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

#nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

#nav .sub-menu li {
  position: relative;
}

#fixednav li {
  position: relative;
  display: inline-block;

}

#fixednav li:nth-child(1) {
  margin-left: 0;
  border-left: none;
}

#fixednav .sub-menu {
  background: transparent;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  min-width: 222px;
  list-style: none outside none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  text-align: center;
  padding-top: 36px;
}

#fixednav .sub-menu a {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  display: block;
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 300;
}

#fixednav .sub-menu a:hover {
  background: #901c24;
  text-decoration: none;
  color: #FFFFFF;
}

#fixednav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
}

#fixednav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

#fixednav .sub-menu li {
  position: relative;
}

#nav {
  display: block;
  font-size: 0;
}

#nav li:nth-child(1) {
  margin-left: 0;
}

#nav a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 0;
  transition: all ease .2s;
  -moz-transition: all ease .2s;
  -webkit-transition: all ease .2s;
}


#nav a:hover {
  color: #901c24;
}

#nav li {
  position: relative;
}

#nav>li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px;
  position: relative;
}


#nav>li:last-child {
  margin-right: 0;
}

#nav>li:before {
  width: 1px;
  height: 100%;
  background: #c6c8ca;
  content: '';
  left: -25px;
  position: absolute;
}

#nav>li:first-child:before {
  display: none;
}

/* Sub Menu */


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

#nav li:hover>.sub-menu {
  display: block;
}

#nav .sub-menu li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border-left: none;
}

#nav .sub-menu li:first-child {
  padding: 0 0 0 0;
}

#nav .sub-menu li a:after {
  display: none;
}



/***Header Short***/

.fixed-header {
  background: #000;
  position: fixed;
  z-index: 101;
  width: 100%;
  left: 0;
  top: -100px;
  transition: all ease .3s;
  -moz-transition: all ease .3s;
  -webkit-transition: all ease .3s;
  padding: 30px 0;
}

.fixed-header.active {
  top: 0;
}

/*** Fixed Nav ***/

.nav-wrapp {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.navigation {
  display: inline-block;
  position: relative;
}


#fixednav {
  display: block;
  font-size: 0;
}

#fixednav a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 0;
  transition: all ease .2s;
  -moz-transition: all ease .2s;
  -webkit-transition: all ease .2s;
}

#fixednav a:hover {
  color: #fefefe;
}

#fixednav li {
  position: relative;

}

#fixednav>li {

  display: inline-block;
  vertical-align: middle;
  margin: 0 25px;

}

#fixednav>li:last-child {
  margin-right: 0;
}

#fixednav>li:first-child:before {
  display: none;
}

#fixednav>li:before {
  width: 1px;
  height: 100%;
  background: #c6c8ca;
  content: '';
  left: -25px;
  position: absolute;
}

#fixednav>li:hover>a {
  color: #901c24;
}


/* Sub Menu */
#fixednav .sub-menu a {
  color: #000;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
}

#fixednav .sub-menu a:hover {
  background: #901c24;
  color: #fff;
}

#fixednav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
}

#fixednav li:hover>.sub-menu {
  display: block;
}

#fixednav .sub-menu li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border-left: none;
}

#fixednav .sub-menu li:first-child {
  padding: 0 0 0 0;
}

#fixednav .sub-menu li a:after {
  display: none;
}

.fixed-header:not(.active) {
  opacity: 0;
  pointer-events: none;
}

/*** Footer ***/

#form-ftr-section {
  position: relative;
  padding: 0 15px;
  background: #0d0d0d;
}

#form-ftr-section:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,1f1f1f+55,000000+100&1+0,1+55,0+100 */
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(31, 31, 31, 1) 55%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.form-bg.non-fixed-bg {
  width: 55%;
  right: 0;
  left: unset;
  z-index: 0;
}

.footer-contact-form {
  position: relative;
  width: 60%;
  margin: 0;
  padding: 60px 50px;
  z-index: 5;
}


.footer-form {
  width: 100%;
  max-width: 1005px;
  margin: 0 auto;
  font-size: 0;
  position: relative;
  z-index: 2;
  display: block;
}


.footer-form-wrap {
  display: block;
}

.footer-form-wrap .title-wrap {
  text-align: left;
}

.footer-form-wrap .title-wrap .title-widget {
  font-size: 40px;
  color: #0c2a3c;
  font-weight: 400;
}

.form-field-wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  position: relative;
  justify-content: center;
}

.form-field-long {
  width: 100%;
  margin-bottom: 10px;
}

.form-field-short {
  width: 48.90%;
  display: inline-block;
  vertical-align: top;
  margin-left: 3%;
  margin-bottom: 10px;
}

.form-field-short:first-child {
  margin-left: 0;
}

.form-field-short input,
.form-field-long input,
.form-field-wrap textarea {
  width: 100%;
  height: 50px;
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-transform: capitalize;
  letter-spacing: 0.1em;

}


.form-field-wrap textarea {
  height: 100px;
  padding-top: 15px;
  resize: none;
}


.footer-form .form-submit {
  width: 173px;
  height: 57px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  background: transparent;
  border: 1px solid #fff;
  transition: var(--default-transition);
  font-size: 18px;
}

.footer-form .form-submit:hover {
  background: #901c24;
  border-color: #901c24;
}

.footer-form .form-submit input[type="submit"] {
  width: 100%;
  ;
  height: 100%;
  position: relative;
  z-index: 4;
  top: 0;
  left: 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  border: none;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
  text-align: center;

}


.footer-form .ajax-loader,
.footer-form .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto !important;
  bottom: -50px;
}

.footer-form .wpcf7-form-control-wrap {
  display: block;
}

.footer-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
  width: auto;
  max-width: 100%;
  font-size: 11px;
  position: absolute;
  top: 10px;
}

.footer-form div.wpcf7-response-output,
.footer-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  left: 0;
  right: 0;
  margin: 10px auto 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}


/*** Footer ***/


.footer {
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  padding: 50px 0;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  background: #000;
}


/*** Footer Contact Info ***/


.footer-contact-wrap {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 40px 0;
  letter-spacing: 0.05em;
}

.footer-contact-wrap a.site-name img {
  margin: 0 auto 20px;
}


.footer-contact-wrap a {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-contact-wrap a:hover {
  color: #901c24;
}

.footer-contact-wrap span.smi a {
  margin-right: 15px;
  font-size: 18px;
}

.ftr-info-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}


.ftr-info-flex>span {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;


}

.ftr-info-flex i {
  display: block;
  font-size: 14px;
  color: #901c24;
}


.footer-right-inner .menu-main-container {
  display: flex;
}


.top-nav {
  position: relative;
  padding: 0px 0 50px;
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-smi-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  display: none;
}

.footer-bottom {
  position: relative;
  display: block;
  z-index: 3;
  margin: 0 auto;
  padding-top: 30px;
}

.footer-dis {
  display: block;
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  font-weight: 100;
}


.footer-dis a {
  color: #fff;
}

.footer-dis a:hover {
  color: #901c24;
}



.footer li {
  display: inline-block;
  padding: 0 20px;
  line-height: 10px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.footer li a {
  color: #fff;
  font-size: 14px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  font-weight: 500;
  letter-spacing: 0.1em;
}


.footer li:nth-child(1) {
  border: none;
}

.footer li a:hover {
  color: #901c24;
}

.copy-wrap {
  display: block;
  align-items: center;
  margin-top: 15px;
}


.footer .copyright {
  color: #fff;
  padding: 20px 0 0;
  letter-spacing: 0.035em;
  line-height: 26px;
  font-weight: 400;
  font-size: 13px;
  text-transform: capitalize;

}

.footer .copyright span {
  text-transform: uppercase;
  /*color: #901c24;*/
}

.footer .copyright a {
  color: #fff;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}


.footer .copyright a:hover {
  color: #901c24;
}

.ftr-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ftr-logo img {
  margin-bottom: 30px;
}

.ftr-logos {
  font-size: 30px;
  color: #fff;
  margin: 20px 0 0;
}

.ftr-logos span {
  color: #fff !important;
}

.copyright-wrapp {
  margin: 0 auto;
}

.ftr-bg.fixed-bg {
  z-index: 0;
}

.ftr-bg.fixed-bg:before {
  position: absolute;
  content: '';
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
}

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

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

#content .entry a:hover {
  color: var(--accent-light);
}

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-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
  display: none !important;
}

#listings-details .listings-smi ul>li>a {
  font-family: 'agentimage' !important;
}

[class^=ai-font]:before {
  font-family: agentimage !important;
}

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


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

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

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

}

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

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

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

#aios-testimonials .aios-testimonials-lists .aios-testimonials-content {
  font-size: 18px !important;
}

.page-id-7163 #content-full {
  margin-top: 0;
}

.page-id-7163 #inner-page-wrapper {
  margin-bottom: 0;
}


/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
  color: #000;
  font-size: 55px;
  font-weight: 700;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
}

#content .archive-subtitle {
  font-size: 25px;
}

#ihf-main-container .modal-dialog {
  left: 0 !important;
}

#ai-minimalist-properties-details-wrap .ai-minimalist-pd-listings-main-left .ai-minimalist-pd-listings-address strong {
  font-weight: 700 !important;
}

#ai-minimalist-properties-details-wrap .ai-minimalist-pd-listings-main-left .ai-minimalist-pd-listings-infos li em {
  color: var(--aios-ihf-template-global-page-primary-color) !important;
}

.site-heading h2 span, .site-heading h1 span {
    display: block;
    font-family: var(--font-family-title);
    font-size: 50px;
    line-height: 1;
    padding: 11px 0 0;
    color: var(--primary-text); 
    text-transform: uppercase;
}
#content small {
    text-transform: uppercase;
}

.video-testi {
    position: relative;
    display: block;
    height: 320px;
    width: 100%;
}

.Outro_module_outro__552ef1cd {
  display: none !important;
}


.aios-custom-ihomefinder-shortcode #inner-page-wrapper .container {
    width: 100%;
    padding: 0;
}


body #ip-equinox-contact .ip-equinox-contact__form--title h2 strong,
body #ip-equinox-about .ip-equinox-about__content .about__title h2 strong{
  font-weight: 700;
}

body #ip-equinox-contact .custom-page-submit input:hover {
    background: #1d1d1d;
}

#ai-minimalist-properties-results .ai-minimalist-properties-results-pagination ul li a.active {
  pointer-events: none;
}


@media only screen and (min-width: 1601px) {
  :root {
    --font-size-title: 32px;
  }

}

@media only screen and (max-width: 1536px) {}

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1366px) {

  #nav a,
  #fixednav a {
    font-size: 12px;
  }

}


@media only screen and (max-width: 1199px) {

  #nav a,
  #fixednav a {
    font-size: 11px;
  }

  #nav>li,
  #fixednav>li {
    margin: 0 10px;
  }

  #nav>li:before,
  #fixednav>li:before {
    left: -10px;
  }

  .top-nav {
    padding-left: 30px;
  }

  .info-contact {
    padding: 0 30px 50px;
  }

}


/* 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) {

  .fixed-header,
  .nav-wrapp,
  .fixed_logo,
  .global-title-wrap:before {
    display: none;
  }

  .main-header {
    position: relative;
    padding: 70px 0 30px;
    height: auto;
    text-align: center;
    top: 0;
    background: #000;
    border-bottom: 1px solid #fff;
    z-index: 100;
  }

  .r-more {
    justify-content: center;
  }

  .hdr-logo {
    text-align: center;
  }

  .global_site_title h2 strong {
    font-size: 40px !important;
  }

  #header_wrap {
    position: relative;
    z-index: 2;
    margin-top: 52px;
    padding: 20px 0;
    background-color: var(--primary);
  }

  #footer_wrap {
    padding-top: 70px;
  }

  .contact_description {
    line-height: 1.2;
  }

  .footer_info {
    flex-flow: column;
    align-items: center;
  }

  .footinfo {
    margin: 10px 0;
  }

  .top-nav {
    padding: 0;
  }

  .footernav {
    text-align: center;
    column-count: 1;
  }

  .footernav li {
    display: block;
    margin: 10px 0;
    padding: 5px 0;
    border: 0;
    height: auto;
  }

  #content .archive-title,
  #content .entry-title {
    font-size: 40px;
  }

  .ftr-b-logo img {
    width: 100%;
    margin: 20px auto;
  }

  .form-main-wrap {
    flex-flow: column;
  }

  .contact-form-img,
  .footer-contact-form {
    width: 100%;
    margin: 20px auto;
    text-align: center;
  }

  .ftr-logo {
    flex-flow: column;
  }

  #ftr-section {
    text-align: center;
  }

  .footer-form .form-submit {
    margin: 40px auto 0;
  }

  .ftr-logo a img {
    margin: 30px auto;
  }

  .global-title-wrap {
    text-align: center;
    padding-left: 0;
  }

  .ftr-section,
  .info-list-wrap {
    flex-flow: column;
  }

  .info-contact {
    border: 0;
  }

  .info-logo,
  .info-contact,
  .info-main-wrap,
  .ftr-nav {
    width: 100%;
    margin: 20px auto;
    padding: 0;
  }

  .info-logo img {
    margin: 0 auto;
  }

  .ftr-info span {
    justify-content: center;
  }

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

  #footer-wrap {
    padding: 0;
  }

  .ftr-info-flex {
    gap: 15px;
    flex-flow: column;
  }

  .ftr-info-flex>span {
    justify-content: center;
  }

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



}

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

  #content .archive-title,
  #content .entry-title {
    font-size: 30px;
  }

  .form-field-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }

  .form-field-short {
    width: 100%;
    margin: 5px auto;
  }

  .ftr-info-flex {
    display: block;
  }



}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {

  .global-title-widget {
    font-size: 30px !important;
  }

  .global-title-wrap span {
    font-size: 20px;
  }

  .global-button span {
    font-size: 12px;
  }

  .footer-contact-form {
    padding: 50px 15px;
  }

  .ftr-contact-info {
    padding: 0;
  }

  .ftr-info-flex>span,
  .footer-contact-wrap a {
    font-size: 12px;
  }

}