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

html {
  scroll-behavior: smooth;
}

html,
body {
  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);
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

html.show_menu,
body.show_menu {
  overflow: hidden;
}

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

.pos-rel {
  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;
}

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

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

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

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

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

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

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

.ju-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;
  margin-bottom: 60px;
}

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

body.pojo-a11y-readable-font [class*="ai-font"] {
  font-family: agentimage !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;
}

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

.site-title h2 {
  font-family: var(--font-family-title);
  font-size: clamp(60px, 5vw, 80px);
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
  padding-left: min(2.3125vw, 37px);
}

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

.site-title h2 span {
  display: block;
  font-family: var(--font-family-default);
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: 0.45em;
  color: #565656;
  padding-left: 5px;
  padding-bottom: 3px;
}

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

.site-title em {
  position: absolute;
  bottom: 15px;
  left: -44px;
  font-family: var(--font-family-title);
  font-size: clamp(24px, 2.167vw, 30px);
  font-style: normal;
  color: #d5d5d5;
}

.site-title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 2px;
  height: calc(100% - 24px);
  background: var(--primary);
}

.site-title.is-text-white::before {
  background: #999999;
}

.site-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(210px, 18.33vw, 251px);
  height: 52px;
  border: 2px solid var(--primary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333333;
  text-align: center;
  padding-top: 4px;
}

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

.hdr-inner {
  height: 100%;
  width: min(95%, 1330px);
  margin: auto;
}

.hdr-logo {
  width: 290px;
  padding-left: 1px;
  width: 25%;
}

.hdr-info {
  padding-top: 11px;
  width: 75%;
}

.hdr-nav {}

.hdr-nav ul#nav {
  font-size: 0;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: right;
  padding-right: min(3.5625vw, 57px);
  padding-top: min(0.25vw, 4px);
  gap: min(2.625vw, 42px);
}

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

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

.hdr-nav ul#nav>li:hover>a {
  opacity: 0.75;
}

.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: 28px;
  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:hover>ul.sub-menu {
  padding-top: 23px;
  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: min(1.05vw, 13px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  height: 30px;
  z-index: 4;
  background: var(--primary);
}

.hdr-nav ul#nav li ul.sub-menu li a:hover {
  color: #000;
  background: #fff;
}

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

.bm_button {
  cursor: pointer;
  display: flex;
  justify-content: right;
  width: 36px;
}

.bm_button_line {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column;
  -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;
}

.bm_button_line span {
  width: 100%;
  height: 2px;
  display: block;
  background: #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;
}


.line+.line {
  margin-top: 8px;
}

.bm_button:hover .bm_button_line:hover span {
  opacity: 0.75;
}

.hdr-fixed {
  background: var(--primary);
  padding: 4px 0 14px;
}

.hdr-fixed .hdr-nav ul#nav>li>ul.sub-menu {
  padding-top: 40px;
}

.hdr-fixed .hdr-nav ul#nav>li:hover>ul.sub-menu {
  padding-top: 35px;
}

/**/
/**/

.burger_menu_content_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1031;
  right: -50%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: right;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.burger_menu_content_wrap.show_menu {
  right: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bm_slide_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.burger_wrap {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}

.burger_menu_content_wrap.show_menu .bm_slide_overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.burger_menu_content {
  width: min(50%, 639px);
  background: var(--primary);
  height: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  position: relative;
  z-index: 2;
  font-size: 0;
  color: var(--font-color-secondary);
  overflow-y: scroll;
  overflow-y: hidden;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bm_top_wrap {
  position: relative;
}

.bm_close_btn {
  position: absolute;
  top: 35px;
  right: 32px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  opacity: 20%;
  -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;
}

.bm_close_btn:hover {
  opacity: 1;
}

.bm-btn-close {
  position: relative;
}

.bm-btn-close i {
  font-size: clamp(25px, 2vw, 31px);
}

.bm-row {
  padding-top: min(4.75vw, 76px);
  padding-left: min(5.5vw, 88px);
  padding-right: min(1.25vw, 20px);
  padding-bottom: min(4.75vw, 76px);
}

.bm-heading {
  font-family: var(--font-family-title);
  font-size: clamp(40px, 3.58vw, 50px);
  letter-spacing: 0.13em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 33px;
}

.bm-nav {
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 72px 2px 0;
  margin: 2px;
}

.bm-nav::before,
.bm-nav::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 2px;
  left: 0;
  background: #999999;
}

.bm-nav::before {
  top: 0;
}

.bm-nav::after {
  bottom: 3px;
}

.bm-nav ul#bm-nav {
  font-size: 0;
  column-count: 2;
  gap: min(7vw, 112px);
}

.bm-nav ul#bm-nav>li {
  display: block;
  position: relative;
  min-height: min(8.5vw, 92px);
}

