@font-face {
  font-family: 'Made Saonara';
  font-weight: normal;
  src: url('../fonts/MadeSaonara.woff2') format('woff2'),
    url('../fonts/MadeSaonara.woff') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Essential Sans';
  font-weight: 300;
  src: url('../fonts/EssentialSans-Thin.woff2') format('woff2'),
    url('../fonts/EssentialSans-Thin.woff') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Essential Sans';
  font-weight: normal;
  src: url('../fonts/EssentialSans-Regular.woff2') format('woff2'),
    url('../fonts/EssentialSans-Regular.woff') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Essential Sans';
  font-weight: 600;
  src: url('../fonts/EssentialSans-SemiBold.woff2') format('woff2'),
    url('../fonts/EssentialSans-SemiBold.woff') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Essential Sans';
  font-weight: 700;
  src: url('../fonts/EssentialSans-Bold.woff2') format('woff2'),
    url('../fonts/EssentialSans-Bold.woff') format('woff2');
  font-display: swap;
}

:root {
  /** Font default */
  /* --font-family-default: "Open Sans", sans-serif; */
  /* --font-family-title: "Noto Serif", serif; */
  --font-family-default: "Essential Sans", sans-serif;
  --font-family-title: "Made Saonara", serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #0e1721;
  --font-color-title: #6c757d;

  /** Use for input, button, and any other element */
  --primary: #0a131e;
  --secondary: #b7b7b7;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .3s cubic-bezier(.4, 0, .2, 1);

  --fs-16: max(min(16px, 1vw), calc(16px * 0.62));
}

/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light, #0e1721);
  background: var(--primary, #fff);
  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; */
}

#main-wrapper {
  overflow: hidden;
}

a,
em.ai-mobile-phone a {
  color: inherit;
  text-decoration: none;
  transition: var(--default-transition);
}

a:hover,
a:focus,
em.ai-mobile-phone a:hover,
em.ai-mobile-phone a:focus {
  text-decoration: none;
  color: var(--secondary);
}

section {
  position: relative;
}

.section-content {
  font-size: var(--fs-16, 16px);
  color: #fff;
}

section.section-content::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--primary);
}

.section-content p {
  font-size: 0.938em;
  font-weight: 400;
  line-height: 2.133;
  letter-spacing: 0.05em;
  padding: 0.8em 0 0.733em;
  text-align: center;
}

.site-container {
  width: calc((1140/1600)*100%);
  max-width: 1140px;
  margin: 0 auto;
}

.site-container.l2 {
  width: calc((1292/1600)*100%);
  max-width: 1292px;
}

/* =====  GLOBAL: Contact Infos  ===== */
.site-contact a {
  font-size: 0.875em;
  line-height: 1.714;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.site-contact a i.ai-font-phone-o {
  margin-right: 1.357em;
  padding-left: 1px;
  -webkit-text-stroke: 0.02em;
}

.site-contact a i.ai-font-envelope-outline-a {
  font-size: 0.857em;
  margin-right: 1.417em;
}

.site-smi {
  display: flex;
  align-items: center;
}

.site-smi strong {
  font-size: 0.938em;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 1.267em;
}

.site-smi a i {
  font-size: 1.733em;
  line-height: 0.885;
  display: block;
}

/* =====  GLOBAL: Section Titles  ===== */
.site-title {
  padding-bottom: 1.625em;
}

.site-title h1,
.site-title h2 {
  font-family: var(--font-family-title);
  font-size: 4.375em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.site-title h1 span,
.site-title h2 span {
  font-family: var(--font-family-default);
  font-size: 0.257em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 0.667em;
  display: block;
}

/* =====  GLOBAL: Buttons  ===== */
button.site-btn {
  background: transparent;
  outline: none;
}

.site-btn {
  font-family: var(--font-family-default);
  font-size: 0.938em;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  display: inline-flex;
  align-items: center;
  padding: 1em 2.333em 0.933em;
  border: 1px solid #c1c1c1;
  transition: var(--default-transition);
}

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

.site-btn i {
  top: 1px;
  font-size: 0.8em;
  margin-left: 1.167em;
}

/* =====  GLOBAL: Backgrounds  ===== */
.site-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.overlay {
  background: var(--primary);
}

.overlay::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.85;
  z-index: 1;
}

.overlay::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--primary),
      rgba(10, 19, 30, 0.5),
      transparent,
      rgba(10, 19, 30, 0.8),
      var(--primary));
}

