:root {
  /** Font default */
  --font-family-default: "Raleway", sans-serif;
  --font-family-title: "EB Garamond", serif;
  --font-size-default: 14px;
  /*--font-size-title: 80px;*/
  --font-size-title: 5vw;
  --font-color-default: #3d3d3d;
  --font-color-title: #002366;
  /** Use for input, button, and any other element */
  --primary: #002366;
  --secondary: #e4b15b;
  --accent: #3b3e25;
  --main-bg: #f5f2e9;
  --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: var(--main-bg);
  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;
}

.parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
.parallax_bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.safari-true .parallax_bg canvas,
.mobile .parallax_bg canvas {
  background-attachment: scroll;
}

.non_parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
.non_parallax_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;
}
.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);
}

/* Global Site Title START */
.global_site_title {
  text-transform: uppercase;
}
.global_site_title h2,
#content .global_site_title h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.global_site_title h2 span,
#content .global_site_title h2 span {
  display: block;
  margin-bottom: 15px;
  color: #999999;
  /*font-size: 20px;*/
  font-size: 1.25vw;
  letter-spacing: 0.42em;
  position: relative;
}
.global_site_title h2 span::after,
#content .global_site_title h2 span::after {
  width: 104px;
  height: 10px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  margin-bottom: 5px;
  background-image: url(../../assets/images/accent-title.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.global_site_title h2 strong,
#content .global_site_title h2 strong {
  display: block;
  color: var(--primary);
  /*font-size: 80px;*/
  font-size: var(--font-size-title);
  font-weight: 400;
  font-family: var(--font-family-title);
}
/* White Title */
.global_site_title.white_title h2 strong,
#content .global_site_title.white_title h2 strong {
  color: #ffffff;
}
/* Global Site Title END */

/* Global Site Button START */
.global_site_btn {
  display: inline-block;
  max-width: 100%;
}
.global_site_btn a,
.global_site_btn > div {
  width: auto;
  min-width: 245px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--secondary);
  position: relative;
  transition: var(--default-transition);
}
.global_site_btn > div input[type="submit"] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #000000;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  transition: var(--default-transition);
}
.global_site_btn a:hover,
.global_site_btn > div:hover input[type="submit"] {
  background-color: var(--secondary);
}
.global_site_btn a::before,
.global_site_btn a::after,
.global_site_btn > div::before,
.global_site_btn > div::after {
  width: 50%;
  height: 1px;
  content: "";
  position: absolute;
  background-color: #000000;
  transition: var(--default-transition);
}
.global_site_btn a::before,
.global_site_btn > div::before {
  top: -1px;
  right: 0;
}
.global_site_btn a::after,
.global_site_btn > div::after {
  bottom: -1px;
  left: 0;
}
.global_site_btn a:hover::before,
.global_site_btn a:hover::after,
.global_site_btn > div:hover::before,
.global_site_btn > div:hover::after {
  width: 0%;
  opacity: 0;
}
.global_site_btn a span,
.global_site_btn > div span {
  letter-spacing: 0.2em;
}
.global_site_btn a i,
.global_site_btn > div i {
  color: #909182;
  font-size: 11px;
  margin-left: 20px;
}
/* White Button */
.global_site_btn.white_btn a span,
.global_site_btn.white_btn a i,
.global_site_btn.white_btn > div span,
.global_site_btn.white_btn > div i,
.global_site_btn.white_btn > div input[type="submit"] {
  color: #ffffff;
}
.global_site_btn.white_btn a::before,
.global_site_btn.white_btn a::after,
.global_site_btn.white_btn > div::before,
.global_site_btn.white_btn > div::after {
  background-color: #ffffff;
}

/* Global Site Button END */

