:root {
  /** Font default */
  --font-family-default: "Cormorant Garamond", sans-serif;
  --font-family-title: "Monsieur La Doulaise", serif;
  --font-mea-culpa: "Mea Culpa", serif;
  --font-spectral: "Spectral", serif;
  --font-rouge-script: "Rouge Script", cursive;
  --font-size-default: 17px;
  --font-size-title: 20px;
  --font-color-default: #000000;
  --font-color-title: #6c757d;
  /** Use for input, button, and any other element */
  --primary: #bb9a65;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .3s cubic-bezier(.4, 0, .2, 1);

  --gradient: linear-gradient(180deg, var(--primary), #816b32, var(--primary)) 10%;
  --gradient-hover: linear-gradient(90deg, var(--primary), #e3d7c1, var(--primary)) 30%;

}

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

body.show_menu {
  overflow-y: hidden;
}

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

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

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

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

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

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

.relative {
  position: relative;
}

.block {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

.canvas_img {
  position: relative;
}

.canvas_img canvas {
  width: 100%;
  height: auto;
  display: block;
}

.canvas_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

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

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

.parallax_bg canvas {
  background-attachment: fixed;
}

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

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

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

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

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

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

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

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

.site-title h1,
.site-title h2 {
  font-family: var(--font-family-title);
  font-size: clamp(60px, 5vw, 78px);
  font-size: clamp(60px, 6vw, 93px);
  line-height: 1;
  color: var(--primary);
}

.site-title h1 span,
.site-title h2 span {
  display: block;
  font-family: var(--font-family-default);
  font-size: clamp(17px, 1.375vw, 21.48px);
  font-size: clamp(17px, 2vw, 32px);
  letter-spacing: 0.145em;
  color: #000;
  text-transform: uppercase;
  padding: 6px 0;
}

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

.site-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(254px, 22.5vw, 358px);
  height: 58px;
  outline: none;
  padding: 0;
  padding-left: 40px;
  background: transparent;
  border-image: var(--gradient);
  border-width: 1px;
  border-style: solid;
  -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;
}

.site-btn:hover {
  border-image: var(--gradient-hover);
}

.site-btn span {
  font-size: clamp(13px, 1.0625vw, 17px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
  -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;
}

.site-btn.is-white span,
.site-btn:hover span {
  color: #fff;
}

.site-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hover);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-btn:hover::before {
  opacity: 1;
}

.site-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 39px;
  left: min(1.5625vw, 25px);
  top: 50%;
  transform: translateY(-50%);
  background: url(/wp-content/uploads/2024/08/logo_monogram.png);
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-btn:hover::after {
  filter: brightness(5);
}

.slick-arrows {
  pointer-events: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slick-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  cursor: pointer;
  pointer-events: auto;
  border: 1px solid var(--primary);
  border-radius: 100%;
  font-size: 20px;
  color: var(--primary);
  -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-arrow:hover {
  /* border-color: transparent; */
  color: #fff;
}

.slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hover);
  z-index: -1;
  pointer-events: none;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slick-arrow:hover::before {
  opacity: 1;
}

.slick-arrow i {
  font-weight: 600;
}

.slick-prev {
  padding-right: 3px;
}

.slick-next {
  padding-left: 3px;
}

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

/* Global */

/**/

.header {
  z-index: 50;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 27px 0;
}

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

.hdr-logo {
  width: 418px;
  width: 29%;
  padding-right: 9px;
}

.hdr-logo img.df-logo {
  margin-left: 16px;
  max-width: calc(100% - 16px);
}

.hdr-logo img.fxd-logo {
  opacity: 0;
  width: 0;
}

.hdr-info {
  width: 1062px;
  width: 71%;
  padding-bottom: 25px;
  -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 {}

.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);
  gap: min(2.5625vw, 41px);
}

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

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

.hdr-nav ul#nav>li>a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -13px;
  background: var(--primary);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.hdr-nav ul#nav li ul.sub-menu {
  display: block;
  position: absolute;
  left: -150%;
  right: -150%;
  text-align: center;
  padding: 0;
  margin: 0 auto !important;
  list-style: none outside none;
  width: 100%;
  min-width: 195px;
  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: clamp(11px, 1vw, 16px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  z-index: 4;
  background: #000;
  padding: 8px;
}

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

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

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

.bm_button {
  cursor: pointer;
  width: 39px;
}

.bm_button_line span {
  width: 29px;
  height: 2px;
  display: block;
  float: right;
  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: 9px;
  width: 100%;
}

.bm_button_line:hover span {
  background: var(--primary);
}

.hdr-fixed {
  background: #000;
  padding: 18px 0 14px;
}

.hdr-fixed .hdr-logo {
  padding-left: 0;
}

.hdr-fixed .hdr-logo img.df-logo {
  opacity: 0;
  width: 0;
}

.hdr-fixed .hdr-logo img.fxd-logo {
  opacity: 1;
  width: auto;
}

.hdr-fixed .hdr-info {
  padding-bottom: 0;
}

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

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

/**/
/**/

.burger_menu_content_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1031;
  right: -50%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -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: 100%;
  min-height: 100%;
  z-index: 2;
  font-size: 0;
  overflow-y: scroll;
  overflow-y: hidden;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bm-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 90%;
  z-index: 1;
  pointer-events: none;
}