.overlay canvas {
  mix-blend-mode: luminosity;
  position: relative;
  height: 98%;
  bottom: 1%;
  top: 1%;
}

/* =====  GLOBAL: Images & Iframes  ===== */
.site-img {
  position: relative;
}

.site-img img {
  object-fit: cover;
  object-position: center;
}

.site-img img,
.site-img iframe {
  position: absolute;
  /* content: ''; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  page-break-inside: avoid;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: var(--default-transition);
}

.site-img canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* =====================
    HEADER
======================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  color: #fff;
  transition: var(--default-transition);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: min(5.375vw, 86px) 0 0;
  transition: var(--default-transition);
}

.header-logo {
  width: calc((204/1292)*100%);
  margin-left: calc((-2/1292)*100%);
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: brightness(0) invert();
  filter: brightness(0) invert();
  transition: var(--default-transition);
}

.header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-info-contact {
  display: flex;
  align-items: center;
}

.header-info-contact a {
  margin-right: 1.813em;
}

.header-info-contact.site-contact a i {
  margin-right: 0;
}

.header-info-burger {
  width: 2.25em;
  height: 1.563em;
  border: none;
  outline: none;
  color: inherit;
  background: none;
  margin-left: 0.875em;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--default-transition);
}

.header-info-burger span {
  height: 0.188em;
  width: 100%;
  display: block;
  background: currentColor;
}

.header-info-burger span:nth-child(2) {
  width: 1.5em;
  margin: 0 -1px 0 auto;
  transition: var(--default-transition);
}

.header-info-burger:hover,
.header-info-burger:focus {
  color: var(--secondary);
}

.header-info-burger:hover span:nth-child(2),
.header-info-burger:focus span:nth-child(2) {
  width: 100%;
  margin-right: 0;
}

/* =====================
    FIXED HEADER
======================*/
.fixed.header {
  background: rgba(255, 255, 255, 0.9);
}

.fixed.header .header-wrap {
  padding: min(24px, 1.5vw) 0;
  color: var(--font-color-default);
}

.fixed.header .header-logo img {
  -webkit-filter: none;
  filter: none;
}

.fixed.header .header-info {
  color: var(--font-color-default);
}

/* =====================
    OFFCANVAS HEADER
======================*/
.burger-active {
  overflow: hidden;
}

.offcanvas-header {
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: 0;
  width: calc((688/1600)*100%);
  color: #fff;
  background: var(--primary);
  padding: calc((89/1600)*100%) calc((85/1600)*100%) calc((32/1600)*100%) calc((52/1600)*100%);
  transition: var(--default-transition);
  transition-duration: 1s;
  overflow: hidden;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.offcanvas-header::-webkit-scrollbar {
  background: transparent;
  width: 0px;
}

.offcanvas-header a:hover,
.offcanvas-header a:focus {
  color: var(--secondary);
}

.offcanvas-header.open {
  right: 0;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: -100vw;
  bottom: 0;
  z-index: -1;
  width: calc(100% - calc((688/1600)*100%));
  transition: var(--default-transition);
}

.offcanvas-header.open .offcanvas-overlay {
  left: 0;
}

.offcanvas-navigation {
  position: relative;
}

.offcanvas-close {
  position: absolute;
  top: calc((11/800)*100%);
  right: calc((9/688)*100%);
  width: 1.563em;
  height: 1.563em;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--default-transition);
}

.offcanvas-close:hover,
.offcanvas-close:focus {
  color: var(--secondary);
}

.offcanvas-close span {
  width: 1.875em;
  height: 0.188em;
  display: block;
  background: currentColor;
  position: absolute;
}

.offcanvas-close span:first-child {
  transform: rotatez(45deg);
}

.offcanvas-close span:last-child {
  transform: rotatez(-45deg);
}

.offcanvas-logo {
  padding: 0 0 0 1.688em;
  display: flex;
  align-items: center;
}

.offcanvas-logo a {
  display: block;
  width: min(calc((198/1600)*100vw), 198px);
}

.offcanvas-logo img {
  -webkit-filter: brightness(0) invert();
  filter: brightness(0) invert();
  display: block;
  height: 100%;
  width: 100%;
}

.offcanvas-menu {
  padding: 2.813em 0 3.688em 1.813em;
  border-bottom: 1px solid rgba(183, 183, 183, 0.2);
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offcanvas-nav > li {
  font-family: var(--font-family-title);
  font-size: 1.875em;
  line-height: 1.167;
  letter-spacing: 0.025em;
  overflow: hidden;
  margin: 0.633em 0;
  width: 100%;
  transition: var(--default-transition);
}

.offcanvas-nav > li.header-hidden {
  display: none;
}

.offcanvas-nav > li.menu-item-has-children:hover,
.offcanvas-nav > li.menu-item-has-children:focus-within {
  margin: 0.433em 0 0.2em;
}

.offcanvas-nav > li.menu-item-has-children:hover > a,
.offcanvas-nav > li.menu-item-has-children:focus-within > a {
  color: var(--secondary);
}

.offcanvas-nav li .sub-menu {
  padding: 0 0 0 1.1em;
  width: 11.833em;
  max-height: 0;
  column-count: 2;
  /*overflow: hidden;*/
  opacity: 0;
  transition: var(--default-transition);
}

.offcanvas-nav li:hover .sub-menu,
.offcanvas-nav li:focus-within .sub-menu {
  padding-top: 0.7em;
  max-height: 100vh;
  opacity: 1;
  transition-duration: 0.4s;
}

.offcanvas-nav li .sub-menu li {
  font-family: var(--font-family-default);
  font-size: 0.467em;
  font-weight: 400;
  line-height: 1.714em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
  display: flex;
  white-space: nowrap;
}

.offcanvas-nav li .sub-menu li a {
  transition-property: linear;
}

.offcanvas-nav li .sub-menu li a:hover,
.offcanvas-nav li .sub-menu li a:focus {
  font-weight: 700;
  color: #fff;
}

.offcanvas-info {
  padding: 2.688em 0 0 1.813em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-info .textwidget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* =====================
    NEWSLETTER
======================*/
.footer-newsletter {
  color: #fff;
}

.newsletter-bg::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
}

.newsletter-wrap {
  width: calc((1290/1600)*100%);
  max-width: 1290px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  padding: min(99px, 6.1875vw) 0 min(63px, 3.9375vw);
}

.newsletter-title {
  width: calc((570/1290)*100%);
}

.newsletter-title.site-title h2,
.newsletter-title.site-title h2 span {
  text-align: left;
}

.newsletter-form {
  width: calc((630/1290)*100%);
  padding-top: calc((62/1290)*100%);
}

.newsletter-form-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  font-size: var(--fs-16, 16px);
}

.newsletter-field {
  margin: 0 0 1em;
}

.newsletter-field.name {
  width: 100%;
}

.newsletter-field.email {
  width: calc((450/630)*100%);
}

.newsletter-field input,
.newsletter-field textarea {
  font-family: var(--font-family-title);
  font-weight: 400;
  font-size: 0.938em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
  outline: none;
  border: 1px solid var(--secondary);
  background: transparent;
  padding: 1.267em 1.267em 1em;
  width: 100%;
}

.newsletter-submit {
  width: calc((170/630)*100%);
}

.newsletter-submit button.site-btn {
  padding-left: 2.6em;
  padding-right: 2.6em;
}

.newsletter-submit button.site-btn i {
  margin-left: 0.727em;
}

.newsletter-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip,
.newsletter-form .wpcf7 form .wpcf7-response-output {
  font-weight: 400;
  font-family: var(--font-color-default);
  letter-spacing: 0.05em;
  line-height: 1;
}

.newsletter-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
  top: -0.25em;
  padding: 0.25em 0.5em;
}

