:root {
  /** Font default */
  --font-family-default: "Open Sans", sans-serif;
  --font-family-title: "Open Sans", sans-serif;
  --font-size-default: 14px;
  --font-size-title: 48px;
  --font-color-default: #4e4e4e;
  --font-color-title: #2c2c2c;
  /** Use for input, button, and any other element */
  --primary: #191f2f;
  --secondary: #eddbd9;
  --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;
}

.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: inline-block;
  margin-bottom: 35px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.global-title-widget {
  text-transform: uppercase;
  color: #faa00b;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.02em;
  display: inline-block;
  font-size: 64px;
  line-height: 1;
  font-family: var(--font-family-title);
}

.global-title-widget span {
  color: #000000;
}

.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-title-wrap span.num-sec {
  display: block;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: #062440;
  position: relative;
  text-align: left;
  margin-bottom: 8px;
}

.global-title-wrap span.num-sec:before {
  position: absolute;
  width: 85px;
  height: 1px;
  background: #7f7f7f;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  margin-left: -100px;
  z-index: 2;
}

.global-title-wrap span.num-sec i {
  font-style: normal;
  position: relative;
  padding-left: 40px;
}

/* GLOBAL SITE BUTTON */

.global-button {
  display: flex;
  width: 100%;
  max-width: 228px;
  line-height: 65px;
  height: 65px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin: 30px 0 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  padding: 0;
  font-size: 0;
  justify-content: left;
  align-items: center;
  position: relative;
  border: 1px solid #000;
  padding-left: 62px;
}

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

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

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

.global-button:before {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 2px;
  content: "";
  background: #faa00b;
  z-index: 1;
  left: -24px;
}

/* 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: 100;
  margin: 0 auto;
  position: absolute;
  height: auto;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  padding: 15px 0;
  /*    background: -moz-linear-gradient(top,rgba(0,0,0,.65) 0,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,.65) 0,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,0) 100%); */
  border-bottom: 2px solid #faa00b;
  background: rgba(45, 74, 101, 0.8);
}

.custom-container {
}

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

#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;
  padding: 50px 0;
}
#header-wrap > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo {
  width: 398px;
  font-size: 0;
  margin: 0 60px;
  padding: 0;
  position: relative;
}
.header-logo img {
  z-index: 2;
  position: relative;
  margin: 0 auto;
}

#header-wrap .header-logo img.fixed-logo {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hdr-info-wrap {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
}

/* FIXED HEADER */

#header-wrap.fixedhead {
  background: #fff;
  padding: 0;
}
#header-wrap.fixedhead .hdr-info-wrap {
  display: none;
}
#header-wrap.fixedhead .header-logo {
  padding: 10px 0;
}

#header-wrap.fixedhead .header-logo::before {
  display: none;
}
#header-wrap.fixedhead .header-logo img.default-logo {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#header-wrap.fixedhead .header-logo img.fixed-logo {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#header-wrap.fixedhead .main-nav li a {
  color: #000;
}

#header-wrap.fixedhead .main-nav li a:hover {
  color: #faa00b;
}

.hdr-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 20px;
  position: absolute;
  right: 0;
}

.hdr-info span:nth-child(1) {
  margin-right: 20px;
}

.hdr-info i {
  font-size: 12px;
  margin-right: 10px;
}

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

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

/* NAVIGATION */

.navigation {
}
.navigation > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aios-split-nav {
}
.main-nav li {
  position: relative;
  display: inline-block;
  margin: 0 22px;
}

.main-nav li a {
  display: block;
  padding: 20px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  -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;
}

.main-nav li:after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

.main-nav > li:hover > a {
  color: #faa00b;
}

.main-nav .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  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: 10px;
  background: transparent;
}

.main-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.main-nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  padding: 5px 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  min-width: 234px;
  text-align: center;
  background-color: #fff;
  border-top: 2px solid #faa00b;
}

.main-nav li.nav-long .sub-menu {
  min-width: 400px;
}
.main-nav li.nav-medium .sub-menu {
  min-width: 300px;
}