/* Header START */
#header_wrap {
  width: 100%;
  position: fixed;
  z-index: 1032;
  top: 0;
  left: 0;
  font-size: 0;
  transition: var(--default-transition);
  color: #000000;
  background-color: #ffffff;
  text-align: center;
}
.show_menu #header_wrap {
  z-index: 1011;
}
.header_inner {
  padding-left: 5%;
  padding-right: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  width: 21%;
  padding: 29px 0;
  font-size: 0;
  text-align: left;
}
.header_logo img {
  max-width: 100%;
  height: auto;
}
.header_middle {
  width: 73%;
  padding-right: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.fixedhead .header_middle {
  padding-right: 35px;
}
.bm_button {
  width: 115px;
  min-width: 115px;
  height: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 0;
  cursor: pointer;
  transition: var(--default-transition);
  pointer-events: auto;
  text-align: right;
  position: relative;
}
.bm_button::before {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 115px;
  background-color: #000000;
  opacity: 0.3;
}
.header_broker_logo {
  font-size: 0;
}
.header_broker_logo img {
  max-width: 100%;
  height: auto;
}
.fixedhead .header_broker_logo img {
  display: none;
}
.fixedhead .fixedhead_btn {
  display: block !important;
}
.bm_button_line {
  width: 48px;
}
.bm_button_line span {
  width: 100%;
  height: 4px;
  display: inline-block;
  vertical-align: middle;
  background-color: #000000;
}
.bm_button_line span:nth-child(2) {
  height: 2px;
  margin: 11px 0;
  background-color: #7f7f7f;
}
.bm_button:hover .bm_button_line span {
  background-color: var(--secondary);
}
/* Header END */

/* Navigation START */
.navigation {
  padding-right: 40px;
}
.fixedhead .navigation {
  padding-right: 0;
}
#nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#nav li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 23px;
  position: relative;
}
#nav li a {
  display: block;
  color: #000000;
  padding: 5px 0;
  font-size: 15px;
  font-size: 0.938vw;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
#nav > li:hover > a {
  color: var(--secondary);
}
#nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  display: none;
  padding: 38px 0 0;
  position: absolute;
  z-index: 100;
  width: 100%;
  min-width: 200px;
  text-align: center;
}
#nav > li > .sub-menu {
  left: -150%;
  right: -150%;
  margin: 0 auto;
}
#nav .sub-menu li {
  width: 100%;
  padding: 0;
  position: relative;
}
#nav .sub-menu a {
  color: #ffffff;
  font-size: 13px;
  display: block;
  padding: 7px 5px;
  background-color: var(--primary);
  letter-spacing: 0;
  position: relative;
}
#nav .sub-menu a:hover {
  color: #ffffff;
  background-color: var(--secondary);
}
#nav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
  padding: 0;
}
/* Navigation END */

/* Burger Menu START */
body.show_menu {
  overflow: hidden;
}
.burger_menu_content_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1031;
  top: 0;
  right: -20%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: right;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s 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_menu_content_wrap.show_menu .bm_slide_overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.burger_menu_content {
  width: 90%;
  max-width: 799px;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 2;
  font-size: 0;
  padding: 140px 70px 50px;
  color: var(--secondary);
  text-align: left;
  background-color: #ffffff;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.burger_menu_content::before {
  width: 1px;
  height: 107%;
  content: "";
  position: absolute;
  top: 0;
  right: 115px;
  background-color: #b2b2b2;
  opacity: 0.3;
  pointer-events: none;
}
.burger_menu_content::after {
  width: 100%;
  height: 107%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../../assets/images/bg-menu.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.burger_menu_content::-webkit-scrollbar {
  display: none;
}
.bm_close_btn {
  position: absolute;
  z-index: 3;
  top: 53px;
  right: 39px;
  color: #000000;
  text-align: center;
  cursor: pointer;
  transition: var(--default-transition);
}
.bm_close_btn span {
  display: block;
  font-size: 38px;
  transition: var(--default-transition);
}
.bm_close_btn:hover span {
  color: var(--secondary);
}
.burger_navigation {
  position: relative;
  z-index: 2;
}
#burger_nav {
  font-size: 0;
  display: flex;
  flex-flow: column;
  pointer-events: none;
}
#burger_nav li {
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
}
#burger_nav > li > a {
  display: inline-block;
  color: var(--secondary);
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-family-title);
  text-transform: uppercase;
}
#burger_nav li a {
  pointer-events: auto;
}
#burger_nav li:hover > a {
  color: var(--primary);
  opacity: 1;
}
#burger_nav .sub-menu {
  padding-top: 20px;
}
#burger_nav .sub-menu li {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
  padding: 0 20px;
  position: relative;
}
#burger_nav .sub-menu li:first-child {
  padding-left: 0;
}
#burger_nav .sub-menu li::before {
  width: 1px;
  height: 14px;
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  background-color: #7d7d7d;
}
#burger_nav .sub-menu li:first-child::before {
  display: none;
}
#burger_nav .sub-menu li a {
  color: #7d7d7d;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#burger_nav .sub-menu li:hover a {
  color: var(--secondary);
}
.bm_contact_info {
  color: #000000;
  position: relative;
  z-index: 2;
}
.bm_info {
  padding-top: 15px;
}
.bm_info i {
  min-width: 25px;
  font-size: 17px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;

  font-size: 15px;
  text-align: center;
}
.bm_info i.ai-font-location-c {
  font-size: 18px;
}
.bm_info i.ai-font-envelope-filled-a {
  font-size: 11px;
}
.bm_info span {
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.05em;
  transition: var(--default-transition);
}
.bm_info a:hover {
  color: var(--secondary);
}
/* Burger Menu END */