.newsletter-form .wpcf7 form .wpcf7-response-output {
  padding: 0.5em;
  position: absolute;
  margin-top: 1em;
  left: 0;
  right: 0;
  width: 100%;
}

/* =====================
    FOOTER
======================*/
.footer {
  position: relative;
  color: var(--font-color-default);
}

.footer-bg {
  background: #fff;
}

.footer-bg canvas {
  -webkit-filter: grayscale();
  filter: grayscale();
  opacity: 0.05;
}

/* =====================
    FOOTER ADDRESSES
======================*/
.address-wrap {
  padding: min(96px, 6vw) 0 min(9px, 0.5625vw);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.address-item {
  text-align: center;
  margin: 0 calc((53/1140)*100%) calc((53/1140)*100%);
  margin: 0 calc((36/1140)*100%) calc((53/1140)*100%);
  width: calc((185/1140)*100%);
  width: calc((220/1140)*100%);
}

.address-item strong {
  font-family: var(--font-family-title);
  font-weight: 400;
  font-size: 1.375em;
  line-height: 1.091em;
  letter-spacing: 0.05em;
  margin-bottom: 0.318em;
  display: block;
}

.address-item a {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.429em;
  letter-spacing: 0.05em;
  display: block;
}

/* =====================
    FOOTER NAVIGATIONS
======================*/
.navigation-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: min(72px, 4.5vw) 0 min(68px, 4.25vw);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.navigation-item {
  margin: 0 calc((80/1140)*100%);
}

.navigation-item h3 {
  font-family: var(--font-family-title);
  font-size: 1.75em;
  font-weight: 400;
  line-height: 1.071;
  letter-spacing: 0.025em;
  margin-bottom: 0.464em;
}

.navigation-list {
  column-count: 2;
  column-gap: 2.375em;
}

.navigation-list li {
  font-size: 1.063em;
  font-weight: 400;
  line-height: 1.176;
  letter-spacing: 0.05em;
  padding: 0.588em 0;
}

.navigation-list li.menu-item-75 {
  display: none;
}

.navigation-smi {
  /*  margin-top: 1.625em;*/
  margin-top: 0.5em;
}

.navigation-smi.site-smi a {
  display: flex;
  flex-direction: row wrap;
  align-items: center;
  justify-content: flex-start;
}

.navigation-smi.site-smi a span {
  font-size: 0.875em;
}

.navigation-smi.site-smi a i {
  /*  font-size: 1.563em;*/
  font-size: 1.4em;
  line-height: 0.88em;
  margin-right: 0.7em;
}

/* ================================
    FOOTER COPYRIGHT & DISCLAIMER
===================================*/
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: min(66px, 4.125vw) 0 min(90px, 5.625vw);
}