.bm_close_btn {
  position: absolute;
  top: 70px;
  right: 4.0625vw;
  font-size: 28px;
  color: var(--primary);
  text-align: center;
  cursor: pointer;
  -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 {
  color: #000;
}

.bm_close_btn i {
  font-weight: 700;
}

.bm-row {
  padding: 45px 8.9375vw;
  margin-right: 14px;
  padding: 45px 0;
  padding-right: 14px;
  margin: auto;
  width: min(90%, 1314px);
}

.bm-logo {}

.bm-logo ul {}

.bm-logo ul li {}

.bm-nav {}

.bm-nav ul#bm-nav {
  font-size: 0;
  display: flex;
  justify-content: space-between;
  gap: min(2.0625vw, 33px);
  padding: 71px 6px 66px 14px;
}

.bm-nav ul#bm-nav li {
  display: block;
  position: relative;
}

.bm-nav ul#bm-nav li a:hover {
  color: var(--primary);
}

.bm-nav ul#bm-nav>li>a {
  font-size: clamp(14px, 1.3125vw, 21px);
  letter-spacing: 0.05em;
  color: #000;
  text-transform: uppercase;
  display: block;
}

.bm-nav ul#bm-nav li ul.sub-menu {
  padding-top: 28px;
}

.bm-nav ul.sub-menu>li {
  padding-bottom: 18px;
}

.bm-nav ul.sub-menu li a {
  font-size: clamp(12px, 1.125vw, 18px);
  color: #5e5e5e;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}

.bm-nav ul#bm-nav li ul.sub-menu ul {
  padding-top: 17px;
  padding-left: 11px;
}

.bm-nav ul#bm-nav li ul.sub-menu ul.sub-menu>li::before {
  content: "";
  position: absolute;
  left: -11px;
  top: clamp(4px, 0.5vw, 8px);
  width: 4px;
  height: 4px;
  background: #5e5e5e;
  border-radius: 100%;
  pointer-events: none;
}

.bm-contact {}

.bm-contact ul {
  gap: min(1.5625vw, 25px);
}

.bm-contact ul li {}

.bm-contact ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(15px, 1.2vw, 18.06px);
  font-weight: 300;
  font-variant: lining-nums;
  letter-spacing: 0.03em;
  color: #404040;
  text-align: center;
}

.bm-contact ul li:last-child a {
  letter-spacing: 0.07em;
}

.bm-contact ul li a:hover {
  color: var(--primary);
}