.main-nav .sub-menu li {
  width: 100%;
  display: block;
  margin: 0 !important;
  position: relative;
}
.main-nav .sub-menu a {
  color: #000;
  display: block;
  padding: 10px 0;
  line-height: 1;
}
.main-nav .sub-menu a:hover {
  color: #faa00b;
}

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

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

.aios-split-nav.main-nav.main-nav-left li:nth-child(1),
#header-wrap.fixedhead
  .aios-split-nav.main-nav.main-nav-left
  > li:nth-child(1) {
  margin-left: 0;
}
.aios-split-nav.main-nav.main-nav-right li:nth-child(3),
#header-wrap.fixedhead
  .aios-split-nav.main-nav.main-nav-right
  > li:nth-child(3) {
  margin-right: 0;
}

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

.ftr-info-flex.slide-info {
  justify-content: flex-start;
  padding-top: 50px;
  border-top: 1px solid #4e4e4e;
}

.ftr-info-flex.slide-info a {
  color: #fff;
  font-size: 14px;
  transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}
.ftr-info-flex.slide-info a:hover {
  color: #faa00b;
}

.ftr-info-flex.slide-info > span:nth-child(1) {
  margin-left: 0;
}

.hdr-info-right {
  display: flex;
  align-items: center;
  color: #fff;
  padding-left: 110px;
}

.hdr-info-right a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
}

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

.hdr-info-right div.info span:last-child {
  padding: 0 15px;
  border-left: 1px solid #ccc;
  margin-left: 10px;
}

/*** Footer ***/

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

#ftr-section {
  position: relative;
  background: #fff;
  z-index: 1;
  text-align: center;
}

.building-blocks__get-in-touch--1-mosby {
  position: relative;
  padding: 90px 15px 109px;
  background: #fff;
}

.building-blocks__get-in-touch--1-mosby::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*filter: grayscale(1);*/
  opacity: 0.1;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__holder {
  position: relative;
  z-index: 5;
  max-width: 1140px;
  margin: 0 auto;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__title {
  font-size: 65px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  font-style: normal;
  position: relative;
  letter-spacing: 2px;
  text-align: center;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__title span {
  display: block;
  font-size: 18px;
  color: #b89d6b;
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: 6px;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__text {
  max-width: 810px;
  margin: 0 auto 6px;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__text p {
  margin: 0 !important;
  line-height: 1.5 !important;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  text-align: center;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__form {
  margin: 9px auto 0;
  max-width: 1004px;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__form form {
  position: relative;
  margin: 0 -15px;
  font-size: 0;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__fields input,
.building-blocks__get-in-touch--1-mosby .block-get-in-touch__fields textarea {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: transparent;
  width: 100%;
  height: 72px;
  color: #999999;
  text-shadow: 0px 0px 0px #fff;
  padding: 0 0;
  border-radius: 0;
  resize: none;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__fields textarea {
  padding-top: 27px;
  height: 122px;
}

.building-blocks__get-in-touch--1-mosby
  .block-get-in-touch__fields.block-get-in-touch__textarea {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.building-blocks__get-in-touch--1-mosby .block-get-in-touch__fields {
  position: relative;
  width: 50%;
  padding: 0 15px;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px;
}

.building-blocks__get-in-touch--1-mosby
  .block-get-in-touch__fields.block-get-in-touch__btn
  input#gtbtn {
  cursor: pointer;
  border: solid 1px #b89d6b;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
  height: 59px;
  -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;
}

.building-blocks__get-in-touch--1-mosby
  .block-get-in-touch__fields.block-get-in-touch__btn {
  display: block;
  max-width: 246px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.building-blocks__get-in-touch--1-mosby
  .block-get-in-touch__fields.block-get-in-touch__btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #b89d6b;
  -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;
}

.building-blocks__get-in-touch--1-mosby
  .block-get-in-touch__fields.block-get-in-touch__btn:hover::after {
  background: #000;
  height: 100%;
}

.building-blocks__get-in-touch--1-mosby
  .block-get-in-touch__fields.block-get-in-touch__btn:hover
  input#gtbtn {
  color: #fff;
}

#ftr-section .form-submit {
  max-width: 162px;
  width: 100%;
  height: 65px;
  position: relative;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  left: 0;
  right: 0;
}

#ftr-section .form-submit:before {
  position: absolute;
  top: 50%;
  width: 65px;
  height: 2px;
  content: "";
  background: #faa00b;
  z-index: 1;
  left: -25px;
}

#ftr-section .form-submit input[type="submit"] {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #000;
  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 #2d4a65;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  text-align: left;
  padding-left: 60px;
}

#ftr-section .form-submit input[type="submit"]:hover {
  background: #000;
  color: #fff;
}

.building-blocks__get-in-touch--1-mosby .ajax-loader,
.building-blocks__get-in-touch--1-mosby .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto !important;
  bottom: -50px;
}
.building-blocks__get-in-touch--1-mosby .wpcf7-form-control-wrap {
  display: block;
}
.building-blocks__get-in-touch--1-mosby
  .use-floating-validation-tip
  span.wpcf7-not-valid-tip {
  width: auto;
  max-width: 100%;
  font-size: 11px;
  position: absolute;
  top: 10px;
}
.building-blocks__get-in-touch--1-mosby div.wpcf7-response-output,
.building-blocks__get-in-touch--1-mosby .wpcf7 form .wpcf7-response-output {
  position: absolute;
  left: 0;
  right: 0;
  margin: 10px auto 0;
  color: #000;
  font-size: 12px;
  text-align: center;
}

/*** Footer Contact Info ***/

.building-blocks__footer--1-amy-sandy {
  position: relative;
  padding: 112px 15px 55px;
  background: #e3dfe2;
  z-index: 1;
  overflow: hidden;
  border-top: 2px solid #faa00b;
}

.building-blocks__footer--1-amy-sandy .block-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.building-blocks__footer--1-amy-sandy .block-footer__bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 39, 0.9);
  top: 0;
  left: 0;
}