.footer-bottom p {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.857;
  letter-spacing: 0.05em;
  text-align: left;
}

.footer-copyright {
  width: calc((310/1140)*100%);
}

.footer-copyright span {
  font-weight: 700;
}

.footer-mls {
  font-size: 1.5em;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-top: 0.917em;
}

.footer-mls .ai-font-realtor-mls {
  font-size: 1.25em;
  padding: 0 0.567em 0 0.367em;
}

.footer-disclaimer {
  width: calc((746/1140)*100%);
}

.footer-disclaimer p {
  letter-spacing: 0.025em;
}

/* ================================
    FORM STYLE FIXES
===================================*/
.wpcf7 form {
  position: relative;
}

.wpcf7 form .wpcf7-form-control-wrap {
  height: 100%;
}

.wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  width: auto;
  font-size: 12px;
  line-height: 1;
  padding: 0.25em;
  right: unset;
  left: 1em;
  top: 0.5em;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  padding: 0.5em 0.1em;
}

.wpcf7 form .wpcf7-spinner {
  position: absolute;
  right: 0%;
  top: 105%;
  margin: 0;
}

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

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 {
  display: none !important;
}

/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
  display: block !important;

}

.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 .archive-subtitle,
#content .archive-title,
#content .entry-title,
#ip-contact .ip-contact-form-title {
  font-family: var(--font-family-title);
  font-size: max(min(4.375vw, 70px), 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

#content #breadcrumbs span {
  color: var(--secondary);
}

#content #breadcrumbs span:not(.breadcrumb_last) > a:hover > span,
#content #breadcrumbs span:not(.breadcrumb_last) > a:focus > span {
  color: var(--light, #fff);
}

#content #breadcrumbs span.breadcrumb_last > span {
  font-weight: 700;
  color: #fff;
}

.ai-default-cf7wrap input[type="text"],
.ai-default-cf7wrap input[type="tel"],
.ai-default-cf7wrap input[type="email"],
.ai-default-cf7wrap textarea {
  background: transparent;
}

.ai-contact-wrap span.context-mob a:hover,
.ai-contact-wrap span.context-mob a:focus,
.ai-contact-wrap span.context-email a:hover,
.ai-contact-wrap span.context-email a:focus {
  color: var(--secondary);
}

.ai-default-cf7wrap input[type="submit"],
.ai-default-cf7wrap input.wpcf7-submit {
  font-family: var(--font-family-default);
  font-size: 15px;
  height: 100%;
  padding: 0.4em 1em 0.35em;
  border: 1px solid #c1c1c1;
  background: transparent !important;
  margin-top: 0.02em;
}