.bm-nav ul#bm-nav>li.pad-bot,
.bm-nav ul#bm-nav>li:last-child {
  margin-bottom: 70px;
  margin-bottom: 130px;
}

.bm-nav ul#bm-nav>li>a {
  font-family: var(--font-family-title);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 0.07em;
  color: #fff;
  text-transform: uppercase;
  display: block;

}

.bm-nav ul#bm-nav li ul.sub-menu {
  display: block;
  padding: 0;
  list-style: none outside none;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 25px;
}

.bm-nav ul.sub-menu>li {
  padding: 7px 0;
}

.bm-nav ul.sub-menu>li>a {
  font-size: clamp(12px, 1.05vw, 14px);
  color: #fff;
  letter-spacing: 0.1em;
  display: block;
}

.bm-contact {}

.bm-contact ul {
  padding-top: 40px;
  padding-left: 5px;
}

.bm-contact ul li {
  display: flex;
  align-items: center;
  padding-bottom: 23px;
}

.bm-contact ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(15px, 1.33vw, 18px);
  letter-spacing: 0.105em;
  line-height: 1.2;
}

.bm-contact ul li a i {
  font-size: 12px;
  margin-right: 17px;
}

.bm-contact ul li a i.ai-font-phone {
  font-size: 16px;
  margin-right: 18px;
}


.bm-nav ul#bm-nav li a:hover,
.bm-nav ul.sub-menu>li>a:hover,
.bm-contact ul li a:hover {
  opacity: 0.75;
}

/**/
/**/


.ftr-cf {}

.cf-wrap {}

.cf-left {
  width: 50%;
  background: #999999;
  /* height: 800px; */
  padding: clamp(65px, 7.5vw, 111px) 0;
}

.cf-title {
  padding-left: min(3.6875vw, 59px);
}

.cf-title .site-title {
  margin: auto;
}

.cf-title .site-title h2 {
  padding-left: min(2.3125vw, 30px);
  letter-spacing: 0.1em;
}

.cf-title .site-title::before {
  background: #fff;
}


.cf-form {
  width: min(70%, 531px);
  margin: auto;
  padding-top: 7px;
}

.cf-form form {
  position: relative;
}

.cf-form form .info-holder {
  gap: min(1.1875vw, 19px);
  padding: clamp(20px, 2vw, 30px) 0;
}

.cf-form form .info-item {
  width: 100%;
}

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

.cf-form form input:not([type="submit"]),
.cf-form form textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: clamp(12px, 1.05vw, 14px);
  color: #fff;
  letter-spacing: 0.16em;
  height: clamp(45px, 4vw, 53px);
  background: transparent;
  border-bottom: 2px solid #fff;
  text-transform: uppercase;
  padding: 9px 0;
}

.cf-form form textarea {
  height: 93px;
  resize: none;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cf-btn {
  margin: auto;
  padding: 19px 0 5px;
}

.cf-btn .site-btn {
  background: transparent;
}

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

.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: -3px;
  left: auto;
  right: 0;
  z-index: 3;
  font-size: 12px;
  line-height: 18px;
}

.cf-form .wpcf7 form .wpcf7-response-output {
  width: 100%;
  left: 0;
  right: 0;
  color: #fff;
  margin: 10px auto;
  position: absolute;
}

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


.cf-right {
  width: 50%;
  background: var(--primary);
  padding: clamp(52px, 5.0625vw, 81px);
}

.cf-block {
  width: min(80%, 426px);
  margin: auto;
  flex-direction: column;
  gap: 29px;
  padding-bottom: clamp(40px, 4vw, 48px);
}

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

.cf-info {
  flex-direction: column;
  gap: 24px;
  padding: clamp(40px, 4vw, 44px) min(0.625vw, 10px);
  padding-left: 0;
}

.cf-info::before,
.cf-info:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 2px;
  background: #fff;
  opacity: 20%;
}

.cf-info::before {
  top: 0;
}

.cf-info:after {
  bottom: 0;
}

.cf-info li:first-child {
  /* padding-top: min(0.3125vw, 5px);
  padding-bottom: min(1vw, 16px); */
}

.cf-info li a {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 1.33vw, 18px);
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.cf-info li a:hover {
  opacity: 0.75;
}

.cf-info li a i {}

.cf-info li a i.ai-font-location-c {
  font-size: 22px;
  margin-right: 2px;
  margin-top: -3px;
}

.cf-info li a i.ai-font-envelope-filled-a {
  font-size: 13px;
  margin-top: 5px;
  margin-right: 10px;
}

.cf-info li a i.ai-font-phone {
  font-size: 17px;
  margin-right: 8px;
  margin-top: 1px;
}

.cf-smi {
  gap: min(0.875vw, 14px);
  padding: clamp(40px, 4vw, 46px) 0;
}

.cf-smi li {}

