:root {
  /** Font default */
  --font-family-default: "Roboto", sans-serif;
  --font-family-title: "Playfair Display", serif;
  --font-size-default: 14px;
  --font-size-title: 60px;
  --font-color-default: #4e4e4e;
  --font-color-title: #2c2c2c;
  /** Use for input, button, and any other element */
  --primary: #f58647;
  --secondary: #747474;
  --accent-light: #5b6b8c;
  --accent-dark: #2f3847;
  --accent-pink: #a16d5f;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: all 0.3s ease-in-out;
}

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

a:hover {
  color: #8c8c8c;
}

.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: 1420px;
  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: block;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.global-title-widget {
  text-transform: uppercase;
  color: #2e4349;
  position: relative;
  font-weight: 700;
  display: inline-block;
  font-size: 70px;
  line-height: 1;
  font-family: var(--font-family-default);
  padding: 0 160px;
  letter-spacing: 0.05em;
}

.global-title-widget:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 138px;
  height: 2px;
  background: #f58647;
}


.global-title-wrap span {
  display: block;
  font-size: 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: #f58647;
  position: relative;
  text-align: center;
  padding-bottom: 10px;
  font-family: var(--font-family-title);

}

.ftr-form-cont .global-title-wrap {
  margin-bottom: 0;
}

.ftr-form-cont .global-title-widget {
  color: #fff;
}

.ftr-form-cont .global-title-widget:before {
  display: none;
}


/* GLOBAL SITE BUTTON */

.global-button {
  display: flex;
  width: 100%;
  max-width: 203px;
  line-height: 52px;
  height: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin: 30px 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 0;
  font-size: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(232, 241, 250, 0);
  border: 1px solid var(--secondary);
}

.tagline-slide .global-button {
  border: 1px solid #fff;
}


.global-button:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 45%;
  height: 2px;
  background: #f58647;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.global-button:hover:after {
  width: 100%;
  background: #83a4b7;
}



.global-button:hover {
  background: #83a4b7;
  border: 1px solid #83a4b7;
}

.global-button span {
  color: #2e4349;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  display: block;
  z-index: 3;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.global-button:hover span {
  color: #fff;
}

.r-more {
  display: flex;
  justify-content: center;
  position: relative;
  flex-flow: row wrap;
  margin-top: 20px;
}



/* 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;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding: 40px 0;

}

.main-header {
  width: 100%;
  z-index: 100;
  margin: 0 auto;
  position: relative;
  height: auto;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  padding: 0px;

}

.custom-container {
  max-width: 1600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

.custom-container .row {
  display: flex;
  align-items: center;
}


/* Header Logo */

.hdr-logo-wrap {
  margin: 0 50px;
  position: relative;
  font-size: 0;
  display: block;
}

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

.hdr-logo img.logo-f {
  display: none;
}

.hdr-logo img.logo-d {
  display: block;
}

.hdr-logo a {
  font-size: 27px;
  position: relative;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--font-family-title);
}


.hdr-info-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}

.hdr-info {
  position: relative;
  display: block;
  font-size: 16px;
  color: #f58647;
}

.hdr-info span {
  padding: 0 20px;
}

.hdr-info span:nth-child(1) {
  padding-left: 0;
  border-right: 1px solid #fff;
}

.hdr-info a {
  color: #f58647;
}

.hdr-info a:hover {
  color: #fff;
}


.hdr-cta {
  position: relative;
  display: flex;
  flex-flow: row;
  gap: 10px;
  margin-left: 10px;

}

.hdr-cta a {
  width: 100%;
  height: 40px;
  border: 1px solid #f58647;
  background: rgba(245, 134, 71, 0);
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 0 10px;
  max-width: 180px;
}

.hdr-cta a span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hdr-cta a:hover {
  background: rgba(245, 134, 71, 1);
}

/* NAVIGATION */

.nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.navigation>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sub Menu */

.main-nav {
  display: block;
  font-size: 0;
}

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

.main-nav a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 0;
  transition: all ease .4s;
  -moz-transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav li a:after,
.main-nav li a:before {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

}

.main-nav li a:before {
  top: -10px;
  bottom: unset;
}

.main-nav li:hover a:after,
.main-nav li:hover a:before {

  width: 100%;
  left: 0;

}

.main-nav li {
  position: relative;
}

.main-nav>li {

  display: inline-block;
  vertical-align: middle;
  margin: 0 35px;
  position: relative;

}


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

/* Sub Menu */

.main-nav .sub-menu {
  background: transparent;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  transform: translateX(-50%) translateY(20px);
  position: absolute;
  min-width: 180px;
  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: 22px;
  pointer-events: none;

}

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

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

.main-nav .sub-menu a {
  color: #fff;
  display: block;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(46, 67, 73, 0.7);
}

.main-nav .sub-menu a:hover {
  background: #83a4b7;
  color: #fff;
}

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

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

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

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