.bm-contact ul li a i {
  color: var(--primary);
  font-size: 15px;
  margin-right: 7px;
  margin-top: 3px;
}

.bm-contact ul li a i.ai-font-envelope-filled-a {
  font-size: 11px;
  margin-right: 15px;
  margin-top: 4px;
}

.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 {
  /* height: 704px; */
}

.cf-bg {
  width: 79.25%;
}

.cf-bg::before,
.cf-bg::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, #fff);
  z-index: 1;
}

.ip-sellers-difference-img::before {
  background: none !important;
}

.ip-sellers-difference-title h2 {
  font-family: var(--font-family-default);
  text-transform: uppercase;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 0.95;
  text-shadow: 1px 1px 2px black;
}

.ip-buyers-difference-img::before {
  background: none !important;
}

.ip-buyers-difference-title h2 {
  text-shadow: 1px 1px 2px black;
}

.ip-sellers-difference-title .site-title h2 {
  color: white;
}

.ip-sellers-difference-title .site-title h2 span {
  color: white;
}

.ip-buyers-difference-title .site-title h2 {
  color: white;
}

.ip-buyers-difference-title .site-title h2 span {
  color: white;
}

.cf-bg canvas {
  filter: brightness(50%);
}

.cf-wrap {
  width: min(81%, 1280px);
  margin: auto;
  gap: calc((334/1280)*100%);
  padding-top: min(2vw, 31px);
}

.cf-left {
  width: calc((417/1280)*100%);
  padding-bottom: min(5.75vw, 92px);
}

.cf-left .cf-title .site-title {
  margin: 0;
}

.cf-desc {
  padding-top: 21px;
}

.cf-desc p {
  font-size: clamp(14px, 1.0625vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.045em;
  color: #fff;
  padding-bottom: 5px;
}

.cf-right {
  width: calc((529/1280)*100%);
  padding: min(5.375vw, 86px) 0;
}

.cf-form {}

.cf-form form .info-holder {}

.cf-form form .info-item {
  width: 100%;
  padding: 5px 0 6px;
}

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

.cf-form form input,
.cf-form form textarea {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  height: 58px;
  font-size: clamp(18px, 1.0625vw, 23px);
  font-weight: 300;
  letter-spacing: 0.045em;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
}

.cf-form form textarea {
  resize: none;
  height: 94px;
  padding-top: 28px;
}

.cf-btn {}

.cf-btn .site-btn {
  width: clamp(200px, 15.75vw, 252px) !important;
  margin-top: 50px;
}

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

.cf-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  right: auto;
  z-index: 3;
  font-size: 13px;
}

.cf-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  color: #000;
  top: calc(100% + 20px);
  margin: auto;
  font-size: 15px;
}

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

/**/
/**/
.ftr {
  /* height: 713px; */
  padding: 68px 0;
}

.ftr-wrap {
  width: min(90%, 1140px);
  margin: auto;
  padding-top: min(1.25vw, 20px);
}

.ftr-logo {
  width: 85%;
  margin: auto;
}

.ftr-logo ul {
  padding: 5px 0;
}

.ftr-logo ul li {
  max-width: 50%;
  padding: 0 min(4.4375vw, 71px);
  border-right: 1px solid rgba(0, 0, 0, 0.2)
}

.ftr-logo ul li:last-child {
  border: none;
}

.ftr-contact {}

.ftr-contact ul {
  padding: min(3.9375vw, 63px) 0;
  gap: min(1.5625vw, 25px);
}

.ftr-contact ul li {}

.ftr-contact ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(15px, 1.2vw, 18.06px);
  font-weight: 300;
  font-variant: lining-nums;
  letter-spacing: 0.03em;
  color: #404040;
  text-align: center;
}

.ftr-contact ul li:last-child a {
  letter-spacing: 0.07em;
}

.ftr-contact ul li a:hover {
  color: var(--primary);
}