/* Floating SMI START */
.floating_smi {
  width: 115px;
  position: fixed;
  z-index: 1031;
  top: 33%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0;
  pointer-events: none;
  /*border-left: 1px solid rgba(0,0,0,0.3);*/
}
.fixed_smi {
  position: relative;
}
.fixed_smi::after {
  width: 1px;
  height: 50px;
  content: "";
  display: inline-block;
  vertical-align: top;
  margin: 12px auto 0;
  background-color: #ffffff;
  opacity: 0.65;
}
.fixed_smi li {
  display: block;
  padding: 15px 0;
}
.fixed_smi li a {
  color: #ffffff;
  font-size: 22px;
  transition: var(--default-transition);
  pointer-events: auto;
  text-shadow: -1px 1px 2px #000000;
}
.fixed_smi li a:hover,
.show_menu .fixed_smi li a:hover {
  color: var(--secondary);
}
.follow_text {
  position: relative;
  left: 2px;
  bottom: -70px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  text-shadow: -1px 1px 2px #000000;
}
/* Dark SMI */
.show_menu .fixed_smi li a {
  color: var(--accent);
  text-shadow: none;
}
.show_menu .fixed_smi::after {
  background-color: var(--secondary);
}
.show_menu .follow_text {
  color: #6f6f6f;
  text-shadow: none;
}
/* Floating SMI END */