.main-nav .sub-menu li a:after,
.main-nav .sub-menu li a:before {
  display: none;
}


/***Header Short***/

#header-wrap.fixedhead {
  background: rgba(28, 48, 58, 0.9);
  padding: 10px 0;
}


#header-wrap.fixedhead .hdr-logo img.logo-f {
  display: block;
}

#header-wrap.fixedhead .hdr-logo img.logo-d {
  display: none;
}

/*** Footer ***/


#footer-wrap {
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  padding: 80px 15px;
  text-align: center;
  color: #2b2b2b;
  position: relative;
}

#ftr-section {
  position: relative;
}


.footer-contact-form {
  position: relative;
  padding: 100px 0;
}

.footer-contact-form .global-title-widget {
  color: #fff;
}

.footer-form {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-top: 0;
  font-size: 0;
  position: relative;
  z-index: 2;
  max-width: 590px;

}

.form-bg.fixed-bg {
  z-index: -1;
}

.form-bg.fixed-bg canvas {
  background-position: center top;

}

.title-text {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.title-text p {
  display: block;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  letter-spacing: 0.05em;
}

.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: 15px;
}

.form-field-short {
  width: 49.90%;
  display: inline-block;
  vertical-align: top;
  margin-left: 1.15%;
  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: 60px;
  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: uppercase;
  letter-spacing: 0.06em;

}


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


.footer-form .form-submit {
  max-width: 203px;
  width: 100%;
  height: 52px;
  position: relative;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  left: 0;
  right: 0;

}

.footer-form .form-submit:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 45%;
  height: 2px;
  background: #f58647;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-form .form-submit:hover:before {
  width: 100%;
  background: #83a4b7;
}

.footer-form .form-submit input[type="submit"] {
  width: 100%;
  ;
  height: 100%;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 0;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  border: none;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400;
  background: transparent;
  border: 1px solid #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-form .form-submit input[type="submit"]:hover {
  border: 1px solid #83a4b7;
  background: #83a4b7;
}

.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 Contact Info ***/

.logo-ftr {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}

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

.logo-ftr img.logo-blk {
  filter: invert(1);
}

.logo-ftr img.logo-blk {
  margin-right: 40px;
}

.ftr-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-family-title);
}


.ftr-info-wrap,
.ftr-nav,
.ftr-news {
  width: 33.333%;
}

.ftr-info-wrap {
  /*width: 33%;*/
}

.title-ftr {
  font-size: 25px;
  font-weight: 700;
  color: #2e4349;
  display: block;
  padding-bottom: 30px;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  letter-spacing: 0.05em;
  font-family: var(--font-family-default);
}



.info-flex {
  display: flex;
  align-items: flex-start;
  text-align: left;
  position: relative;
  top: -6px;
}

.info-flex div:nth-child(1) {
  width: 40%;
}

.info-flex div:nth-child(2) {
  width: 60%;
  padding-left: 20px;
}

.info-flex span {
  font-size: 15px;
  color: #fff;
  line-height: 30px;

}

.info-flex span a:hover {
  color: #de8d52;
}

.info-flex div>span {
  display: block;
}


.ftr-news p {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 15px;
  line-height: 18px;
  letter-spacing: 0.1em;
}

.ftr-smi {
  display: block;
  text-align: left;
  padding-top: 0;
}

.ftr-smi a {
  margin: 0 15px;
  font-size: 20px;
  color: #2e4349;
  -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;
}

.ftr-smi a:nth-child(1) {
  margin-left: 0;
}


.ftr-smi a:hover {
  color: #de8d52;
}



.footernav {
  text-align: left;
  column-count: 2;
}

.footernav li {
  color: #2b2b2b;
  padding: 0 0 20px;
}