.ftr-contact ul li a i {
  color: var(--primary);
  font-size: 15px;
  margin-right: 7px;
  margin-top: 3px;
}

.ftr-contact ul li a i.ai-font-envelope-filled-a {
  font-size: 11px;
  margin-right: 15px;
  margin-top: 4px;
}

.ftr-wrap hr {
  margin: 0;
  border-top-color: #000;
  opacity: 20%;
}

.ftr-nav {}

.ftr-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: min(3.5vw, 56px);
  gap: min(2.625vw, 42px);
}

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

.ftr-nav ul li a {
  font-size: clamp(15px, 1.125vw, 18px);
  letter-spacing: 0.05em;
  color: #404040;
  text-align: center;
  text-transform: uppercase;
}

.ftr-nav ul li a:hover {
  color: var(--primary);
}

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

.ftr-disclaimer,
.ftr-copyright {
  padding-top: 20px;
}

.ftr-disclaimer p,
.ftr-copyright p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #404040;
  text-align: center;
  padding-bottom: 9px;
}

.ftr-disclaimer p a,
.ftr-copyright p a {
  color: #404040;
}

.ftr-disclaimer p a:hover,
.ftr-copyright p a:hover {
  color: var(--primary);
}

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

.ftr-mls {
  color: #000;
  font-size: 33px;
  gap: 11px;
  padding-top: 20px;
}

.ftr-mls i.ai-font-eho {
  font-size: 26px;
  margin-top: 3px;
}

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

#content {
  opacity: 0;
}

#content .entry-title,
#content .archive-title {
  font-family: var(--font-mea-culpa);
  font-size: clamp(76px, 6.875vw, 109.97px);
  font-size: clamp(76px, 7.8125vw, 125px);
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
  margin: min(2vw, 32px) 0;
}

#content .entry-title span,
#content .archive-title span {
  display: block;
  font-family: var(--font-family-default);
  font-size: clamp(17px, 1.375vw, 21.48px);
  font-size: clamp(17px, 2vw, 32px);
  letter-spacing: 0.145em;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 20px;
}

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

.ai-minimalist-column-agent-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* #content .ai-minimalist-column-content-left .entry-title, #content .ai-minimalist-column-content-left .entry-sub-title {
  font-size: 80px !important;
  letter-spacing: 0.1em !important;
  text-transform: capitalize !important;
} */
#content .ai-minimalist-column-content-left .entry-sub-title {
  font-size: 75px !important;
  text-transform: capitalize !important;
  letter-spacing: 0.1em !important;
}

.ai-minimalist-form .ai-minimalist-form-title h2 {
  font-family: var(--font-family-default) !important;
}

.ai-minimalist-cta-button a {
  font-family: var(--font-family-default) !important;
}

body #content .ai-minimalist-column-content-left .entry-title {
  font-size: clamp(76px, 6.875vw, 109.97px);
  letter-spacing: normal;
  text-transform: capitalize;
  padding: 0;
}

body .ai-minimalist-column-agent-details a:not(:hover),
body .ai-minimalist-column-agent-details-socials a:not(:hover) {
  color: inherit;
}

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

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

ul:not(#ftr-nav) .disabled-menu>a {
  pointer-events: none;
}

#listings-details .listings-form .wpcf7-not-valid-tip {
  left: auto;
  font-size: 15px;
  top: 7px;
}

.ip-sellers-cta .site-title h2 {
  white-space: unset;
}

.ip-buyers-cta .site-title h2 {
  white-space: unset;
}

body:not(.aios-custom-ihomefinder-shortcode) #inner-page-wrapper {
  margin-bottom: 50px !important;
}

#listings-details .listings-main {
  margin-top: 30px !important;
}

#content .listings-printable-header img {
  filter: brightness(0) invert(1);
}

#content .listings-printable-header span {
  display: none !important;
}

#content .listings-printable-header {
  background: rgb(0 0 0 / 50%);
}