/* Footer START */
#footer_wrap {
  color: #ffffff;
  padding: 72px 0 46px;
}
#footer_wrap a {
  color: inherit;
}
#footer_wrap a:hover {
  color: var(--secondary);
}
.footer_bg {
  background-color: var(--primary);
}
.footer_bg canvas {
  opacity: 0.1;
  filter: grayscale(1);
}
.footer_inner {
  padding-left: 10.0625%;
  padding-right: 10.0625%;
}
.footer_logo {
  font-size: 0;
  margin-bottom: 46px;
  text-align: center;
}
.footer_logo img {
  max-width: 100%;
  height: auto;
}
.footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_contact_form {
  width: 48.33%;
  padding: 41px 58px 36px;
  position: relative;
  -webkit-box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.47);
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.47);
  text-align: center;
}
.footer_contact_form::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  opacity: 0.64;
}
.contact_title h2 strong {
  font-size: 4.375vw;
}
.contact_form {
  width: 100%;
  margin: 28px auto 0;
  font-size: 0;
  position: relative;
}
.form_field_wrap {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  position: relative;
}
.form_field {
  width: 100%;
  margin-bottom: 3px;
}
.form_field_wrap input,
.form_field_wrap textarea {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
  background-color: rgba(242, 242, 242, 0.16);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_field_wrap textarea {
  height: 64px;
  padding-top: 16px;
  resize: none;
}
.form_submit {
  margin-top: 26px;
}
.form_submit > div {
  width: 182px;
  min-width: auto;
  height: 49px;
  margin: 0 auto;
  font-size: 11px;
  transition: var(--default-transition);
}
.form_submit input[type="submit"] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact_form .ajax-loader,
.contact_form .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto !important;
  bottom: -50px;
}
.contact_form .wpcf7-form-control-wrap {
  display: block;
}
.contact_form .use-floating-validation-tip span.wpcf7-not-valid-tip {
  width: auto;
  max-width: 100%;
  font-size: 12px;
  position: absolute;
  top: 10px;
}
.contact_form div.wpcf7-response-output,
.contact_form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  left: 0;
  right: 0;
  margin: 10px auto 0;
  color: #ffffff !important;
  font-size: 12px;
  text-align: center;
}
.footer_contact_info {
  width: 51.67%;
  padding-left: 74px;
  text-align: center;
}
.foot_broker_logo {
  font-size: 0;
  margin-bottom: 36px;
}
.foot_broker_logo img {
  max-width: 100%;
  height: auto;
}
.footer_info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot_info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 83px;
}
.foot_info:first-child {
  margin-left: 0;
}
.foot_info i {
  color: var(--secondary);
  font-size: 14px;
  margin-right: 10px;
}
.foot_info i.ai-font-envelope-filled-a {
  font-size: 11px;
}
.foot_info span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.footer_smi {
  margin-top: 30px;
  margin-bottom: 35px;
  font-size: 0;
}
.footer_smi a {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  margin-left: 50px;
}
.footer_smi a:first-child {
  margin-left: 0;
}
.footer_disclaimer {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.059em;
}
.footer_copyright {
  margin-top: 45px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.035em;
  text-align: center;
}
.footer_mls {
  margin-top: 20px;
  font-size: 0;
  text-align: center;
}
.footer_mls span {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
}
.footer_mls .ai-font-realtor-mls {
  font-size: 35px;
  margin-left: 13px;
}
/* Footer END */

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .archive-title,
#content .entry-title {
  color: var(--primary);
  font-size: 60px;
  font-weight: 400;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  color: var(--primary);
  font-size: 25px;
  font-weight: 400;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
}

#content .entry a:hover {
  color: var(--secondary);
}

/* POJO START */
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,
#aios-testimonials .aios-testimonials-lists h3,
.aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content h2 {
  display: none !important;
}
/* POJO END */

.ai-default-cf7wrap input[type="text"],
.ai-default-cf7wrap input[type="tel"],
.ai-default-cf7wrap input[type="email"],
.aidefcf-wrapper .wpcf7-form-control.wpcf7-select,
.ai-default-cf7wrap select,
.ai-default-cf7wrap textarea {
  background-color: var(--main-bg);
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
  width: auto;
  position: absolute;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

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












.vl-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    align-items: center;
}



.col-vl-r {
    width: calc(100% - 300px);
}

.col-vl-l {
    width: 100%;
    max-width: 300px;
}

.vls {
    width: 100%;
    display: block;
    min-height: 310px;
    padding: 50px 30px 80px;
    background-image: url(/wp-content/themes/ebottomley-pending.com/assets/images/bg-value.png);
    background-size: 100% 100%;
    color: #484848;
    font-size: 13px;
}

.vls h2 {
    display: block;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 2.375vw !important;
    font-family: var(--font-family-title);
    text-align: center;
    font-weight: 400 !important;
}

.col-vl-r ol li {
    margin-bottom: 10px;
    display: block;
}




.col-vl-r ol li strong {
    display: block;
}




.page-id-21  #content .entry-title {
    display: none;
}








.ns-btn {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 12px;
}
.ns-btn a {
    font-size: 18px;
    border: 1px solid #000;
    display: block;
    width: 100%;
    max-width: 116px;
    text-align: center;
    height: 44px;
    line-height: 44px;
    font-weight: bold;
    letter-spacing: 0.1em;
}