.cf-smi li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 47px;
  height: 46px;
  color: #fff;
  font-size: clamp(15px, 1.33vw, 18px);
}

.cf-smi li a:hover {
  background: #fff;
  color: var(--primary);
}

/**/
/**/

footer#ftr {
  /* height: 652px; */
  padding: clamp(70px, 7.375vw, 118px) 0;
}

.ftr-wrap {
  margin: auto;
  width: min(90%, 1332px);
}

.ftr-top {
  padding-bottom: clamp(50px, 5.04vw, 59px);
  border-bottom: 1px solid #e4e4e4;
  gap: min(9.1875vw, 147px);
}

.ftr-left {
  width: calc((100% - min(34.234234234234%, 456px)) - min(9.1875vw, 147px));
}

.ftr-logo {
  padding: 3px 0;
  margin: auto;
  margin-right: 0;
  max-width: min(42.5%, 277px);
}

.ftr-contact {
  padding-top: min(3vw, 37px);
}

.ftr-contact  span.spacer {
    width: 1px;
    height: 30px;
    background: #000;
    display: block;
}

.ftr-info {width: 100%;}

.ftr-info li {
  position: relative;
  /* padding-right: min(2.5625vw, 41px); */
}

.ftr-info li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #000;
  opacity: 20%;
  top: 50%;
  right: min(1.125vw, 18px);
  transform: translateY(-50%);
  opacity: 0;
}

.ftr-info li a {
  font-size: clamp(13px, 1.33vw, 18px);
  letter-spacing: 0.0525em;
  color: #000;
}

.ftr-smi {
  /* padding-left: 12px;
  padding-top: 1px;*/
  gap: min(1vw, 15px);
}

.ftr-smi li {}

.ftr-smi li a {
  color: var(--primary);
  font-size: clamp(18px, 2vw, 26px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftr-right {
  width: min(34.234234234234%, 456px);
}

.ftr-heading {
  font-family: var(--font-family-title);
  font-size: clamp(23px, 2.17vw, 31px);
  letter-spacing: 0.132em;
  line-height: 1.15;
  color: var(--primary);
  text-transform: uppercase;
}

.ftr-form {
  width: 100%;
  margin-top: 15px;
}

.ftr-form>div {
  width: 100%;
}

.ftr-form form {
  position: relative;
}

.ftr-form input {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background: #fff;
  border-bottom: 2px solid var(--primary);
  font-size: clamp(12px, 1.09vw, 14px);
  letter-spacing: 0.05em;
  color: #999999;
  padding-right: 40px;
  text-overflow: ellipsis;
}

.ftr-form button {
  position: absolute;
  right: -9px;
  top: 53%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  outline: none;
}

.ftr-form .wpcf7-spinner {
  position: absolute;
  margin: auto;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}

.ftr-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  width: auto;
  top: -2px;
  left: 0;
  font-size: 12px;
}

.ftr-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  margin: 5px auto;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

.ftr-bottom {
  padding-top: clamp(40px, 4.03vw, 52px);
}

.ftr-disclaimer,
.ftr-copyright,
.ftr-disclaimer a,
.ftr-copyright a {
  font-size: 12px;
  color: #565656;
  letter-spacing: 0.055em;
  line-height: 2.1;
}

.ftr-disclaimer p {
  padding-bottom: 10px;
}

.ftr-copyright p {
  padding: 10px 0;
  letter-spacing: 0.045em;
}

.ftr-mls {
  padding: 21px 0 10px;
  color: var(--primary);
  font-size: 30px;
  gap: 13px;
}

.ftr-mls i.ai-font-eho {
  font-size: 24px;
}

.ftr-info li a:hover,
.ftr-smi li a:hover,
.ftr-disclaimer a:hover,
.ftr-copyright a:hover,
.ftr-form button: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);
}

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

#content .entry-title,
#content .archive-title {
  font-family: var(--font-family-title);
  font-size: clamp(60px, 5vw, 80px);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
  line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */

.ai-contact-wrap span.context-email em.ai-font-location-c {
  color: #5b5b5b;
  min-width: 24px;
  font-size: 21px;
}

#content .review-widget>div>div {
  flex-wrap: wrap;
}

#content h2.aios-contact-title {
  font-size: 40px;
}

#content h2.aios-contact-title span {
  color: var(--primary);
}

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

body .aios-contact-form div.wpcf7-response-output {
  margin-top: -10px;
}

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

#ihf-main-container #ihf-detail-extrainfotabs,
#ihf-main-container #ihf-search-location-tabs,
#ihf-main-container #ihf-main-search-form .chosen-results {
  margin: 0;
  padding: 0;
}

#ihf-main-container #ihf-sort-values {
  z-index: 1001;
}

#ihf-main-container #ihf-detail-features-tab>.row {
  margin-left: 0;
  margin-right: 0;
}