.building-blocks__footer--1-amy-sandy .block-footer__bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.building-blocks__footer--1-amy-sandy .block-footer__holder {
  position: relative;
  z-index: 5;
  max-width: 1115px;
  margin: 0 auto;
}

.building-blocks__footer--1-amy-sandy .block-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.building-blocks__footer--1-amy-sandy .block-footer__logo div.ftr-logo,
.building-blocks__footer--1-amy-sandy .block-footer__logo div.broker-logo {
  margin: 5px 25px;
}

.building-blocks__footer--1-amy-sandy .block-footer__logo span a {
  font-size: 66px;
  color: #faa00b;
  outline: none !important;
  text-decoration: none !important;
}

.building-blocks__footer--1-amy-sandy .block-footer__contact {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 70px;
  text-align: center;
  gap: 50px;
}

.building-blocks__footer--1-amy-sandy .block-footer__contact span {
  display: block;
  margin: 0 0 5px;
}

.building-blocks__footer--1-amy-sandy .block-footer__contact a {
  display: inline-block;
  padding: 5px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  -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;
  line-height: 1.4;
  outline: none !important;
  text-decoration: none !important;
  letter-spacing: 1px;
}

.building-blocks__footer--1-amy-sandy .block-footer__contact a:hover,
.building-blocks__footer--1-amy-sandy .block-footer__contact a em {
  color: #faa00b !important;
}

.building-blocks__footer--1-amy-sandy
  .block-footer__contact
  span.ftr-loc
  em.ai-font-location-c {
  top: 5px;
}

.building-blocks__footer--1-amy-sandy .block-footer__contact a em {
  display: block;
  margin: 0 0 11px;
}

.building-blocks__footer--1-amy-sandy .block-footer__contact em.ai-font-phone {
  font-size: 14px;
  display: block;
  color: #faa00b;
}

.building-blocks__footer--1-amy-sandy
  .block-footer__contact
  em.ai-font-envelope-f {
  font-size: 13px;
  display: block;
  color: #faa00b;
}