.footernav li a {
  color: #2b2b2b;
  font-size: 16px;
  text-transform: capitalize;
  -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;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.footernav li a:hover {
  color: #f58647;
}



.ftr-info {
  display: block;
  text-align: left;
}

.ftr-info div span {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  font-size: 15px;

}

.ftr-info div span>a {
  color: #2b2b2b;
}

.ftr-info div span>i {
  margin-right: 8px;
  color: #f58647;
}

.ftr-info div span.cont-phone>i {
  font-size: 13px;
}

.ftr-info div span.cont-email>i {
  font-size: 11px;
}

.ftr-info div span>a:hover {
  color: #f58647;
}


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

.footer-dis {
  display: block;
  font-size: 13px;
  color: #2b2b2b;
  line-height: 15px;
  font-weight: 400;
  letter-spacing: 0.07em;
  padding-bottom: 40px;
  border-bottom: 2px solid #f58647;
  margin-bottom: 40px;
}

.footer-dis a>i.ai-font-compass {
  color: #2b2b2b;
  display: block;
  font-size: 27px;
  padding-top: 20px;
  padding-bottom: 30px;
}

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

.footer li {
  display: inline-block;
  padding: 0 20px;
  line-height: 10px;
  text-transform: uppercase;
}

.footer li a {
  color: #2b2b2b;
  font-size: 15px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footer li a:hover {
  color: #f58647;
}

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


.copyright {
  color: #2b2b2b;
  padding: 20px 0 0;
  letter-spacing: 0.1em;
  line-height: 26px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  font-family: var(--font-family-title);

}

.copyright span {
  font-weight: 700;
  color: #f58647;
}

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


.copyright a:hover {
  color: #f58647;
}

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

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

.ftr-logos {
  font-size: 25px;
  color: #2e4349;
  margin: 20px 0 0;
}

.ftr-logos span {
  color: #2e4349;
  margin: 0 5px;
}

.copyright-wrapp {
  margin: 0 auto;
}

.ftr-bg.fixed-bg {
  z-index: -1;
  filter: grayscale(1);
}

.ftr-bg.fixed-bg canvas {
  opacity: 0.8;
}

.form-bg.fixed-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.ftr-bg.fixed-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f6f3ee;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
}

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

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




/* 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: #2e4349;
  font-size: 60px;
  font-weight: 700;
  /*  font-family: var(--font-family-title);*/
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.aios-custom-ihomefinder-details-template #ihf-main-container .modal-dialog,
.aios-custom-ihomefinder-results-template #ihf-main-container .modal-dialog {
  left: 0 !important;
}

#qs-section .form-control {
  color: #000 !important;
}

body #agents-results .agents-list .agents-box-col>.agents-box>div .agent-image-photo .agent-box-hover .agent-box-hover-info>div.agent-fax {
  display: none;
}

body #content .community-main p {
  font-size: 1.15em;
}

.ai-minimalist-column-agent-details a {
  color: #fff;
}

.ai-minimalist-column-agent-details a:hover {
  color: #fff;
  opacity: 0.8;
}

.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
  color: var(--aios-agents-hover-color) !important;
}

#areaPickerClearAll .glyphicon.glyphicon-remove-circle {
  color: #fff !important;
}

.aios-custom-ihomefinder-results-template:not(:has(span#searchForm\.errors)) #inner-page-wrapper>.container {
  width: 100%;
}

.aios-custom-ihomefinder-results-template:not(:has(span#searchForm\.errors)) #content-full .entry-title {
  width: 100%;
  padding: 0;
}

.aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    max-width: 200px;
}

.aiosAgentsEquinox__agent--img img {
}

/** IHF Search page Login **/
body #ihf-main-container .btn-group.btn-group-justified .btn-primary,
body #ihf-main-container .btn-primary {
  background: var(--primary);
}
body #ihf-main-container .btn-group.btn-group-justified .btn-primary.active {
   background: #83a4b7;
}

body #ihf-main-container .btn-default {
    color: #fff;
    background-color: #f58647;
    border-color: #ccc;
}

body #ihf-main-container .btn-primary.active, 
body #ihf-main-container .btn-primary:active, 
body #ihf-main-container .btn-primary:focus, 
body #ihf-main-container .btn-primary:hover {
   color: #fff !important;
}



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

}

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

  .main-nav>li,
  #fixednav>li {
    margin: 0 20px;
  }

  .hdr-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

}

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


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

  .custom-container {
    padding: 0 15px;
  }

  .main-nav>li,
  #fixednav>li {
    margin: 0 5px;
  }

  .main-nav a,
  #fixednav a {
    font-size: 12px;
    letter-spacing: normal;
  }

  .hdr-logo a {
    font-size: 18px;
  }

  .title-ftr {
    font-size: 20px;
  }

}

/* 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,
  .main-nav-wrapp,
  .fixed_logo,
  .aios-split-nav,
  .hdr-info-wrap,
  .global-title-widget:after {
    display: none;
  }

  #header-wrap {
    position: relative;
    padding: 0;
    z-index: 99;
  }

  .main-header {
    position: relative;
    padding: 70px 0 30px;
    height: auto;
    text-align: center;
    top: 0;
    background: #2e4349;
  }

  .custom-container .row {
    display: block;
  }

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

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


  #footer_wrap {
    padding-top: 70px;
  }

  .contact_description {
    line-height: 1.2;
  }

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

  .footinfo {
    margin: 10px 0;
  }

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

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

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

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

  .ftr-info-wrap,
  .ftr-nav,
  .ftr-news {
    width: 100%;
  }

  .title-ftr {
    text-align: center;
    padding: 20px 0;
  }


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

  .ftr-main-wrapper {
    flex-flow: column;
  }

  .ftr-info {
    display: block;
    text-align: center;
  }

  .logo-ftr,
  .ftr-smi,
  .footer-bottom,
  .ftr-news p {
    justify-content: center;
    text-align: center;
  }

  .global-title-widget {
    padding: 0;
  }

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


}

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

  .fc-list {
    width: 100% !important;
  }


}

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

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

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

}