.page-id-2089 #content .archive-thumbnail canvas {
    display: block;
    width: 100%;
    height: auto;
}

.page-id-2089 #content .archive-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-id-2089 #content .archive-thumbnail {
    position: relative;
}





.page-id-2089 .archive-list {
    margin-top: 60px;
}


.page-id-2089 h2.subcategory-title a {
    font-size: 42px;
}



/* MOBILE */

/* 1440px-1367px */
@media only screen and (max-width: 1440px) {
  .header_inner {
    padding-left: 3%;
  }
}

/* 1366px-1281px */
@media only screen and (max-width: 1366px) {
  .header_inner {
    padding-left: 15px;
  }
  .navigation {
    padding-right: 20px;
  }
  #nav li {
    padding: 0 17px;
  }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
  .parallax_bg canvas {
    background-attachment: scroll;
  }
  .header_middle,
  .fixedhead .header_middle {
    padding-right: 15px;
  }
  #nav li {
    padding: 0 13px;
  }
  .fixedhead .fixedhead_btn a {
    min-width: 215px;
    font-size: 13px;
  }
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {








  .col-vl-l {
      max-width: 100%;
  }

  .col-vl-r {
      max-width: 100%;
  }

  .vls {
      max-width: 310px;
      margin: 0px auto;
  }












  :root {
    --font-size-title: 60px;
  }
  .global_site_title h2 span,
  #content .global_site_title h2 span {
    font-size: 20px;
  }
  .global_site_title h2 span::after,
  #content .global_site_title h2 span::after {
    margin-left: 10px;
  }
  #header_wrap {
    position: absolute;
    z-index: 2;
    margin-top: 52px;
  }
  .header_inner {
    padding: 0 15px;
    justify-content: center;
  }
  .header_logo {
    width: 100%;
    text-align: center;
  }

  .footer_content {
    flex-flow: column;
  }
  .footer_contact_form {
    width: 100%;
  }
  .contact_title h2 strong {
    font-size: 40px;
  }
  .footer_contact_info {
    width: 100%;
    padding: 50px 0 0;
  }
  .footer_info {
    flex-flow: column;
  }
  .foot_info {
    margin: 10px 0;
  }
  .foot_info a {
    padding: 16px 0;
  }
  .footer_smi {
    margin: 15px 0;
  }
  .footer_smi a {
    padding: 14px 0;
    margin-left: 35px;
  }

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

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

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .footer_contact_form {
    padding: 60px 20px;
  }

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

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

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 767px) {
  :root {
    --font-size-title: 40px;
  }
  .global_site_title h2 span,
  #content .global_site_title h2 span {
    font-size: 15px;
    letter-spacing: 0.2em;
  }
}

.aios-smf-theme-two .aios-smf-container {
  margin: 0px auto !important;
}

.no-link > a {
  pointer-events: none !important;
}

@media print {
  #header_wrap, #footer_wrap,
  .sidebar, header, footer, .ip-banner, #breadcrumbs,
  .page-id-0 #content .entry > a:first-child, #ihf-detail-navrow, #ihf-leadcapture-btns,
  .page-id-0 #content .entry > a:first-child ~ br,
  .ihf-contiguous-links, #listings-details .listings-smi,
  #listings-details .listings-cta,
  #listings-details .listings-slideshow-text,
  #listings-details .listings-slideshow-thumbnail,
  #listings-details .listings-slideshow-control .listings-slideshow-arrow,
  #listings-details .listings-footer, #listings-details .listings-contact {
      display: none !important;
  }
  #inner-page-wrapper {
      margin-top: 0 !important;
  }
  #content-sidebar #content {
      width: 100%;
  }
  #ihf-main-container h4.ihf-address, #ihf-main-container h4.ihf-price {
      margin: 0;
  }
  #content .entry-title, #content .archive-title {
      font-size: 25px;
      margin-top: 0;
  }
  #content-sidebar, #content-full {
      margin-top: 0;
  }
}