.building-blocks__footer--1-amy-sandy
  .block-footer__contact
  em.ai-font-location-c {
  font-size: 20px;
}

.building-blocks__footer--1-amy-sandy .block-footer__smi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 19px;
  gap: 10px;
}

.building-blocks__footer--1-amy-sandy .block-footer__smi a {
  color: #faa00b;
  font-size: 22px;
  padding: 5px 6px;
  -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;
  outline: none !important;
  text-decoration: none !important;
}

.building-blocks__footer--1-amy-sandy .block-footer__smi a:hover {
  color: #000;
}

.building-blocks__footer--1-amy-sandy .block-footer__nav {
  margin-top: 46px;
  text-align: center;
}

.building-blocks__footer--1-amy-sandy ul.block-footer__nav-list {
  font-size: 0;
  margin: 0 0;
  padding: 0;
}

.building-blocks__footer--1-amy-sandy ul.block-footer__nav-list > li > a {
  display: inline-block;
  padding: 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  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;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  outline: none !important;
  text-decoration: none !important;
}

.building-blocks__footer--1-amy-sandy ul.block-footer__nav-list li a:hover {
  color: #faa00b;
}

.building-blocks__footer--1-amy-sandy ul.block-footer__nav-list > li {
  margin: 0 12px 11px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.building-blocks__footer--1-amy-sandy .block-footer__disclaimer {
  font-size: 13px;
  color: #000;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05px;
  margin: 27px 0 0;
  position: relative;
}

.building-blocks__footer--1-amy-sandy .block-footer__disclaimer a {
  -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;
  color: #000;
  outline: none !important;
  text-decoration: none !important;
}

.building-blocks__footer--1-amy-sandy .block-footer__disclaimer a:hover {
  color: #faa00b;
}

.building-blocks__footer--1-amy-sandy .block-footer__copyright {
  margin-top: 15px;
  text-align: center;
}

.building-blocks__footer--1-amy-sandy .block-footer__copyright,
.building-blocks__footer--1-amy-sandy .block-footer__copyright a {
  font-size: 13px;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.85px;
  font-family: var(--font-family-default);
  font-weight: 400;
  -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;
  outline: none !important;
  text-decoration: none !important;
  position: relative;
}

.building-blocks__footer--1-amy-sandy .block-footer__copyright a:hover {
  color: #faa00b;
}

.building-blocks__footer--1-amy-sandy .block-footer__copyright a[href="https://www.agentimage.com"]
{
  text-decoration: underline !important;
  color: #faa00b;
}

.building-blocks__footer--1-amy-sandy .block-footer__copyright a[href="https://www.agentimage.com"]:hover
{
  color: #000;
}

.building-blocks__footer--1-amy-sandy .block-footer__copyright span {
  color: #faa00b;
  font-weight: 700;
}

.building-blocks__footer--1-amy-sandy .block-footer__mls {
  font-size: 32px;
  color: #faa00b;
  text-align: center;
  margin: 28px 0 0;
}

.building-blocks__footer--1-amy-sandy .block-footer__mls em {
  margin: 0 5px;
}

.ai-font-credit-card {
  font-size: 12px;
}

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

.ftr-logo a {
  position: relative;
  display: block;
}

.ftr-logo a:nth-child(2):before {
  position: absolute;
  content: "";
  left: 0;
  height: 60%;
  width: 1px;
  background: #716f71;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.ftr-logo img {
  margin: 0 43px;
}

.ftr-logo .logo-text {
  font-size: 70px;
}
.ftr-logo .logo-text span {
  font-size: 29px;
}

/* 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-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
  display: 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;
}

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

.wpcf7 form .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) */
#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
  color: #faa00b;
  font-size: 64px;
  font-weight: 300;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

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

.post-page-buyer-seller-center .footer-contact-form,
.user-navigated-from-a-page-on-the-site .footer-contact-form {
  display: none;
}

.main-nav li.menu-item-26 a {
  pointer-events: none;
}

.main-nav li.menu-item-26 .sub-menu li a {
  pointer-events: all;
}

.building-blocks__footer--1-amy-sandy
  ul.block-footer__nav-list
  > li.menu-item-26
  > a {
  pointer-events: none;
}

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

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

.aios-custom-ihomefinder-results-template #content-full .entry-title {
  width: 100% !important;
  padding: 0 !important;
}