.ai-default-cf7wrap input[type="submit"]:hover,
.ai-default-cf7wrap input[type="submit"]:focus,
.ai-default-cf7wrap input.wpcf7-submit:hover,
.ai-default-cf7wrap input.wpcf7-submit:focus {
  background: #fff !important;
  color: var(--font-color-default) !important;
}

.page-template-template-property-list .ip-banner {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .mtt-agents__wrap.active .mtt-accordion__content {
    display: block;
    padding: 20px;
  }

  :root {
    --fs-16: max(min(16px, 1.61vw), 14px);
  }

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

  .section-content p {
    font-size: 0.929em;
    line-height: 2;
    padding: 9px 0;
  }

  .site-container,
  .site-container.l2 {
    width: calc((330/375)*100%);
  }

  .overlay::after {
    background: linear-gradient(to bottom, var(--primary), rgba(10, 19, 30, 0.25) 15%, transparent, rgba(10, 19, 30, 0.5), var(--primary));
  }

  .site-contact a {
    font-size: 0.929em;
    line-height: 1.154;
    margin-bottom: 1.231em;
    letter-spacing: 0.05em;
  }

  .site-contact a i.ai-font-phone-o {
    margin-right: 0.692em;
  }

  .site-contact a i.ai-font-envelope-outline-a {
    font-size: 0.923em;
    margin-right: 0.583em;
  }

  .site-smi strong {
    font-size: 1.071em;
    line-height: 1.467;
    margin-right: 0.533em;
  }

  .site-title {
    padding-bottom: 1.429em;
  }

  .site-title h2,
  .site-title h1 {
    font-size: 2.857em;
  }

  .site-title h2 span,
  .site-title h1 span {
    font-size: 0.35em;
    line-height: 1.143em;
    margin-bottom: 0.571em;
  }

  .site-btn {
    font-size: 0.857em;
    padding: 1.083em 0.5em 0.917em;
    line-height: 1.5;
    min-width: 13.25em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  header.header,
  header.fixed.header {
    background-color: var(--primary);
  }

  header.fixed.header {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
  }

  header.header .header-wrap,
  header.fixed.header .header-wrap {
    padding: 24px 0;
  }

  header .header-logo {
    min-width: 118px;
  }

  header.fixed.header .header-logo img {
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
  }

  header.fixed.header .header-info {
    color: #fff;
  }

  header.header .header-info-contact a {
    margin-bottom: 0;
    font-size: 1.1em;
  }

  header.header .header-info-contact.site-contact a i {
    margin-right: 0;
  }

  header .offcanvas-header {
    width: 100%;
    padding: 0;
  }

  header .offcanvas-close {
    top: 0;
    right: 0;
  }

  header .offcanvas-logo {
    padding: 0;
  }

  header .offcanvas-logo a {
    min-width: 118px;
  }

  header header .offcanvas-overlay {
    display: none;
  }

  header .offcanvas-navigation {
    width: calc((330/375)*100%);
    margin: 1.714em auto;
  }

  header .offcanvas-menu {
    padding: 2.429em 0 1.214em 1.5em;
  }

  header .offcanvas-nav > li {
    font-size: 1.786em;
  }

  header .offcanvas-nav > li.menu-item-has-children:hover,
  header .offcanvas-nav > li.menu-item-has-children:focus-within {
    margin: 0.633em 0;
  }

  header .offcanvas-nav li .sub-menu {
    padding-left: 0.84em;
  }

  header .offcanvas-nav li .sub-menu li {
    font-size: 0.52em;
    line-height: 1.846em;
  }

  header .offcanvas-nav li .sub-menu li a {
    line-height: 1;
    white-space: normal;
    padding: 0.462em 0 0.385em;
  }

  header .offcanvas-nav li:hover .sub-menu,
  header .offcanvas-nav li:focus-within .sub-menu {
    padding-top: 0.56em;
  }

  header .offcanvas-info {
    padding: 1.857em 0 0;
  }

  header .offcanvas-contact li:last-child a {
    margin-bottom: 0;
  }

  header .navigation-smi {
    margin-top: 0;
  }

  .newsletter-wrap {
    flex-direction: column;
    width: calc((330/375)*100%);
    padding: 4.071em 0 5.214em;
    max-width: 510px;
  }

  .newsletter-title {
    width: 100%;
  }

  .newsletter-title.site-title h2,
  .newsletter-title.site-title h2 span {
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    padding-top: 1.071em;
  }

  .newsletter-field {
    margin: 0 0 0.429em;
  }

  .newsletter-field.email {
    width: 100%;
  }

  .newsletter-field input,
  .newsletter-field textarea {
    font-size: max(0.857em, 12px);
    padding: 1.25em 1.5em 1.083em;
  }

  .newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.571em;
    width: 100%;
  }

  footer .address-wrap {
    justify-content: space-between;
    padding: 3.5em 0 1.786em;
    max-width: 510px;
  }

  footer .address-item {
    width: calc((150/330)*100%);
    margin: 0 0 1.5em;
    white-space: nowrap;
  }

  footer .address-item strong {
    font-size: 1.286em;
    line-height: 1.333em;
    letter-spacing: 0.025em;
    margin-bottom: 0;
  }

  footer .address-item a {
    font-size: max(10px, 0.857em);
    line-height: 1.5;
    letter-spacing: 0.025em;
  }

  footer .navigation-contact {
    padding-top: 0.643em;
  }

  footer .navigation-smi.site-smi a i {
    font-size: 1.857em;
    line-height: 0.846;
  }

  footer .navigation-wrap {
    padding: 2.5em 0 2.786em;
    justify-content: space-between;
  }

  footer .navigation-item {
    margin: 0 3em;
  }

  footer .navigation-item h3 {
    font-size: 1.643em;
    font-weight: 400;
    line-height: 1.13em;
    margin-bottom: 0.565em;
  }

  footer .navigation-list {
    column-count: 1;
    column-gap: 0;
  }

  footer .navigation-list li {
    font-size: 1.071em;
    line-height: 1.333em;
    padding: 0.333em 0 0.267em;
  }

  footer .navigation-smi {
    margin-top: 1.625em;
  }

  footer .navigation-smi.site-smi a i {
    font-size: 1.563em;
    line-height: 0.88em;
    margin-right: 0.3em;
  }


  footer .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    padding: 2.429em 0 4.714em;
  }

  footer .footer-bottom p {
    text-align: center;
    line-height: 1.917em;
    font-size: max(12px, 0.857em);
    padding: 0;
  }

  footer .footer-copyright,
  footer .footer-disclaimer {
    width: 100%;
  }

  footer .footer-mls {
    justify-content: center;
    font-size: 1.714em;
    margin-top: 1.083em;
  }

  footer .footer-copyright p {
    font-size: 1em;
    line-height: 1.857em;
    padding: 3.071em 0 0;
  }

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

  #content .archive-subtitle,
  #content .archive-title,
  #content .entry-title,
  #ip-contact .ip-contact-form-title {
    font-size: max(6.05vw, 40px);
  }

  .pd-slideshow__controls .site-btn {
    display: inline-flex;
  }


  .safari .offcanvas-nav .sub-menu,
  .mobile .offcanvas-nav .sub-menu,
  .iphone .offcanvas-nav .sub-menu {
    display: block;
  }

  .safari .offcanvas-nav li:hover .sub-menu, .safari .offcanvas-nav li:focus-within .sub-menu,
  .mobile .offcanvas-nav li:hover .sub-menu, .mobile .offcanvas-nav li:focus-within .sub-menu,
  .iphone .offcanvas-nav li:hover .sub-menu, .iphone .offcanvas-nav li:focus-within .sub-menu {
    display: block;
    max-height: 100vh;
    width: 100%;
  }

  .safari header .offcanvas-nav li .sub-menu li,
  .mobile header .offcanvas-nav li .sub-menu li,
  .iphone header .offcanvas-nav li .sub-menu li {
    font-size: 12px;
  }

}

@media only screen and (max-width: 767px) {
  footer .navigation-item {
    margin: 0 2em;
  }

  .ip-banner .container {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  :root {
    --fs-16: max(min(14px, 3.73vw), 12px);
  }

  .newsletter-bg canvas {
    background-position: 43.25% 75%;
    background-size: 600%;
  }

  footer .navigation-item {
    margin: 0;
  }

  .ip-banner .container {
    width: 100%;
  }

  .aidefcf-cl2 span {
    width: 100%;
  }
}