#ai-minimalist-testimonials-wrap .hide-content,
.aios-testimonials-hide {
  display: none !important;
}

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

.bootstrap-select>.dropdown-toggle {
  padding-left: 0 !important;
}

.page-numbers.current {
  color: var(--aios-communities-primary-color, #bfb183) !important;
}

.ip-about-cta-list-item a {
  pointer-events: none !important;
}

.ip-about-details {
  padding: 20px 0 min(4vw, 64px) !important;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder {
  background-color: transparent !important;
  color: white !important;
}

.aios-custom-ihomefinder-details-template .header {
  background: linear-gradient(180deg, black, transparent);
}

.aios-custom-ihomefinder-details-template .hdr-fixed {
  background: #000;
}

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

  #listings-results .listings-table .listings-table-body .listings-address,
  #listings-results .listings-table .listings-table-body .listings-sqft {
    width: 230px !important;
    max-width: 230px !important;
  }
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {

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

  body.show_menu {
    overflow-y: scroll;
  }

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

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

  #content .entry-title,
  #content .archive-title,
  .site-title h1,
  .site-title h2 {
    font-size: 50px !important;
    white-space: normal !important;
  }

  #content .entry-title span,
  #content .archive-title span,
  .site-title h1 span,
  .site-title h2 span {
    font-size: 18px !important;
    letter-spacing: 0.11em !important;
    text-align: center !important;
    padding: 10px 0 !important;
  }

  #content .entry-title span,
  #content .archive-title span {
    text-align: left !important;
  }

  .site-btn {
    width: 288px !important;
  }

  .site-btn::after {
    left: 15px;
  }

  .site-btn span {
    font-size: 14px;
  }

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

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

  .hdr-logo {
    width: 100%;
    max-width: 250px;
    padding: 0;
  }

  .hdr-logo img.df-logo {
    margin: auto;
    max-width: 100%;
  }

  .hdr-fixed .hdr-logo img.df-logo {
    opacity: 1;
    width: auto;
  }

  .ftr {
    padding: 40px 0 60px;
  }

  .ftr-wrap {
    padding: 0;
  }

  .ftr-logo {
    width: 100%;
  }

  .ftr-logo ul {
    flex-direction: column;
  }

  .ftr-logo ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    max-width: 100%;
    padding: 40px 0;
    border-right: none;
  }

  .ftr-contact ul {
    flex-direction: column;
    gap: 15px;
    padding: 0 0 40px;
  }

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

  .ftr-nav ul {
    padding: 40px 0 20px;
    flex-direction: column;
    gap: 15px;
  }

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

  .ftr-disclaimer p,
  .ftr-copyright p {
    font-size: 14px;
  }

  .ftr-cf {
    padding: 60px 0 70px;
  }

  .cf-bg {
    width: 100%;
    filter: grayscale(1);
  }

  .cf-bg::before,
  .cf-bg::after {
    background: #fff;
    opacity: 70%;
    width: 100%;
    height: 100%;
  }

  .cf-wrap {
    width: min(90%, 529px);
    padding: 0;
    gap: 60px;
  }

  .cf-left {
    width: 100%;
    padding: 0;
  }

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

  .cf-left .cf-title .site-title h2 span {
    color: #000;
  }

  .cf-desc {
    padding-top: 25px;
  }

  .cf-desc p {
    font-size: 15px;
    text-align: center;
    color: #000 !important;
  }

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

  .cf-form {
    padding-top: 25px;
  }

  .cf-form form input,
  .cf-form form textarea {
    font-size: 15px;
  }

  .cf-form form textarea {
    padding-top: 17px;
  }


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

  form#ihf-main-search-form .col-xs-12.col-sm-6.pt-5.mb-10 {
    display: none;
  }

  div#ihf-house-condo-search-fields .row.mt-25.ihf-home-search-fields {
    margin-top: 0;
  }

  ul.ai-minimalist-contact-details {
    margin-left: 0 !important;
  }

}

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

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