#ihf-main-container.ihf-modal-container .modal input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none !important;
  box-shadow: none !important;
  display: block;
  width: 100%;
  height: 40px;
  font-size: 15px;
  font-weight: 400;
  border: none !important;
  border-bottom: 1px solid #a5a5a5 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: #636363;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
}

.aios-custom-ihomefinder-shortcode .leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}

.aios-custom-ihomefinder-printable-template #breadcrumbs {
  display: none;
}

.page-id-18 #inner-page-wrapper #breadcrumbs {
  padding: 5px 0 !important;
}

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

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

@media only screen and (max-width: 1440px) {
  .hdr-info {
    right: 30px;
    bottom: 100%;
    padding-bottom: 14px;
  }

  .header-logo {
    width: 350px;
    margin: 0 46px;
  }
}

@media only screen and (max-width: 1366px) {
  .main-nav li {
    margin: 0 9px;
  }
}

@media only screen and (max-width: 1280px) {
  .main-nav .sub-menu {
    min-width: 200px;
  }
  .main-nav li a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-logo {
    margin: 0 10px;
  }

  .main-nav li {
    margin: 0 5px;
  }

  .main-nav li a {
    font-size: 12px;
  }

  .header-logo {
    width: 280px;
  }
}

/* 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) {
  .aios-mobile-header-wrapper {
    display: block !important;
  }

  .fixed-header,
  .nav-wrapp,
  .fixed_logo,
  .aios-split-nav,
  .hdr-info-wrap,
  .ftr-logo a:nth-child(2):before {
    display: none;
  }

  #header-wrap {
    position: relative;
    z-index: 2;
    margin-top: 52px;
    background: #272727;
  }
  #header-wrap > .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .aios-split-nav,
  .burger-menu-icon {
    display: none;
  }
  .header-logo {
    width: 100%;
    padding: 20px 0;
  }

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

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

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

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

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

  .building-blocks__footer--1-amy-sandy {
    padding: 50px 15px;
  }

  .building-blocks__footer--1-amy-sandy .block-footer__contact {
    align-items: center;
    margin-top: 50px;
    gap: 15px;
    flex-direction: column;
  }

  .building-blocks__footer--1-amy-sandy ul.block-footer__nav-list > li {
    margin: 0 0 11px;
    display: block;
  }

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

  .ftr-logo {
    display: block;
  }
  .ftr-logo a {
    text-align: center;
  }
  .ftr-logo img {
    margin: 10px auto !important;
  }

  .global-title-wrap span.num-sec {
    text-align: unset;
  }
  .title-flex div.global-title-wrap {
    padding-left: 0;
  }

  .post-page-about .alignnone {
    display: block;
    margin: 15px auto !important;
  }
}
/* 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;
  }

  .building-blocks__footer--1-amy-sandy .block-footer__logo span a {
    font-size: 45px;
  }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
  .bttn-flex {
    display: block;
  }
  .ftr-logo img {
    margin: 10px auto !important;
    width: 100%;
    height: auto;
  }

  .global-title-widget {
    font-size: 30px !important;
  }
}
@media only screen and (max-width: 360px) {
  .global-title-widget {
    font-size: 24px !important;
  }
  .global-title-wrap span.num-sec {
    font-size: 14px;
  }

  .building-blocks__get-in-touch--1-mosby .block-get-in-touch__title {
    font-size: 40px;
  }

  .building-blocks__get-in-touch--1-mosby .block-get-in-touch__fields {
    width: 100%;
  }
}

/* fuoc */
.hdr-info .cont-phone a,
.hdr-info .cont-email a {
  color: white !important;
}