ul.sitemap-list li.page-item--1 {
  display: none;
}

.error-page-content-wrapper .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  width: auto;
  left: auto;
  right: 2px;
  font-size: 11px;
  top: 2px;
}

.error-page-content-wrapper .wpcf7 form .wpcf7-response-output {
  position: absolute;
  width: 100%;
  text-align: center;
  margin: auto;
  font-size: 13px;
}

#ihf-main-container .ihf-listing-search-results>.row.mb-10.mt-25>.col-xs-8>.btn-group.pull-right>.btn-group .btn {
  padding: 6px 11px;
}

#ihf-main-container .ihf-listing-search-results>.row.mb-10.mt-25>.col-xs-4 {
  padding-top: 7px;
}

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

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

.ihf-details-template #listings-details .listings-slideshow-splide.splide-default .listings-slideshow-splide-text span,
.ihf-details-template #listings-details .listings-slideshow-text span  {
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2), 0px 0px 4px rgb(0, 0, 0);
}

.ihf-details-template #listings-details .listings-slideshow-splide.splide-default .listings-slideshow-splide-text a.aios-scroll-to,
.ihf-details-template #listings-details .listings-slideshow-text span.scroll-button a.aios-scroll-to {
  color: #fff;
}

.ihf-container-modal #ihf-main-container.ihf-modal-container .nav-tabs > li:not(.active) > a:hover {
  background: #ccc;
}

.single-aios-communities #inner-page-wrapper .container {
  padding: 0 5.3125% !important;
}
.single-aios-communities .community-tabs-sticky .community-title,
.single-aios-communities #content .community-content h2 {
  color: var(--primary);
  font-size: 30px;
  font-weight: 400 !important;
  font-family: var(--font-family-title);
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */

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

  .site-title h2,
  #content .entry-title,
  #content .archive-title {
    font-size: clamp(47px, 4.83vw, 80px);
  }
}

@media only screen and (max-width: 1199px) {
  .ftr-smi {
    /* gap: 1.25vw; */
  }

}

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

  html.show_menu,
  body.show_menu {
    overflow-y: initial;
  }

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

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

  .site-title h2 {
    padding: 0 !important;
    margin-top: 40px;
    font-size: clamp(33px, 7.5vw, 45px);

  }

  #content .entry-title,
  #content .archive-title {
    font-size: clamp(31px, 7.5vw, 45px);

  }

  .site-title::before {
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
  }

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

  .site-title em {
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 10px;
  }

  #main-header {
    position: relative;
    margin-top: 52px;
    background: var(--primary);
  }

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

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

  .cf-left {
    width: 100%;
  }

  .cf-title {
    padding-left: 0;
  }

  .cf-form {
    width: min(85%, 531px);
  }

  .cf-form form .info-holder {
    gap: 15px;
  }

  .cf-form form input:not([type="submit"]),
  .cf-form form textarea {
    font-size: 13px;
  }

  .cf-right {
    width: 100%;
    padding: 60px 0;
  }

  .cf-block {
    width: min(85%, 426px);
  }

  .cf-info li a {
    font-size: 16px;
  }

  .cf-smi {
    padding-bottom: 20px;
    gap: 8px;
  }

  .cf-smi li a {
    font-size: 16px;
    width: 43px;
    height: 43px;
  }

  .ftr-top {
    justify-content: center;
    gap: 50px;
  }

  .ftr-left {
    width: 100%;
  }

  .ftr-logo {
    max-width: 277px;
    margin: auto;
  }

  .ftr-contact {
    padding-top: 50px;
  }

  .ftr-block {
    justify-content: center;
    gap: 30px;
  }

  .ftr-block ul {
    gap: 30px 20px;
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .ftr-info li {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .ftr-smi li {
    width: auto;
}

  .ftr-info li::before {
    top: calc(100% + 15px);
    width: 60px;
    height: 1px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .ftr-info li a {
    font-size: 16px;
  }

  .ftr-smi li a {
    font-size: 24px;
    margin: 0 5px;
  }

  .ftr-right {
    width: min(95%, 456px);
  }

  .ftr-heading {
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
  }

  .ftr-disclaimer,
  .ftr-copyright {
    text-align: center;
  }

  .ftr-mls {
    padding: 10px 0 0;
    justify-content: center;
  }

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

  body #aios-testimonials.aios-testimonials-page h1 {
    font-size: clamp(31px, 7.5vw, 45px);
  }

}

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


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

  .cf-info li a {
    font-size: 13px;
  }

  .cf-info li a i.ai-font-location-c {
    font-size: 20px;
  }

  .cf-info li a i.ai-font-envelope-filled-a {
    margin-top: 2px;
  }

  .cf-info li a i.ai-font-phone {
    font-size: 15px;
  }
}

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