/*

Theme Name: coastalsandiego.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.1
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme

*/
/*
TABLE OF CONTENTS
1. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css
*/
/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/
 :root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-title: 'Prata', serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --background: #fff;
    --primary: #1c9dbf;
    --secondary: #000;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --transition-linear: .3s linear;
    --transition-image-filter: filter var(--transition-linear);
    --transition-opacity: opacity var(--transition-linear);
    --transition-color: color var(--transition-linear);
    --transition-background-color: background-color var(--transition-linear);
    --transition-all: all var(--transition-linear);
    --transition-border: border var(--transition-linear);
    --transition: all 0.4s ease-in-out;
}

.object-fit-cover {
    object-fit: cover;
}

.object-position-center {
    object-position: center;
}

.object-position-left {
    object-position: left;
}

.object-position-top {
    object-position: top;
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.inline-table {
    display: inline-table
}

.inline-flex {
    display: inline-flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.content-center {
    align-content: center
}

.content-start {
    align-content: flex-start
}

.content-end {
    align-content: flex-end
}

.content-between {
    align-content: space-between
}

.content-around {
    align-content: space-around
}

.content-evenly {
    align-content: space-evenly
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.items-baseline {
    align-items: baseline
}

.items-stretch {
    align-items: stretch
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.justify-evenly {
    justify-content: space-evenly
}

.justify-items-start {
    justify-items: start
}

.justify-items-end {
    justify-items: end
}

.justify-items-center {
    justify-items: center
}

.justify-items-stretch {
    justify-items: stretch
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

.flex-wrap-nowrap {
    flex-wrap: nowrap;
}

.flex-width-auto {
    flex-basis: 0;
    flex-grow: 1;
}

.flex-grow-1 {
    flex-grow: 1;
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.mt-15 {
    margin-top: max(0.938vw, 15px);
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.m-center {
    margin: 0 auto;
}

.overflow-hidden {
    overflow: hidden;
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/*******************************************************

 *

 * 3. Custom CSS

 *

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

    -moz-osx-font-smoothing: grayscale; */
}

#main-wrapper {
    overflow: hidden;
}

.container-background {
    background: var(--background);
}

/* Globals */
.max-width {
    max-width: 1600px;
    margin: 0 auto;
}

.default-padding {
    padding-left: 4.43%;
    padding-right: 4.43%;
}

/* Default Button */
.default-button {
    height: 60px;
    position: relative;
}

.default-button:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    z-index: 5;
}

.default-button.default-button-white:after {
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    opacity: 0.2;
}

.default-button.default-button-gradient:after {
    background-image: -moz-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    background-color: transparent;
}

.default-button.default-button-gray:after {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 100%);
    opacity: 0.2;
}

.su-form .su-button .default-button.default-button-gradient:after {
    background: #1c9dbf;
}

.default-button:before {
    border: 1px solid rgb(135, 135, 135);
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    background-image: -moz-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    background-image: -webkit-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    background-image: -ms-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    box-shadow: 0px 15px 18px 0px rgba(0, 0, 0, 0.43);
    transition: var(--transition);
    opacity: 0;
}

.default-button:hover:before {
    opacity: 1;
}

.default-button a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--transition);
}

.default-button.default-button-white a {
    background: #fff;
    color: var(--primary);
}

.default-button.default-button-gray a {
    color: var(--primary);
}

.default-button.default-button-white:hover a, .default-button.default-button-gray:hover a {
    background: transparent;
    color: #fff;
}

.default-button button, .default-button > div {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    text-transform: uppercase;
    background: transparent;
    border: none;
}

.default-button button span, .default-button > div span {
    padding: 0 40px;
}

.default-button a span, .default-button button span, .default-button > div span {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.default-button a span i.bttn-icon, .default-button button span i.bttn-icon, .default-button > div span i.bttn-icon {
    display: block;
    width: 13px;
    height: 13px;
    background: url(images/sprite.png) no-repeat -100px -11px transparent;
    margin-left: 22px;
}

.default-button.default-button-white a span i.bttn-icon, .default-button.default-button-white button span i.bttn-icon, .default-button.default-button-white > div span i.bttn-icon, .default-button.default-button-gray a span i.bttn-icon, .default-button.default-button-gray button span i.bttn-icon, .default-button.default-button-gray > div span i.bttn-icon {
    background-position: -113px -11px;
}

.default-button.default-button-white:hover a span i.bttn-icon, .default-button.default-button-white:hover button span i.bttn-icon, .default-button.default-button-white:hover > div span i.bttn-icon, .default-button.default-button-gray:hover a span i.bttn-icon, .default-button.default-button-gray:hover button span i.bttn-icon, .default-button.default-button-gray:hover > div span i.bttn-icon {
    background-position: -100px -11px;
}

/* Default Title */
.default-title {
}

.default-title h2 {
    font-size: 70px;
    line-height: 1.3;
    font-family: var(--font-family-title);
    color: #333333;
}

.default-title.default-title-smaller h2 {
    font-size: 48px;
    line-height: 1.4;
}

.default-title.default-title-white h2 {
    color: #fff;
}

.default-title h2 span {
    color: var(--primary);
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.3em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: var(--font-family-default);
}

.default-title.default-title-smaller h2 span {
    line-height: 1;
}

.default-title h2 span::before {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--primary);
    max-width: 69px;
    margin-right: 28px;
}

.default-title h2 em {
    line-height: 1.1;
    font-style: normal;
    color: var(--primary);
}

/* Global Form */
.cc_form_row {
    padding: 5px 0;
    margin: 0 -10px;
}

.cc_form_row .cc_form_col {
    padding: 0 10px;
}

.cc_form_row .cc_form_col label {
    position: absolute;
    left: 10px;
    top: 50%;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
    transform: translate(0, -50%);
}

.cc_form_row .cc_form_col label i {
    color: #41c4e6;
}

.cc_form_row .cc_form_col.cc_textarea label {
    top: 19%;
    transform: translate(0, 0);
}

.cc_form_row .cc_form_col label.move {
    top: 10%;
    font-size: 10px;
    color: #41c4e6;
}

.cc_form_row .cc_form_col input {
    height: 55px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #a6a6a6;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 14px;
    outline: none;
}

.cc_form_row .cc_form_col.cc_textarea {
    padding-top: 25px;
}

.cc_form_row .cc_form_col textarea {
    height: 111px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #a6a6a6;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 14px;
    outline: none;
    resize: none;
    padding-top: 20px;
}

.cc_form_col .cf-button {
}

.cc_form_col .cf-button p {
    text-align: center;
    color: #41c4e6;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 35px 0;
}

.cc_form_col .cf-button em {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    font-style: normal;
}

.cc_form_col .cf-button em i.bttn-icon {
    display: block;
    width: 13px;
    height: 13px;
    background: url(images/sprite.png) no-repeat -100px -11px transparent;
    margin-left: 22px;
}

.cc_form_col .cf-button input {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    z-index: 12;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0;
}

.cc_form_row .wpcf7-not-valid-tip {
    position: absolute;
    left: auto;
    right: 0;
    width: 100%;
    text-align: right;
    height: auto;
    background: #ffffff;
    border: 0;
    top: 50%;
    font-size: 10px;
    white-space: nowrap;
    font-weight: 300;
    color: #ff0000;
    border: 1px solid #ff0000;
    transform: translate(0, -50%);
}

.cc_form_row .cc_textarea .wpcf7-not-valid-tip {
    top: 0;
}

.cc_form_row input.wpcf7-not-valid {
    border-color: #41c4e6;
    color: #41c4e6;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 13px;
    text-align: center;
    padding: 1vw;
    color: #fff;
    width: 100%;
}

/* Globals */
/* Pop up */
.site-popup {
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.702);
    display: none;
}

.site-popu-glob {
    transform: scale(0.9);
}

.site-popup .wpcf7 form .wpcf7-response-output {
    color: #000;
    position: absolute;
    margin: 5px 0 0;
}

.site-popup .site-popup-wrapper {
    background: url(images/popup-bg.jpg) no-repeat 0 0 #fff;
    background-size: cover;
    border-radius: 10px;
    max-width: 1170px;
}

.site-popup .site-popup-wrapper::after {
    display: block;
    content: "";
    background: url(images/popup-overlay-bg.png) no-repeat 0 0 transparent;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.site-popup .site-popup-container {
    z-index: 10;
    padding-right: 85px;
    width: 100%;
    padding-left: 43%;
}

.site-popup .site-popup-container .site-popup-close {
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: url(images/close-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    color: #fff;
    right: 0;
    top: 0;
}

.site-popup .site-popup-container .site-popup-content {
    padding: 99px 0 75px 0;
    max-width: 585px;
}

.site-popup .site-popup-container .site-popup-content p {
    color: #3d3d3d;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 30px 0 35px;
}

.site-popup .site-popup-container .site-popup-content form {
    position: relative;
}

.site-popup .cc_form_row .cc_form_col input, .site-popup .cc_form_row .cc_form_col label, .site-popup .cc_form_row .cc_form_col textarea {
    color: #232323;
}

.site-popup .cc_form_col .cf-button {
    margin-top: 40px;
}

.site-popup .cc_form_col .cf-button span {
    letter-spacing: 0.1em;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 21px;
    position: relative;
    z-index: 20;
    cursor: pointer;
}

/* Pop Up */
/* Header */
.header {
    z-index: 1011;
    transition: var(--transition);
    padding: 0 15px;
}

.header-wrapper {
    max-width: 1292px;
}

.header .header-container {
    z-index: 10;
}

.header::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(129deg, rgb(21, 47, 77) 0%, rgb(40, 80, 125) 100%);
    background-image: -webkit-linear-gradient(129deg, rgb(21, 47, 77) 0%, rgb(40, 80, 125) 100%);
    background-image: -ms-linear-gradient(129deg, rgb(21, 47, 77) 0%, rgb(40, 80, 125) 100%);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 5;
    transition: var(--transition);
}

.header.fh-show::after {
    opacity: 0.9;
}

/* Header Top */
.header .header-top {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition: var(--transition);
}

.header.fh-show .header-top {
    padding: 7px 0;
}

.header .header-top a {
    color: #fff;
    transition: var(--transition);
}

.header .header-top a:hover {
    color: #41c4e6;
}

/* Contact Info */
.header .header-top .header-top-info ul {
}

.header .header-top .header-top-info ul li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 20px;
}

.header .header-top .header-top-info ul li span {
    font-size: 0;
    display: none;
}

.header .header-top .header-top-info ul li:first-child {
    border-left: 0;
    padding-left: 0;
}

.header .header-top .header-top-info ul li a.asis-mailto-obfuscated-email {
    font-size: 0;
}

.header .header-top .header-top-info ul li a.asis-mailto-obfuscated-email i {
    font-size: 13px;
}

/* Contact Info */
/* SMI */
.header .header-top .header-top-smi {
}

.header .header-top .header-top-smi h4 {
    margin-right: 10px;
}

.header .header-top .header-top-smi a {
    font-size: 0;
    display: block;
    margin: 0 10px;
    color: #41c4e6;
    transition: var(--transition);
}

.header .header-top .header-top-smi a:hover {
    opacity: 0.7;
}

.header .header-top .header-top-smi a:last-child {
    margin-right: 0;
}

.header .header-top .header-top-smi a i {
    font-size: 16px;
}

/* SMI */
/* Header Top */
/* Header Bottom */
.header .header-bottom {
    padding: 28px 0;
    transition: var(--transition);
}

.header.fh-show .header-bottom {
    padding: 15px 0;
}

/* Logo */
.header .header-bottom .logo {
    max-width: 435px;
    width: 100%;
    transition: var(--transition);
}

.header.fh-show .header-bottom .logo {
    max-width: 343px;
}

/* Logo */
/* Navigation */
.header .header-bottom .navigation {
}

.header .header-bottom .navigation ul {
}

.header .header-bottom .navigation ul li {
    position: relative;
    padding: 0 21.5px;
}

.header .header-bottom .navigation ul li:last-child {
    padding-right: 0;
}

.header .header-bottom .navigation ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    position: relative;
    /* padding: 16px 0; */
    padding: 6px 0 4px;
    display: block;
}

.header .header-bottom .navigation ul li a span {
    display: block;
    position: relative;
    z-index: 10;
}

.header .header-bottom .navigation>div>ul>li>a::before {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.header .header-bottom .navigation ul li a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

/* Sub Menu */
.header #nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transition: opacity .3s, visibility, .3s, -webkit-transform .3s;
    transition: opacity .3s, visibility, .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s, visibility, .3s;
    transition: transform .3s, opacity .3s, visibility, .3s;
    transition: transform .3s, opacity .3s, visibility, .3s, -webkit-transform .3s;
    padding-top: 5.5px;
    min-width: 180px;
}

.header.fh-show .nav .sub-menu {
    padding-top: 35px;
}

.header #nav .sub-menu li:first-child {
    margin-top: 0;
}

.header #nav>li>.sub-menu {
    left: 50%;
    display: block;
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
}

.header #nav .sub-menu li {
    display: block;
    padding: 0;
    transition: var(--transition);
}

.header #nav .sub-menu a {
    color: #fff;
    display: block;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    transition: var(--transition);
    margin: 0;
    background-color: rgba(0, 0, 0, 0.702);
    font-weight: 300;
}

.header #nav .sub-menu a::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: -moz-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    background-image: -webkit-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    background-image: -ms-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    box-shadow: 0px 15px 18px 0px rgba(0, 0, 0, 0.43);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.header #nav .sub-menu li:hover>a::after {
    opacity: 1;
}

.header #nav .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    padding: 0 0 0 1%;
}

.header #nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.header #nav>li:hover>.sub-menu {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.header #nav .sub-menu li {
    position: relative;
    z-index: 1;
}

.header #nav .sub-menu .sub-menu li a {
    color: #fff;
}

.header #nav .sub-menu .sub-menu li:hover a {
    color: #fff;
}

/* Navigation */
/* Header Bottom */
/* Header */
/* Slideshow */
.slideshow {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.slideshow * {
    width: 100%;
    height: 100%;
}

/* Slideshow */
/* Hero */
.hero {
    z-index: 10;
}

.hero::after {
    /* display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    content: "";
    background: url(images/slide-overlay.png) no-repeat left bottom transparent;
    z-index: 6;
    background-size: 100%; */
}

.hero .slide-container {
    max-width: 1292px;
}

/* Slideshow holder */
.hero .slideshow-holder {
}

.hero .slideshow-holder canvas {
    display: block;
    width: 100%;
    min-height: 800px;
}

.hero .slideshow-holder::after, .hero .slideshow-holder::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.hero .slideshow-holder::after {
    background: url(images/slidetop.png) repeat-x top left transparent;
}

.hero .slideshow-holder::before {
    background: url(images/slide-bottom.png) repeat-x bottom left transparent;
}

/* Slideshow holder */
/* Slideshow Logo */
.hero .slideshow-logo {
    left: 0;
    bottom: 62px;
    z-index: 10;
}

.hero .slideshow-logo img {
    max-width: 206px;
    height: auto;
}

/* Slideshow Logo */
/* Slideshow Content */
.hero .slideshow-content {
    bottom: 77px;
    z-index: 12;
}

.hero .slideshow-content .slide-content-wrap {
    width: 100%;
}

.hero .slide-content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero .slideshow-content h1 {
    color: #fff;
    font-size: 55px;
    line-height: 1.166666666666667;
    font-family: var(--font-family-title);
    margin-bottom: 32px;
    text-align: center;
}

.hero .slideshow-content h1 span {
    display: block;
    /* color: #41c4e6; */
    display: block;
}

.hero .slideshow-content p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.025em;
    font-weight: 500;
    padding: 30px 0;
}

.slide-content-left-row {
    display: block;
    text-align: center;
}

.slide-content-left-row img {
    margin: 70px auto 0;
}

.slide-content-left-row .default-button {
    max-width: 300px;
    width: 100%;
}

.hero .slide-content-right {
    width: 593px;
    max-width: 48%;
}

.sign-up-wrap {
    position: relative;
    display: block;
}

.sign-up-wrap:before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/bg-su-form.jpg) no-repeat top left / cover;
    z-index: -1;
    opacity: 0.9; */
}

.su-title {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 40.912%;
    margin-top: 25px;
}

.su-title .default-title h2 span {
    font-size: 16px;
    margin-bottom: 15px;
}

.su-title .default-title h2 span::before {
    margin-right: 20px;
}

.su-title .default-title h2 {
    font-size: 48px;
}

.su-form {
    display: inline-block;
    vertical-align: top;
    width: 59.088%;
    position: relative;
}

.su-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: calc(100% + 50px);
    left: 0;
    right: 0;
    font-size: 12px;
    padding: 2px;
    color: #000 !important;
    margin: 0 auto;
}

.su-form form {
    margin: 0 -4px;
    display: block;
    position: relative;
}

.su-field {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 4px;
    width: 100%;
}

.su-field.field-12 {
    width: 100%;
}

.su-field.field-6 {
    width: 50%;
}

.su-field select, .su-field input {
    width: 100%;
    height: 60px;
    background: transparent;
    border: 2px solid #dbdbdb;
    font-size: 14px;
    color: #000;
    letter-spacing: 0.15em;
    line-height: normal;
    padding: 0 20px;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.su-field select {
    appearance: none;
    background-image: url(images/su-dropdown-icon.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
}

.su-field select option {
    color: #000;
}

.su-field select::-ms-expand {
    display: none;
}

.su-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.su-button .default-button {
    width: 100%;
    height: 60px;
}

.su-button .default-button span:not(.wpcf7-spinner):not(.ajax-loader) {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 10;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.su-button .default-button span i.bttn-icon {
    display: block;
    width: 13px;
    height: 13px;
    background: url(images/sprite.png) no-repeat -100px -11px transparent;
    margin-left: 22px;
}

.su-button .default-button input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    opacity: 0;
}

.su-button .default-button .wpcf7-spinner, .su-button .default-button .ajax-loader {
    position: absolute;
    bottom: -75px;
    left: 0;
    right: 0;
    margin: auto;
}

.sign-up-container {
    background-color: #fff;
    z-index: 1;
    position: relative;
    display: block;
    font-size: 0;
    padding: 78px 0 75px;
}

.sign-up-container .custom-container {
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
    max-width: 1323px;
}

.su-field-control.w-70 {
    width: 56.477%;
}

.su-field-control-row {
    display: flex;
}

.su-field-control {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.su-field-control.w-30 {
    width: 43.523%;
}

.su-field.w-50 {
    width: calc(50%);
}

.su-form p {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #000;
    font-style: italic !important;
    font-weight: 600;
    display: block;
    text-align: right;
    margin-top: 15px;
}

.su-form p a {
    color: var(--primary);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.su-form p span em {
    font-style: italic !important;
}

.su-form p a:hover {
    opacity: .75;
}

.su-field select option {
    background-color: #fff;
    color: #000;
}

.hero .slideshow-content .su-form p {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.75;
    text-align: center;
    font-style: italic;
    padding: 20px 0 0;
}

.hero .slideshow-content .su-form p span {
    font-style: italic;
    color: var(--primary);
}

.hero .slideshow-content .su-form p span em {
    font-style: inherit !important;
}

.qc-mini-wrap {
    padding: 45px 35px 50px;
    font-size: 0;
    background: url(images/form-bg.png) no-repeat top left / cover;
}

.qc-mini-title {
    margin-bottom: 15px;
}

.qc-mini-title h2 {
    font-size: 48px;
}

.qc-mini-form {
}

.qc-mini-fields {
    margin: 0 -3.5px;
}

.qc-mini-field {
    display: inline-block;
    padding: 3.5px;
}

.qc-mini-field input, .qc-mini-field select {
    appearance: none;
    border: 0;
    width: 100%;
    height: 44px;
    padding: 0 20px;
    background: #ffffff;
    font-size: 12px;
    color: #5a5a5a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.qc-mini-button {
    width: 225px;
    margin: 32px auto 0;
}

.qc-mini-button .default-button {
    width: 100%;
}

/* Slideshow Content */
/* Popup Quick Search START */
.home .aiosp-bg {
    opacity: 0.7;
}

.aiosp-wrap .aiosp-container.aiosp-ref-\#hp_qs_popup .aios-popup-body {
    width: 100%;
    max-width: 1170px;
    background: transparent;
    min-height: auto;
    padding: 0;
}

.qs-site-popup {
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.702);
    position: relative;
}

.qs-site-popu-glob {
}

.qs-site-popup .wpcf7 form .wpcf7-response-output {
    color: #000;
    position: absolute;
}

.qs-site-popup .qs-site-popup-wrapper {
    background: url(images/popup-qs-bg.jpg) no-repeat 0 0 #fff;
    background-size: cover;
    border-radius: 10px;
    max-width: 1170px;
}

.qs-site-popup .qs-site-popup-wrapper::after {
    display: block;
    content: "";
    background: url(images/popup-overlay-qs.png) no-repeat 0 0 transparent;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.qs-site-popup .qs-site-popup-container {
    z-index: 10;
    padding-right: 120px;
    width: 100%;
    padding-left: 43%;
}

.qs-site-popup .qs-site-popup-container .qs-site-popup-close {
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: url(images/close-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    color: #fff;
    right: 0;
    top: 0;
    padding: 0;
    opacity: 1;
}

.qs-site-popup .qs-site-popup-container .qs-site-popup-close i {
    pointer-events: none;
    font-size: 23px;
}

.qs-site-popup .qs-site-popup-container .qs-site-popup-content {
    width: 100%;
    max-width: 548px;
    padding: 85px 0;
}

.qs-site-popup .pu-qc-form {
    flex-flow: column;
    font-size: 0;
}

.qs-site-popup .qs-site-popup-container .qs-site-popup-content p {
    color: #929292;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 15px 0 0;
}

.qs-site-popup .qs-site-popup-container .qs-site-popup-content form {
    position: relative;
}

.qs-site-popup .cc_form_row .cc_form_col input, .qs-site-popup .cc_form_row .cc_form_col label, .qs-site-popup .cc_form_row .cc_form_col textarea {
    color: #232323;
}

.qs-site-popup .cc_form_col .cf-button {
    margin-top: 40px;
}

.qs-site-popup .cc_form_col .cf-button span {
    letter-spacing: 0.1em;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 21px;
    position: relative;
    z-index: 20;
    cursor: pointer;
}

/* Popup Quick Search Form */
.pu-qc-form .pu-qc-fields {
    flex-shrink: 0;
}

.pu-qc-form .pu-qc-fields p {
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: 15px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field-set, .pu-qc-form .pu-qc-fields .pu-qc-group {
    margin: 0 -13px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field {
    padding: 0 13px;
    position: relative;
    margin: 8px 0;
}

.pu-qc-form .pu-qc-fields .field-wrap {
    position: relative;
    width: 100%;
}

.pu-qc-form .pu-qc-fields .pu-qc-field label {
    display: block;
    height: 70px;
    position: relative;
    font-size: 0;
    border-bottom: 2px solid #d0d0d0;
}

.pu-qc-form .pu-qc-fields .pu-qc-price-field label {
    display: none;
}

.pu-qc-form .pu-qc-fields .pu-qc-field label::before {
    display: block;
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(0, -50%);
    top: 50%;
}

.pu-qc-form .pu-qc-fields .pu-qc-field label::after {
    display: block;
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    transform: translate(0, -50%);
    top: 50%;
    width: 8px;
    height: 5px;
    right: 12px;
    background-image: url(images/sprite.png);
    background-position: -83px -11px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field label.pu-qc-cities::before {
    background-image: url(images/pu-qs-icon-01.png);
    width: 10px;
    height: 14px;
    left: 0;
}

.pu-qc-form .pu-qc-fields .pu-qc-field label.pu-qc-bedrooms::before {
    width: 19px;
    height: 16px;
    background-image: url(images/pu-qs-icon-02.png);
}

.pu-qc-form .pu-qc-fields .pu-qc-field label.pu-qc-bathrooms::before {
    width: 19px;
    height: 17px;
    background-image: url(images/pu-qs-icon-03.png);
}

.pu-qc-form .pu-qc-fields .pu-qc-field select {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 42px;
    color: #232323;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-transform: uppercase;
}

.pu-qc-form .bootstrap-select.btn-group {
    /*select width, display and position are set here and set to !important

        no height attribute. padding in .bootstrap-select.btn-group .dropdown-toggle sets the height*/
    position: absolute;
    width: 100%;
    height: 100%;
    top: 17px;
}

.pu-qc-form .bootstrap-select.btn-group .dropdown-toggle {
    /*form appearance should be set here

        no height attribute. set the height by setting the padding*/
    border-radius: 0;
    position: absolute;
    width: 100%;
    /* height: 100%;

        top: 0;*/
    left: 0;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 42px;
    color: #232323;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    box-shadow: none !important;
    outline: none !important;
    text-transform: uppercase;
}

.pu-qc-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    /*font size, family, etc. should be set here*/
    color: #232323;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-transform: uppercase;
    text-overflow: ellipsis;
}

.pu-qc-form .pu-qc-fields .pu-qc-field select option {
    color: #232323;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat {
    margin-top: 29px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-line {
    background: #a6a6a6;
    height: 2px;
    top: 39px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-bar {
    height: 2px;
    background-color: #41c4e6;
    top: 39px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-handle {
    top: 30px;
    width: 16px;
    height: 16px;
    background-color: #41c4e6;
    cursor: pointer;
    border-radius: 50%;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-handle i {
    display: none;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-from, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-to, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-single {
    color: #232323;
    background: transparent;
    font-size: 15px;
    font-family: var(--font-family-default);
}

.pu-qc-form .pu-qc-fields .pu-qc-field.pu-qc-price-field label {
    display: none;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-from:before, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-to:before, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-single:before {
    position: static;
    width: auto;
    height: auto;
    display: inline;
    border-color: transparent;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-min, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-max {
    font-size: 15px;
    color: #fff;
    background: transparent;
    display: flex;
    align-items: center;
}

.pu-qc-form .quick-search-container .irs--flat .irs-min::before, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-from::before, .pu-qc-form .pu-qc-fields .pu-qc-field .irs--flat .irs-to::before, .pu-qc-form .quick-search-container .irs--flat .irs-max::before {
    content: "$";
}

.pu-qc-form .quick-search-container .irs--flat .irs-max::after {
    content: "M";
}

.pu-qc-form .pu-qc-fields .pu-qc-field .pu-qc-buttons {
    padding: 0 43px;
}

.pu-qc-form .pu-qc-fields .pu-qc-field .pu-qc-buttons .default-button {
    width: 48%;
    margin: 18px 0 0;
}

.hp-quick-search .qc-fields .qc-field label::after, .hp-quick-search .qc-fields .qc-field label::before {
}

/* Popup Quick Search Form END */
/* Popup Quick Search END */
/* Arrow */
.hero .slide-to {
    width: 66px;
    height: 66px;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
    background: #fff;
    bottom: -33px;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, 0);
    border-radius: 50%;
}

.hero .slide-to a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.hero .slide-to i {
    display: block;
    transform: rotate(90deg);
    color: #1c9dbf;
}

/* Arrow */
/* Hero */
/* About */
.hp-about {
    background: url(images/about-bg.jpg) no-repeat top center #fff;
    background-size: cover !important;
    /*padding: 173px 0 133px;*/
    padding: 85px 0 92px;
}

.hp-about::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #152f4e;
    opacity: 0.9;
}

.hp-about::after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-image: url(images/bg-about-overlay.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.85;
}

.hp-about>div {
    position: relative;
    z-index: 2;
}

.about-container {
    /*padding-left: 7.87%;
    padding-right: 5.87%;*/
    padding-left: 9.375%;
    padding-right: 9.375%;
}

/* About Text */
.about-container .about-text {
    /*width: 48.2%;
    flex-shrink: 0;*/
    text-align: center;
}

.about-container .about-text .default-title {
    padding-bottom: 20px;
}

.about-container .about-text .default-title h2 span {
    justify-content: center;
}

.about-text-tagline {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 380px;
    max-width: 100%;
    margin: 0 auto 30px;
}

.about-text-tagline span {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.3em;
}

.about-container .about-text p {
    /*color: #5a5a5a;*/
    color: #ffffff;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.025em;
    font-size: 15px;
    padding: 15px 0;
}

.about-container .about-text .default-button {
    margin-top: 35px;
    color: #ffffff;
}

/* About text */
/* About Form */
.about-container .about-form {
    width: 42.83%;
    margin-left: 8.12%;
    margin-top: 0;
}

.about-container .about-form form {
    padding: 0 50px;
}

.about-container .about-form .default-form-wrap {
    background: url(images/form-bg.png) no-repeat top left transparent;
    background-size: 100% 100%;
    padding: 56px 0 37px;
}

.about-container .about-form .a-form-cta {
    background: #fff;
    padding: 20px 0;
}

.about-container .about-form .a-form-cta h5 {
    color: #5a5a5a;
    font-size: 15px;
    letter-spacing: 1.225em;
    line-height: 1.9;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-container .about-form .a-form-cta a {
    color: var(--primary);
    letter-spacing: 0.1em;
    font-size: 30px;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.about-container .about-form .a-form-cta a span {
    display: none;
}

/* About form */
/* About */
/* Quick Search */
.hp-quick-search {
    background: url(images/accent-bg.jpg) no-repeat top center transparent;
    background-size: cover;
    z-index: 11;
}

.hp-quick-search .quick-search-wrapper {
    z-index: 10;
}

.hp-quick-search .quick-search-accent {
    width: 4.43%;
    background-size: cover;
    display: none;
}

.hp-quick-search .quick-search-container {
    background: url(images/qs-bg.jpg) no-repeat center transparent;
    background-attachment: fixed;
    width: 95.56%;
    width: 100%;
    background-size: cover;
    padding: 60px 0;
}

.hp-quick-search .quick-search-container::after, .hp-quick-search .quick-search-container::before {
    z-index: 5;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hp-quick-search .quick-search-container::after {
    background: url(images/qc-overlay.png) no-repeat left top transparent;
    background-size: auto 100%;
}

.hp-quick-search .quick-search-container::before {
    background: linear-gradient(120deg, rgba(40, 80, 125, 1) 45%, rgba(40, 80, 125, 0) 100%);
    opacity: 0.902;
    z-index: 6;
}

.hp-quick-search .quick-search-container .qc-form {
    z-index: 10;
    position: relative;
}

.hp-quick-search .quick-search-container .qc-form::before {
    content: '';
    position: absolute;
    width: 40%;
    height: calc(100% + 120px);
    background: linear-gradient(280deg, rgba(0, 156, 157, 1) 0%, rgba(0, 156, 157, 0) 100%);
    bottom: -60px;
    right: 0;
    opacity: .50;
}

/* Quick Search Title */
.hp-quick-search .qc-title {
    width: 30.9%;
    padding-left: 5%;
}

/* Quick Search Title */
/* Quick Search Form */
.hp-quick-search .qc-fields {
    flex-shrink: 0;
    width: 63%;
}

.hp-quick-search .qc-fields p {
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: 15px;
}

.hp-quick-search .qc-fields .qc-field-set, .hp-quick-search .qc-fields .qc-group {
    margin: 0 -13px;
}

.hp-quick-search .qc-fields .qc-field {
    padding: 0 13px;
    position: relative;
    margin: 8px 0;
}

.hp-quick-search .qc-fields .field-wrap {
    position: relative;
    width: 100%;
}

.hp-quick-search .qc-fields .qc-field label {
    display: block;
    height: 70px;
    position: relative;
    font-size: 0;
    border-bottom: 2px solid #a6a6a6;
}

.hp-quick-search .qc-fields .qc-field.qc-price-field label {
    display: none;
}

.hp-quick-search .qc-fields .qc-field label::after, .hp-quick-search .qc-fields .qc-field label::before {
    display: block;
    content: "";
    position: absolute;
    background-image: url(images/sprite.png);
    background-repeat: no-repeat;
    transform: translate(0, -50%);
    top: 50%;
}

.hp-quick-search .qc-fields .qc-field label::after {
    width: 8px;
    height: 5px;
    right: 12px;
    background-position: -83px -11px;
}

.hp-quick-search .qc-fields .qc-field label::before {
    left: 0;
}

.hp-quick-search .qc-fields .qc-field label.qc-cities::before {
    width: 12px;
    height: 15px;
    background-position: -18px -13px;
}

.hp-quick-search .qc-fields .qc-field label.qc-bedrooms::before {
    width: 19px;
    height: 15px;
    background-position: -58px -11px;
}

.hp-quick-search .qc-fields .qc-field label.qc-bathrooms::before {
    width: 19px;
    height: 17px;
    background-position: -34px -10px;
}

.hp-quick-search .qc-fields .qc-field select {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 42px;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-transform: uppercase;
}

.hp-quick-search .bootstrap-select.btn-group {
    /*select width, display and position are set here and set to !important

    no height attribute. padding in .bootstrap-select.btn-group .dropdown-toggle sets the height*/
    position: absolute;
    width: 100%;
    height: 100%;
    top: 17px;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    /*form appearance should be set here

    no height attribute. set the height by setting the padding*/
    border-radius: 0;
    position: absolute;
    width: 100%;
    /* height: 100%;

    top: 0;*/
    left: 0;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 42px;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    box-shadow: none !important;
    outline: none !important;
    text-transform: uppercase;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    /*font size, family, etc. should be set here*/
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-transform: uppercase;
    text-overflow: ellipsis;
}

.hp-quick-search .qc-fields .qc-field select option {
    color: #000;
}

.hp-quick-search .qc-fields .qc-field .irs--flat {
    margin-top: 29px;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-line {
    background: #a6a6a6;
    height: 2px;
    top: 39px;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-bar {
    height: 2px;
    background-color: #41c4e6;
    top: 39px;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-handle {
    top: 30px;
    width: 16px;
    height: 16px;
    background-color: #41c4e6;
    cursor: pointer;
    border-radius: 50%;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-handle i {
    display: none;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-from, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-to, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-single {
    background: transparent;
    font-size: 15px;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-from:before, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-to:before, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-single:before {
    position: static;
    width: auto;
    height: auto;
    display: inline;
    border-color: transparent;
}

.hp-quick-search .qc-fields .qc-field .irs--flat .irs-min, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-max {
    font-size: 15px;
    color: #fff;
    background: transparent;
    display: flex;
    align-items: center;
}

.hp-quick-search .quick-search-container .irs--flat .irs-min::before, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-from::before, .hp-quick-search .qc-fields .qc-field .irs--flat .irs-to::before, .hp-quick-search .quick-search-container .irs--flat .irs-max::before {
    content: "$";
}

.hp-quick-search .quick-search-container .irs--flat .irs-max::after {
    content: "M";
}

.hp-quick-search .qc-fields .qc-field .qc-buttons {
}

.hp-quick-search .qc-fields .qc-field .qc-buttons .default-button {
    width: 48%;
    margin: 18px 0 0;
}

/* Quick Search Form */
/* Quick Search */
/* Featured Listings */
.hp-featured-listings {
    background: #fff;
    /*padding: 220px 0 0;*/
    padding: 0;
    overflow: hidden;
    padding: 75px 4.375% 64px;
}

.hp-featured-listings .fl-bg {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(images/fl-bg.jpg) no-repeat top left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 7;
    background-size: 100% auto;
    display: none;
}

.hp-featured-listings .fl-wrapper {
    z-index: 10;
    width: 100%;
}

/* FL title */
.hp-featured-listings .fl-wrapper .fl-title {
    /*padding-right: 8.5%;
    margin-bottom: 15px;*/
    padding: 15px;
    position: absolute;
    width: 45%;
    /*top: 0;*/
    right: 4.375%;
    z-index: 2;
}

.hp-featured-listings .fl-wrapper .fl-title .default-button {
    margin-top: 45px;
}

/* FL title */
/* FL lists */
.hp-featured-listings .fl-lists {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: row wrap;
    position: relative;
    z-index: 1;
    width: 100%;
}

.fl-bg-accent {
    display: none;
}

.hp-featured-listings .fl-list {
    /*padding: 75px 4.375% 64px;*/
    padding: 15px;
    width: 50% !important;
    position: relative;
    padding-bottom: 240px;
}

.hp-featured-listings .fl-list:first-child {
    margin-right: 50%;
}

.hp-featured-listings .fl-list a {
    /*align-items: flex-end;*/
    position: relative;
    /* overflow: hidden; */
}

.hp-featured-listings .fl-list:nth-child(even) a {
    /*flex-flow: row-reverse;*/
}

/* FL image */
.hp-featured-listings .fl-list a .fl-image {
    /*width: 70.12%;
    flex-shrink: 0;*/
    z-index: 1;
}


.hp-featured-listings .fl-list a .fl-image canvas {
    height: 415px;
}


.hp-featured-listings .fl-list a .fl-image::after {
    content: '';
    display: block;
    width: 83%;
    height: calc(100% + 75px);
    position: absolute;
    top: 0;
    background: url(images/accent-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    display: none;
}

.hp-featured-listings .fl-list:nth-child(odd) a .fl-image::after {
    /* left: -7%;*/
}

.hp-featured-listings .fl-list:nth-child(even) a .fl-image::after {
    /*right: -7%;*/
}

.hp-featured-listings .fl-list a .fl-image img {
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: 10;
}

.hp-featured-listings .fl-list a:hover .fl-image img {
    filter: grayscale(1);
}

/* FL image */
/* FL Content */
.hp-featured-listings .fl-list a .fl-content {
    transition: var(--transition);
    /*flex-shrink: 0;*/
    /* width: 39.2%;*/
    width: 80%;
    z-index: 5;
    text-align: center;
    padding: 56px;
    position: absolute;
    /*bottom: 0;*/
    bottom: -198px;
    left: 50%;
    transform: translateX(-50%);
}

.hp-featured-listings .fl-list a:hover .fl-content {
    /* top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto; */
}

.hp-featured-listings .fl-list:nth-child(odd) a .fl-content {
    /*margin-left: -9.3%;*/
}

.hp-featured-listings .fl-list:nth-child(even) a .fl-content {
    /* margin-right: -9.3%;*/
}

.hp-featured-listings .fl-list a .fl-content::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    transition: var(--transition);
}

.hp-featured-listings .fl-list a:hover .fl-content::after {
    opacity: 0;
}

.hp-featured-listings .fl-list a .fl-content::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -moz-linear-gradient(129deg, rgb(62, 62, 62) 0%, rgb(108, 108, 108) 100%);
    background-image: -webkit-linear-gradient(129deg, rgb(62, 62, 62) 0%, rgb(108, 108, 108) 100%);
    background-image: -ms-linear-gradient(129deg, rgb(62, 62, 62) 0%, rgb(108, 108, 108) 100%);
    transition: var(--transition);
    opacity: 0;
}

.hp-featured-listings .fl-list a:hover .fl-content::before {
    opacity: 1;
}

.hp-featured-listings .fl-list a .fl-content .fl-content-wrap {
    z-index: 10;
}

.hp-featured-listings .fl-list a .fl-content h4 {
    color: var(--primary);
    font-size: 36px;
    font-weight: 600;
    transition: var(--transition);
}

.hp-featured-listings .fl-list a:hover .fl-content h4 {
    /*color: #fff;*/
}

.hp-featured-listings .fl-list a .fl-content p {
    color: #333333;
    font-family: var(--font-family-title);
    font-size: 30px;
    line-height: 0.8;
    padding-top: 32px;
    transition: var(--transition);
}

.hp-featured-listings .fl-list a:hover .fl-content p {
    color: #fff;
}

.hp-featured-listings .fl-list a .fl-content p span {
    font-family: var(--font-family-default);
    letter-spacing: 0.2em;
    font-size: 16px;
    display: block;
    text-transform: uppercase;
    line-height: 1.5;
    padding-top: 10px;
    transition: var(--transition);
}

.hp-featured-listings .fl-list a:hover .fl-content p span {
    color: #41c4e6;
}

.hp-featured-listings .fl-list a .fl-content ul {
    height: 38px;
    overflow: hidden;
    transition: var(--transition);
}

.hp-featured-listings .fl-list a:hover .fl-content ul {
    height: auto;
    padding: 21px 0 38px;
}

.hp-featured-listings .fl-list a .fl-content ul li {
    padding: 0 20px;
    transition: var(--transition);
    opacity: 0;
}

.hp-featured-listings .fl-list a:hover .fl-content ul li {
    opacity: 1;
    transition: var(--transition);
}

.hp-featured-listings .fl-list a .fl-content ul li i {
    width: 19px;
    display: inline-block;
    height: 19px;
    background-image: url(images/sprite.png);
    background-repeat: no-repeat;
}

.hp-featured-listings .fl-list a .fl-content ul li i.fl-beds {
    background-position: -6px -176px;
}

.hp-featured-listings .fl-list a .fl-content ul li i.fl-baths {
    background-position: -29px -175px;
}

.hp-featured-listings .fl-list a .fl-content ul li i.fl-sf {
    background-position: -57px -174px;
}

.hp-featured-listings .fl-list a .fl-content ul li em {
    display: block;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: #fff;
}

/* FL Content */
/* FL lists */
/* Featured Listings */
/* Sign Up New Listings */
.hp-new-listings {
    background: url(images/new-listings-bg.jpg) no-repeat top left transparent;
    background-size: cover !important;
    padding: 100px 0 200px;
}

.hp-new-listings .new-listings-form {
    width: 100%;
    max-width: 635px;
    margin: 30px auto 0;
}

.hp-new-listings .new-listings-form .cc_form_row {
    width: 100%;
    display: block;
}

.hp-new-listings .new-listings-form label {
    display: none;
}

.hp-new-listings .new-listings-form input[type="email"] {
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: -moz-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    border-image-source: -webkit-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    border-image-source: -ms-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    outline: none;
    width: 100%;
    height: 66px;
    color: #4b4b4b;
    font-size: 18px;
    letter-spacing: 0.15em;
    background: transparent;
    text-align: center;
    margin-bottom: 33px;
}

.hp-new-listings .new-listings-form .cc_form_row .wpcf7-not-valid-tip {
    color: #ff0000;
    font-size: 12px;
}

.hp-new-listings .new-listings-form .wpcf7 form .wpcf7-response-output {
    color: #333;
}

.hp-new-listings p {
    color: #5a5a5a;
    line-height: 1.6;
    letter-spacing: 0.2em;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    padding-top: 25px;
}

.hp-new-listings p a {
    font-weight: 700;
    color: var(--primary);
}

.hp-new-listings p a span {
    display: none;
}

/* Sign Up New Listings */
/* Area of Expertise */
.hp-area-of-expertise {
    background: #fff;
    padding: 102px 4.375%;
}

.hp-area-of-expertise .expertise-wrapper {
    z-index: 20;
}

.hp-area-of-expertise .area-bg {
    width: 100%;
    background: url(images/area-expertise-bg.jpg) no-repeat 0 0 transparent;
    height: 56.33%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-attachment: fixed;
    z-index: 5;
}

.hp-area-of-expertise .area-bg::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(images/area-bg-overlay.png) no-repeat 0 0 transparent;
    background-size: cover;
}

.hp-area-of-expertise .area-bg-bg {
    width: 100%;
    background: url(images/area-bg-02.jpg) no-repeat 0 0 transparent;
    height: 20.5%;
    position: absolute;
    left: 0;
    bottom: -20.5%;
    background-size: cover;
    background-attachment: fixed;
}

.hp-area-of-expertise .area-bg-bg::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0.9;
    z-index: 2;
}

.hp-area-of-expertise .area-bg-bg::before {
    display: block;
    content: "";
    width: 48%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(images/accent-bg.jpg) no-repeat 0 0 transparent;
    z-index: 5;
}

/* Area Title */
.hp-area-of-expertise .area-expertise-title {
    padding: 0 80px 25px;
}

.hp-area-of-expertise .area-expertise-title .area-pagination {
}

.hp-area-of-expertise .area-expertise-title .area-pagination .area-divider {
    background: #ffffff;
    width: 1px;
    height: 50px;
    opacity: 0.2;
    margin: 0 26px;
}

.hp-area-of-expertise .area-expertise-title .area-pagination button {
    background: transparent;
    border: none;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.hp-area-of-expertise .area-expertise-title .area-pagination button i {
    display: block;
    width: 21px;
    height: 40px;
    background-image: url(images/sprite.png);
    background-repeat: no-repeat;
}

.hp-area-of-expertise .area-expertise-title .area-pagination .area-prev button i {
    background-position: -88px -161px;
    margin-right: 24px;
}

.hp-area-of-expertise .area-expertise-title .area-pagination .area-next button i {
    background-position: -111px -161px;
    margin-left: 24px;
}

/* Area Title */
/* Expertise Lists */
.hp-area-of-expertise .expertise-lists {
    margin: 0 -10px;
}

.hp-area-of-expertise .expertise-list {
    padding: 30px 15px;
}

.hp-area-of-expertise .expertise-list a {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 17px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.hp-area-of-expertise .expertise-list .area-img {
}

.hp-area-of-expertise .expertise-list a .area-img::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #15304e;
    z-index: 6;
    opacity: 0;
    transition: var(--transition);
}

.hp-area-of-expertise .expertise-list a:hover .area-img::after {
    opacity: 0.88;
}

.hp-area-of-expertise .expertise-list .area-img img {
    top: 0;
    left: 0;
    z-index: 5;
}

.hp-area-of-expertise .expertise-list a .area-img p {
    position: absolute;
    z-index: 10;
    top: 50%;
    line-height: 1.7;
    letter-spacing: 0.025em;
    transform: translate(0, -50%);
    font-size: 14px;
    text-align: center;
    padding: 0 17%;
    font-weight: 400;
    opacity: 0;
    transition: var(--transition);
    margin-top: 100px;
}

.hp-area-of-expertise .expertise-list a:hover .area-img p {
    top: 50%;
    margin-top: 0;
    opacity: 1;
}

.hp-area-of-expertise .expertise-list a h4 {
    padding: 35px 0;
    font-size: 34px;
    color: var(--primary);
    font-family: var(--font-family-title);
    text-align: center;
    transition: var(--transition);
}

.hp-area-of-expertise .expertise-list a:hover h4 {
    background: var(--primary);
    color: #fff;
}

/* Expertise Lists */
/* Area Of Expertise */
/* Credentials Affiliations */
.hp-credential-affiliations {
    background: #fff;
}

/* BG */
.hp-credential-affiliations .affiliate-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% - 104px);
    width: 45.93%;
    background: url(images/agents-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover !important;
    z-index: 5;
    display: none;
}

.hp-credential-affiliations .affiliate-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    height: calc(100% - 104px);
    width: 54.06%;
    background: url(images/affiliate-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover !important;
    z-index: 5;
    display: none;
}

.hp-credential-affiliations .affiliate-bg-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 104px;
    width: 100%;
    background: url(images/affiliate-bg02.jpg) no-repeat 0 0 transparent;
    background-size: cover !important;
    background-attachment: fixed;
    z-index: 7;
    display: none;
}

/* BG */
.hp-credential-affiliations .ca-wrapper {
    z-index: 10;
}

.hp-credential-affiliations .ca-wrapper .ca-image {
    width: 45.93%;
    flex-shrink: 0;
    padding: 0 30px 104px;
    width: 50%;
    padding-left: 7%;
}

.hp-credential-affiliations .ca-wrapper .ca-image img {
    /*max-width: 632px;*/
}

.hp-credential-affiliations .ca-wrapper .ca-content {
    width: 54.06%;
    width: 50%;
}

.hp-credential-affiliations .ca-wrapper .ca-content .ca-content-container {
    background: #fff;
    width: 83.3%;
    height: 100%;
    padding: 58px 57px 79px 73px;
    padding-top: 20px;
}

.hp-credential-affiliations .ca-wrapper .ca-content .default-title h2 {
    line-height: 1.1;
    padding-bottom: 36px;
}

.hp-credential-affiliations .ca-wrapper .ca-content p {
    color: #5a5a5a;
    line-height: 1.9;
    font-size: 15px;
    padding: 15px 0;
    letter-spacing: 0.025em;
}

.hp-credential-affiliations .ca-wrapper .ca-content ul {
    padding-top: 15px;
}

.hp-credential-affiliations .ca-wrapper .ca-content ul li {
    color: #5a5a5a;
    line-height: 2.9;
    font-size: 15px;
    letter-spacing: 0.025em;
    padding-left: 43px;
    position: relative;
}

.hp-credential-affiliations .ca-wrapper .ca-content ul li::before {
    display: block;
    content: "";
    width: 21px;
    height: 21px;
    background: url(images/sprite.png) no-repeat -16px -50px transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

/* Credentials Affiliation */
/* Reviews */
.hp-reviews {
    background: url(images/reviews-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover !important;
    z-index: 10;
    padding: 70px 3% 89px;
    background-position: right !important;
}

.hp-reviews .reviews-wrapper {
    /* max-width: 1295px; */
    font-size: 0;
}

.hp-reviews .reviews-wrapper>div>p {
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.025em;
    font-size: 17px;
    text-align: center;
    padding: 39px 57px;
}

.hp-reviews .reviews-container {
    padding-left: 5%;
    display: block;
    position: relative;
}

.hp-reviews .reviews-container .review-list {
}

.hp-reviews .reviews-container .review-list .review-img {
    width: 39.30%;
    margin-left: 8.95%;
}

.hp-reviews .reviews-container .splide__track {
    margin: 0 5%;
}

.review-wrap {
    padding: 0 20px;
}

.hp-reviews .reviews-container .review-list .review-text {
    width: 100%;
    padding-left: 35px;
    padding-top: 40px;
}

.hp-reviews .reviews-container .review-list .review-text p {
    font-size: 15px;
    line-height: 1.867;
    letter-spacing: 0.025em;
    font-weight: 500;
    color: #fff;
    padding-top: 0;
    position: relative;
}

.hp-reviews .reviews-container .review-list .review-text p::after {
    display: block;
    width: 94px;
    height: 81px;
    background: url(images/sprite.png) no-repeat -1px -85px transparent;
    content: "";
    position: absolute;
    left: -34px;
    top: -40px;
    z-index: -1;
}

.hp-reviews .reviews-container .review-list .review-text h3 {
    font-size: 30px;
    font-family: var(--font-family-title);
    color: #41c4e6;
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding-top: 25px;
}

.hp-reviews .splide__arrow {
    opacity: 1;
    background-color: transparent;
    background-image: url(images/sprite.png);
    width: 35px;
    height: 53px;
    opacity: 1 !important;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    outline: none !important;
}

.hp-reviews .splide__arrow--prev {
    background-position: -53px -30px;
}

.hp-reviews .splide__arrow--next {
    background-position: -75px -30px;
}

.hp-reviews .splide__arrow svg {
    display: none;
}

.reviews-row {
    display: block;
    position: relative;
}

.reviews-col {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.reviews-col:first-child {
    width: 20%;
}

.reviews-col:last-child {
    width: 80%;
}

.hp-reviews .splide__arrow:hover {
    opacity: .75 !important;
}

.reviews-col .default-title {
    margin-top: 30px;
}

.reviews-lists:not(.is-initialized) .hp-reviews .reviews-container .review-list:nth-child(n+2)~div {
    display: none;
}

/* Reviews */
/* Home valuation */
.hp-home-worth {
    z-index: 10;
    background: url(images/homeworthbg.jpg) no-repeat top left #fff;
    background-size: cover !important;
    padding: 92px 0 101px;
    overflow: hidden;
    background: #fff !important;
}

.hp-home-worth::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: url(images/home-worth-overlay.png) no-repeat bottom left transparent;
    background-size: 100%;
}

.hp-home-worth .home-worth-wrapper {
    /*
    padding-left: 5.9375%;
    padding-right: 4.375%;
*/
    padding: 0 7.3125%;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
    flex-flow: row wrap;
    align-items: flex-start;
}

.hp-home-worth .home-worth-wrapper .default-title {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 37px;
}

.hp-home-worth .home-worth-title {
    width: 43.2%;
    flex-shrink: 0;
    margin: 23px 0 0;
}

.hp-home-worth .home-worth-title::after {
    content: '';
    display: block;
    width: 92%;
    height: 100%;
    position: absolute;
    top: 18%;
    background: url(images/accent-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    z-index: 1;
    left: -17%;
    display: none;
}

.hp-home-worth .home-worth-title .home-worth-title-wrap {
    background: url(images/homewort-titlebg.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    padding: 80px;
    z-index: 10;
}

.hp-home-worth .home-worth-title .home-worth-title-wrap p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.025em;
    text-align: center;
    padding-top: 23px;
}

.hp-home-worth .home-worth-title p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.556;
    letter-spacing: 0.025em;
    margin: 0 0 20px;
    max-width: 480px;
}

.hp-home-worth .hp-home-valuation {
    flex-shrink: 0;
    width: 56.8%;
}

.hp-home-worth .hp-omevaluation-form {
    background: #fff;
    border: 1px solid rgb(208, 208, 208);
    border-right: none;
}

.hp-home-worth .hp-omevaluation-form label {
    display: none;
}

.hp-home-worth .hp-omevaluation-form .hv-icon {
    background: url(images/locpin.png) no-repeat center center transparent;
    width: 19px;
    height: 26px;
    margin: 0 1% 0 3%;
    background-size: 100%;
}

.hp-home-worth .hp-omevaluation-form .hv-street {
    flex-shrink: 0;
    width: 33%;
    height: 60px;
    padding: 10px 0;
}

.hp-home-worth .hp-omevaluation-form .hv-street input {
    border-right: 1px solid #ebebeb;
}

.hp-home-worth .hp-omevaluation-form .hv-city-zip {
    flex-shrink: 0;
    width: 38%;
    height: 60px;
    padding: 10px 0 10px;
}

.hp-home-worth .hp-omevaluation-form .default-button {
    width: 128px;
    border-left: 1px solid rgb(208, 208, 208);
}

.hp-home-worth .hp-omevaluation-form .default-button span {
    padding: 0;
}

.hp-home-worth .hp-omevaluation-form .default-button span i {
    margin-left: 15px;
}

.hp-home-worth .hp-omevaluation-form input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    font-size: 13px;
    color: #6f6f6f;
    outline: none;
    padding: 0 10%;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta {
    /*    margin-top: 60px;*/
    justify-content: flex-end;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list {
    text-align: center;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list .cta-icon-holder {
    background: url(images/cta.png) no-repeat 0 0 transparent;
    border-radius: 50%;
    width: 106px;
    height: 106px;
    padding: 5px;
    background-size: 100%;
    display: inline-block;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list .cta-icon-holder .cta-icon {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
    width: 100%;
    height: 100%;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list .cta-icon-holder .cta-icon i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 55%;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list .cta-icon-holder.step-1 .cta-icon i {
    background-image: url(images/cta-1.png);
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list .cta-icon-holder.step-2 .cta-icon i {
    background-image: url(images/cta-2.png);
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list .cta-icon-holder.step-3 .cta-icon i {
    background-image: url(images/cta-3.png);
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list h4 {
    color: #3b5e86;
    font-weight: 700;
    font-size: 30px;
    margin-top: 5px;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-list p {
    font-weight: 600;
    color: #505050;
    font-size: 16px;
    margin-top: 5px;
}

.hp-home-worth .hp-home-valuation .hp-homevaluation-cta .cta-arrow {
    background: url(images/next-arrow.png) no-repeat 0 0 transparent;
    background-size: 100%;
    width: 28px;
    height: 53px;
    margin: 0 45px;
}

/* Home Valuation */
/* Track Record */
.hp-track-record {
    background: url(images/track-record-bg.jpg) no-repeat 0 0 #fff;
    background-size: cover !important;
    padding: 109px 6.06%;
}

/* .hp-track-record::after {
    display: block;
    width: 50.7%;
    height: 109px;
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    background: url(images/accent-bg.jpg) no-repeat 0 0 transparent;
    background-size: cover;
} */
.track-record-container {
    max-width: 1411px;
    z-index: 10;
}

.track-record-form .trf-wrap .default-title h2 span {
    padding-left: 80px;
}

.track-record-container .default-title h2 span {
    margin-bottom: 10px;
    color: #41c4e6;
}

.track-record-container .default-title h2 span::before {
    background: #41c4e6;
}

.track-record-container .default-title h2 em {
    color: #41c4e6;
}

.hp-track-record .track-record-text {
    width: 44.08%;
}

.hp-track-record .track-record-text .track-records {
    padding-top: 48px;
}

.hp-track-record .track-record-text .trecords {
    text-align: center;
    padding: 20px 40px;
}

.hp-track-record .track-record-text .trecords h4 {
    color: var(--primary);
    font-family: var(--font-family-title);
    font-size: 50px;
}

.hp-track-record .track-record-text .trecords h4 em {
    font-style: normal;
}

.hp-track-record .track-record-text .trecords p {
    color: #000;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 8px;
}

.hp-track-record .track-record-text .trecords span {
    color: #000;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 8px;
    display: block;
}

.hp-track-record .track-record-form {
    width: 50.88%;
    margin-left: 4.96%;
}

.track-record-form::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(17, 44, 75, 1) 0%, rgba(21, 95, 108, 1) 100%);
    opacity: 0.95;
    z-index: 5;
}

.track-record-form .trf-wrap {
    width: 100%;
    z-index: 10;
    padding: 70px 55px 62px;
}

.track-record-form .trf-wrap>span {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 40px 0;
    display: block;
    max-width: 500px;
    margin: 0 auto;
}

/* Track Record */
/* Footer */
.footer {
    z-index: 10;
    /* background: url(images/footer-bg.jpg) no-repeat top left #fff; */
    /* background-size: cover!important; */
    /* padding: 0 4.37%; */
    /* background-attachment: fixed!important; */
    position: relative;
}

.footer .footer-container {
    display: block;
    position: relative;
    padding: 85px 0 0;
}

.footer-top {
    width: 100%;
    margin-bottom: 0;
    padding-right: 30px;
}

.footer-left {
    width: 56.61%;
}

.footer-logo {
    max-width: 612px;
    margin-bottom: 60px;
}

.footer-brokerage-logo {
    max-width: 260px;
    width: 100%;
}

.footer-brokerage-logo img {
    max-width: 100%;
    height: auto;
}

.footer-contact ul li {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    padding: 10px 0;
}

.footer-contact ul li a {
    color: #fff;
    transition: var(--transition);
}

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

.footer-contact ul li i {
    display: block;
    background-image: url(images/sprite.png);
    background-repeat: no-repeat;
    margin-right: 18px;
}

.footer-contact ul li i.ft-loc {
    width: 12px;
    height: 15px;
    background-position: -16px -30px;
}

.footer-contact ul li i.ft-phone {
    width: 10px;
    height: 15px;
    background-position: -34px -30px;
}

.footer-right {
    width: 33.573%;
}

.footer-right .footer-menu {
    margin-bottom: 54px;
}

.footer-menu .menu-nav-container {
    display: flex;
    justify-content: space-between;
}

.footer-menu .menu-nav li a {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
    transition: var(--transition);
}

.footer-menu .menu-nav li a:hover {
    color: var(--primary);
}

.footer-smi a {
    font-size: 0;
    color: #fff;
    transition: var(--transition);
}

.footer-smi a:not(:last-child) {
    margin-right: 30px;
}

.footer-smi a:hover {
    color: var(--primary);
}

.footer-smi a:first-child {
    margin-left: 0;
}

.footer-smi a i {
    font-size: 23px;
}

.footer-smi a i.ai-font-envelope-filled-a {
    font-size: 15px;
}

.footer-disclaimer {
    position: relative;
    display: block;
    padding-right: 55px;
    padding-top: 60px;
}

.footer-disclaimer ul {
    padding-bottom: 30px;
}

.footer-disclaimer ul li {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    border-left: 1px solid rgba(255, 255, 255, .60);
    padding: 0 20px;
}

.footer-disclaimer ul li:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-disclaimer ul li:last-child {
    padding-right: 0;
}

.footer-disclaimer ul li a {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-disclaimer ul li a.aios-ai-phone span {
    display: none;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b2c1d1;
    line-height: 22px;
    letter-spacing: 0.06em;
}

.footer-disclaimer p a {
    color: inherit;
    font-weight: 600;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-disclaimer p a:hover {
    color: #fff;
}

.footer-ld-courtesy-main {
    margin-top: 35px;
}

.footer-ldc-logo {
    margin-bottom: 20px;
    font-size: 0;
}

.footer-ldc-logo img.filter-white {
    filter: brightness(0) invert(1);
    max-width: 100%;
    height: auto;
}

.footer-ld-courtesy-txt p {
    margin-bottom: 18px;
}

.footer-ld-courtesy-txt-powered {
    margin-top: 15px;
}

.footer-copyright {
    padding-top: 55px;
    display: block;
    position: relative;
}

.footer-copyright p {
    color: #b2c1d1;
    letter-spacing: 0.1em;
    font-size: 13px;
    line-height: 1.5;
}

.footer-copyright p a {
    color: inherit;
    transition: var(--transition);
}

.footer-copyright p a:last-of-type {
    color: #41c4e6;
}

.footer-copyright p a:hover {
    color: var(--primary);
}

.footer-copyright p span {
    color: #41c4e6;
    font-weight: 700;
}

.footer-copyright-logo {
    padding-top: 30px;
}

.footer-copyright-logo>div:not(:last-child) {
    margin-right: 35px;
}

.footer-copyright-logo i {
    color: #b2c1d1;
    font-size: 28px;
    padding: 0 5px;
    font-style: normal;
}

.footer-copyright-logo i.ai-font-mls {
    font-size: 33px;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(to right, #18a8c6 0%, #218ca2 18%, #12768b 36%, #1b6c85 50%, #22507c 100%);
}

.footer-bg>div {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.footer-bg:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 79%;
    z-index: 1;
    opacity: .40;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.footer-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: .15;
}

.footer-container .custom-container {
    padding: 0 115px;
    width: 100%;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.footer-col {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.footer-sub-row {
    display: flex;
    position: relative;
}

.footer-sub-col {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    position: relative;
}

.footer-sub-col:first-child {
    width: 56.349%;
}

.footer-sub-col:last-child {
    width: 43.651%;
}

.footer-form-container {
    display: block;
    position: relative;
    padding: 75px 30px 56px;
    background-color: #fff;
}

.footer-col h2 {
    font-family: var(--font-family-title);
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 20px;
}

.footer-form-container .default-title h2 span {
    font-size: 16px;
    font-weight: 600;
}

.footer-form-container .default-title h2 span:before {
    margin-right: 15px;
}

.footer-form-container .default-title h2 {
    font-size: 55px;
    display: inline-block;
}

.footer-form-container .default-title {
    text-align: center;
}

.footer-menu ul.menu-nav:not(:last-child) {
    margin-right: 20px;
}

.footer-main {
    display: block;
    position: relative;
    padding-bottom: 55px;
    margin-left: 38px;
}

.footer-form-tagline, .footer-form-widget, .footer-form-widget form, .footer-form, .footer-form-field, .footer-form-field>label, .footer-form-caption {
    display: block;
    position: relative;
}

.footer-form-field {
    margin-bottom: 25px;
}

.footer-form-field>label {
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.200em;
    color: #505050;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-form-field input:not([type=submit]), .footer-form-field textarea {
    width: 100%;
    height: 30px;
    border: none;
    border-bottom: 1px solid #a6a6a6;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.200em;
    color: #505050;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    box-shadow: none;
    padding: 0;
}

.footer-form-field>label em {
    color: var(--primary);
}

.footer-form-tagline {
    margin: 15px 0 35px;
    text-align: center;
}

.footer-form-field textarea {
    height: 80px;
    resize: none;
}

.footer-form-caption {
    margin: 30px 0 0;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.200em;
    color: #41c4e6;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.footer-menu .footernav {
    display: none;
}

.footer-form-field.footer-form {
    margin: 40px 0 0;
}

.footer-form-field.footer-form .default-button button span {
    padding: 0 9px;
}

.footer-form-field.footer-form .default-button {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 330px;
}

.footer-form-widget {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.footer-form-tagline span {
    font-size: 16px;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #666666;
    font-weight: 600;
}

.footer-form-tagline span a {
    color: #1c9dbf;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-style: italic;
}

.footer-form-tagline span a:hover {
    color: #000;
}

.footer-form-widget .wpcf7 form .wpcf7-response-output {
    padding: 2px;
    font-size: 12px;
    color: #000 !important;
    position: absolute;
    bottom: -38px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.back-to-top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 211px;
    max-width: 100%;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: #fff;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.200em;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 10px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.back-to-top a:hover {
    background: var(--primary);
    color: #fff;
}

.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 10px;
    width: auto;
    top: 20%;
    left: 20%;
    right: auto;
}

.wpcf7-form-control-wrap {
    display: block;
}

/* Footer */
/*******************************************************
 *
 * 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,.6); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

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

.ip-banner-breadcrumbs {
    position: absolute;
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.ip-banner-breadcrumbs-inner {
    position: relative;
    padding: 16px 50px;
    display: inline-block;
    min-width: 600px
}

.ip-banner-breadcrumbs-inner::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0.95;
}

.ip-banner-breadcrumbs p#breadcrumbs {
    position: relative;
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ip-banner-breadcrumbs p#breadcrumbs .breadcrumb_last {
    font-weight: 700;
}

.ip-banner-breadcrumbs p#breadcrumbs a {
    transition: var(--transition);
}

.ip-banner-breadcrumbs p#breadcrumbs a:hover {
    color: #ffffff;
    opacity: 0.7;
}

/* 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 .entry-title, #content .archive-title {
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
}

.site-logo {
    display: block;
    position: relative;
    width: 100%;
}

.site-logo h2 {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.044em;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.site-logo span {
    font-family: "Prata", serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.607em;
    text-transform: initial;
    margin-top: 8px;
    padding-top: 10px;
    color: #fff;
    display: block;
    text-align: center;
    position: relative;
    white-space: nowrap;
    margin-left: 4px;
}

.site-logo span em {
    text-transform: uppercase;
    font-style: normal;
}

.site-logo span:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: calc(100% - 3px);
    height: 1px;
    background-color: #fff;
    white-space: nowrap;
}

.header.fh-show .site-logo h2 {
    font-size: 21px;
}

.header.fh-show .site-logo span {
    font-size: 11px;
    letter-spacing: 0.680em;
}

.footer-container .site-logo h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 37px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.044em;
    margin: 0;
    white-space: normal;
    text-align: left;
}

.footer-container .site-logo span {
    font-size: 20px;
    white-space: normal;
    letter-spacing: 0.64em;
    margin-left: 3px;
    text-align: left;
}

.footer-container .site-logo span:before {
    width: calc(100% - 18px);
}

.agent-image-logo {
    display: block;
}

.agent-image-logo span {
    font-size: 29px;
    color: #b2c1d1;
    display: block;
}

.agent-image-logo em {
    font-style: normal;
    color: #b2c1d1;
    font-size: 7px;
    text-align: right;
    display: block;
    margin-bottom: -5px;
    text-transform: uppercase;
}

.footer .footer-container .footer-left .footer-brokerage-logo img {
    height: auto;
}

/*ihf fixes*/
body>img, body>iframe[name="__bkframe"] {
    display: none;
}

#ihf-main-container .mc-total-payment-subline {
    color: #666;
}

#ihf-main-container .nav-tabs {
    margin-left: 0;
}

#ihf-main-container .chosen-drop ul.chosen-results {
    padding-left: 0;
    margin: 0;
}

.ihf-grid-result-address {
    display: block;
}

#ihf-main-container #ihf-refine-map-search-form .checkbox, #ihf-main-container #ihf-refine-map-search-form .col-xs-8 {
    padding: 0;
}

#ihf-agent-sellers-rep>div[style] {
    max-width: 100%;
}

#ihf-map-canvas .leaflet-top.leaflet-right {
    z-index: 999;
}

#ihf-main-container .glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

/*custom ihf search*/
#ihf-main-container #ihf-main-search-form .form-control, #ihf-main-container #ihf-main-search-form .chosen-container-single .chosen-single, .ihf-main-container #ihf-main-search-form .chosen-container-single .chosen-single, #ihf-main-container #ihf-main-search-form .chosen-container-multi .chosen-choices, .ihf-main-container #ihf-main-search-form .chosen-container-multi .chosen-choices, #ihf-main-container .listingIdSearchForm .input-group .form-control, #ihf-main-container .searchAddressForm .form-control {
    width: 100%;
    height: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 0;
    color: #152f4d;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    border-bottom: 2px solid #152f4d;
    border-radius: 0 !important;
    box-shadow: none;
}

#ihf-main-container #ihf-main-search-form .form-control[type="text"], #ihf-main-container #ihf-main-search-form .chosen-container-multi .chosen-choices li.search-field input[type=text], .ihf-main-container #ihf-main-search-form .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    height: 50px;
}

#ihf-main-container #ihf-main-search-form .ihf-label-overlay-money {
    top: 50%;
    transform: translateY(-50%);
}

#ihf-main-container #ihf-main-search-form .field-label, #ihf-main-container .searchAddressForm label {
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-family-title);
}

#ihf-main-container #ihf-main-search-form .input-group-addon {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid #152f4d;
}

#ihf-main-container #ihf-main-search-form .chosen-container-single .chosen-single, .ihf-main-container #ihf-main-search-form .chosen-container-single .chosen-single {
    height: 50px;
    line-height: 44px;
}

#ihf-main-container #ihf-main-search-form .chosen-container-single .chosen-single div b, .ihf-main-container #ihf-main-search-form .chosen-container-single .chosen-single div b {
    background-position: 0 19px;
}

#ihf-main-container #ihf-main-search-form .checkbox-inline, #ihf-main-container #ihf-main-search-form .radio-inline, #ihf-main-container #ihf-main-search-form .checkbox label {
    color: #152f4d;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 400;
    text-transform: initial;
    font-family: var(--font-family-default);
}

#ihf-main-container #ihf-main-search-form #ihf-status-fields>div {
    margin-top: 8px;
}

#ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn, #ihf-main-container .searchAddressForm .btn-primary {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    height: 60px;
    text-transform: uppercase;
}

#ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit:before, #ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit:after, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn:before, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn:after, #ihf-main-container .searchAddressForm .btn-primary:before, #ihf-main-container .searchAddressForm .btn-primary:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit:after, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn:after, #ihf-main-container .searchAddressForm .btn-primary:after {
    border: 1px solid rgb(135, 135, 135);
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: -moz-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    background-image: -webkit-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    background-image: -ms-linear-gradient(129deg, rgb(58, 58, 58) 0%, rgb(95, 95, 95) 45%, rgb(58, 58, 58) 100%);
    box-shadow: 0px 15px 18px 0px rgba(0, 0, 0, 0.43);
    transition: var(--transition);
    opacity: 0;
}

#ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit:before, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn:before, #ihf-main-container .searchAddressForm .btn-primary:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    background-image: -moz-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(255, 135, 64) 0%, rgb(255, 75, 64) 100%);
    background-color: transparent;
}

#ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit:hover:after, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn:hover:after, #ihf-main-container .searchAddressForm .btn-primary:hover:after {
    opacity: 1;
}

#ihf-main-container #ihf-main-search-form .btn-primary.btn-form-submit span, #ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn span, #ihf-main-container .searchAddressForm .btn-primary span {
    position: relative;
    z-index: 1;
}

/*Listing ID */
#ihf-main-container .listingIdSearchForm .input-group {
    display: flex;
    flex-flow: row wrap;
}

#ihf-main-container .listingIdSearchForm .input-group .form-control {
    width: calc(100% - 50px);
}

#ihf-main-container .listingIdSearchForm .input-group .input-group-btn {
    width: 50px;
}

#ihf-main-container .listingIdSearchForm .input-group .input-group-btn .btn {
    height: 50px;
}

/*Address Search*/
#ihf-main-container .searchAddressForm .btn-primary {
    height: 50px;
}

.hp-quick-search ul {
    max-height: 200px !important;
}

/*custom ihf search end*/
body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

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

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

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

.aidefcf-wrapper div.wpcf7-response-output {
    color: var(--font-color-default);
}

.assoc-pic {
    display: block;
    position: relative;
    /*margin-bottom: 50px;*/
    margin-top: 50px;
}

.asoc-bg {
    position: relative;
    /*display: inline-block;*/
    display: block;
}

.asoc-bg img {
    z-index: 2;
    position: relative;
    max-width: 100%;
    height: auto;
    display: block;
}

.asoc-bg:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/homewort-titlebg.jpg') no-repeat center/cover;
    /*left: 30px;
    bottom: -30px;*/
    right: 40px;
    top: -40px;
    z-index: 1;
    display: block;
}

.hp-credential-affiliations .ca-wrapper .ca-content p.intro {
    font-size: 20px;
    font-family: var(--font-family-title);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

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

.img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
}

.fl-lists .hp-fp-arrow {
    opacity: 1;
    background-color: transparent;
    background-image: url(images/sprite.png);
    width: 35px;
    height: 53px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 9;
    position: absolute;
    cursor: pointer;
    bottom: 25%;
}

.fl-lists .hp-fp-next {
    background-position: -80px -30px;
    right: 0;
}

.fl-lists .hp-fp-prev {
    background-position: -45px -30px;
    left: 0;
}

.fl-title-wrap {
    position: relative;
}

.fl-title-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 415px;
}

.fl-title-wrap .fl-title-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.slick-slider .slick-list {
    padding: 0 4.375%;
}

/* aoe update */
.hp-area-of-expertise {
    /*    display: none*/
}

.hp-featured-areas {
    display: block !important;
    background: #fff;
}

.hp-credential-affiliations .ca-wrapper {
    padding-top: 90px;
}

/* hp: featured areas */
.hp-featured-areas {
    position: relative;
}

.hp-fa-map {
    width: 1600px;
}

.map-holder {
    position: relative;
}

.map-main {
    position: relative;
    z-index: 10;
}

.map-areas {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
}

.map-area {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    white-space: nowrap;
    transition: all .5s ease-in;
}

.map-area:hover {
    text-shadow: 0 0 15px #a4ffff, 0 0 15px #a4ffff, 0 0 15px #a4ffff, 0 0 15px #a4ffff, 0 0 15px #a4ffff;
    transform: scale(1.025);
}

.map-area a {
    text-decoration: none;
    color: inherit;
}

#map-area-oceanside {
    top: 49px;
    left: 1118px;
    font-size: 29.66px;
    /* transform: rotate(25deg); */
    rotate: 25deg;
}

#map-area-carlsbad {
    top: 98px;
    left: 1111px;
    font-size: 35.44px;
    /* transform: rotate(21deg); */
    rotate: 21deg;
}

#map-area-leucadia {
    top: 166px;
    left: 1174px;
    font-size: 26.21px;
    /* transform: rotate(15deg); */
    rotate: 15deg;
    letter-spacing: 4px;
}

#map-area-encinitas {
    top: 202px;
    left: 1122px;
    font-size: 38.51px;
    /* transform: rotate(11deg); */
    rotate: 11deg;
    letter-spacing: 4px;
}

#map-area-cardiff-by-the-sea {
    top: 265px;
    left: 1127px;
    font-size: 19.46px;
    /* transform: rotate(6deg); */
    rotate: 6deg;
    letter-spacing: 2px;
}

#map-area-solana-beach {
    top: 310px;
    left: 1137px;
    font-size: 24.81px;
    letter-spacing: 3px;
    /* transform: rotate(1deg); */
    rotate: 1deg;
}

#map-area-del-mar {
    top: 351px;
    left: 1143px;
    font-size: 47.13px;
    /* transform: rotate(355deg); */
    rotate: 355deg;
    letter-spacing: 2px;
}

#map-area-torrey-pines {
    top: 429px;
    left: 1082px;
    font-size: 34.36px;
    letter-spacing: 4.5px;
    /* transform: rotate(351deg); */
    rotate: 351deg;
}

#map-area-la-jolla {
    top: 477px;
    left: 1073px;
    font-size: 60px;
    /* transform: rotate(345deg); */
    rotate: 345deg;
    letter-spacing: 5px;
}

#map-area-pacific-beach {
    top: 553px;
    left: 1174px;
    /* transform: rotate(340deg); */
    rotate: 340deg;
    letter-spacing: 3px;
}

#map-area-mission-beach {
    top: 594px;
    left: 1195px;
    /* transform: rotate(333deg); */
    rotate: 333deg;
    letter-spacing: 2px;
}

#map-area-ocean-beach {
    top: 635px;
    left: 1211px;
    /* transform: rotate(330deg); */
    rotate: 330deg;
    letter-spacing: 4px;
}

#map-area-sunset-cliffs {
    font-size: 27px;
    top: 686px;
    left: 1207px;
    /* transform: rotate(325deg); */
    rotate: 325deg;
    letter-spacing: 2px;
}

#map-area-point-loma {
    font-size: 41.67px;
    top: 740px;
    left: 1173px;
    /* transform: rotate(319deg); */
    rotate: 319deg;
    letter-spacing: 6px;
}

#map-area-coronado {
    font-size: 68px;
    top: 812px;
    left: 1111px;
    /* transform: rotate(315deg); */
    rotate: 315deg;
    letter-spacing: 4px;
}

#map-area-imperial-beach {
    font-size: 40px;
    top: 865px;
    left: 1236px;
    /* transform: rotate(311deg); */
    rotate: 311deg;
}

.map-area-label {
    color: #1c9dbf;
    font-size: 32.72px;
    position: absolute;
    right: 34px;
    top: 99px;
    font-family: var(--font-family-title);
    text-align: center;
}

.map-area-small {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    right: 28px;
    top: 366px;
    transition: all .3s ease-in;
}

.map-area-small:hover {
    text-shadow: 0 0 5px #a4ffff;
    transform: scale(1.025);
    color: #000;
}

.map-area-small a {
    transition: all .5s;
    color: inherit
}

.map-area-small a:hover {
    color: #000;
}

#map-area-rancho-santa-fe {
    top: 237px;
    right: 68px;
}

#map-area-university-park {
    top: 237px;
    right: 68px;
}

#map-area-university-park {
    top: 237px;
    right: 68px;
}

#map-area-clairemont {
    top: 428px;
    right: 13px;
}

#map-area-bay-park {
    top: 468px;
    right: 79px;
}

.map-form {
    position: absolute;
    width: 850px;
    height: 740px;
    background: #fff;
    top: 160px;
    left: 70px;
    z-index: 30;
    padding: 90px;
}

.map-form form {
    position: relative;
}

.form-step {
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: all .5s;
    top: 0;
    pointer-events: none;
}

.form-step.is-active {
    opacity: 1;
    pointer-events: all;
}

.step-label {
    font-size: 30px;
    margin: 70px 0 0;
    font-family: var(--font-family-title);
    color: #333;
    line-height: 1.2;
}

.step-form-controls {
    margin-top: 80px;
}

.step-field .wpcf7-form-control {
    border: 0;
    border-bottom: 1px #979797 solid;
    width: 100%;
    padding: 30px 0;
    color: #505050;
    font-size: 18px;
    background: transparent;
    outline: none;
    display: block;
}

.step-field .wpcf7-form-control::placeholder {
    text-transform: uppercase;
}

.step-form-controls {
    display: flex;
    justify-content: space-between;
}

#form-step-1 .step-form-controls {
    justify-content: flex-end
}

.step-form-control, .step-form-control-submit {
    background: transparent;
    border: 0;
    outline: none;
    color: #333;
    font-weight: 600;
    font-size: 12.19px;
    display: inline-flex;
    align-items: center;
}

:is(.step-form-control, .step-form-control-submit) i {
    font-size: 40px;
    margin: 0 15px;
    background: linear-gradient(180deg, rgba(255,119,83,1) 0%, rgba(255,120,130,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#form-step-6 {
    text-align: center;
}

#form-step-6 .default-button {
    margin-top: 40px;
}

.map-multi-step-form-thanks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 70px;
}

.thank-you-icon {
    width: 212px;
    height: 212px;
    background: url(images/map/icon-circle.png) transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 40px;
}

.thank-you-icon::before {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 88%;
    height: 88%;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px rgb(0 0 0 / .20);
}

.thank-you-btn {
    width: 100%;
}

.map-form .thank-you-msg {
    text-align: left;
    padding: 20px 0 0 40px;
}

.map-form .thank-you-msg h3 {
    font-size: 45px;
    font-family: var(--font-family-title);
    color: #1c9dbf;
    margin-bottom: 10px;
}

.map-form .thank-you-msg p {
    font-size: 32px;
    font-family: var(--font-family-title);
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.map-form .wpcf7-response-output {
    color: #000 !important;
    position: absolute;
    top: -20px;
}

.map-form .wpcf7-not-valid-tip {
    right: 0;
    left: auto;
    top: 50%
}

.map-form .sent .wpcf7-response-output {
    display: none;
}

.step-options {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step-option {
    text-align: center;
}

.step-option-icon {
    width: 118px;
    height: 118px;
    background: url(images/map/icon-circle-small.png) transparent no-repeat;
    ; background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
}

.step-option-icon::before {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 85%;
    height: 85%;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(0 0 0 / .20);
}

.step-option-icon img {
    max-width: 50px;
    height: auto;
}

.step-option-months {
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: #3b5e86;
}

:is(.step-option:hover, .step-option .selected) .step-option-icon {
    background: #5e5e5e;
    box-shadow: 8px 8px 20px rgb(0 0 0 / .5);
}

:is(.step-option:hover, .step-option .selected) .step-option-icon img {
    filter: brightness(0) invert(1);
}

:is(.step-option:hover, .step-option .selected) .step-option-icon::before {
    opacity: 0;
}

:is(.step-option:hover, .step-option .selected) .step-option-months {
    color: #fff;
}

.step-option-label {
    font-size: 28px;
    font-weight: 700;
    color: #3b5e86;
    margin-top: 15px;
    text-transform: uppercase;
}

.step-option-label small {
    display: block;
    font-size: 17.74px;
    color: #505050;
    font-weight: 600;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-step-wrap .aios-home-valuation-form p {
    color: #ffffff;
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--primary);
}

#agents-popup-form .wpcf7 form .wpcf7-response-output, .error-page-content-wrapper .error-page-cf-wrap .wpcf7 form .wpcf7-response-output {
    color: #000000;
}

/*Side Menu*/
html.burger-menu-active {
    overflow: hidden !important;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1035;
    width: 100%;
    height: 100%;
    font-size: 0;
    pointer-events: none;
}

.side-menu.active .side-menu-container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 800px;
    height: 100%;
    z-index: 1056;
    background-color: #fff;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1054;
    width: 100%;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
}

.side-menu-overlay.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.side-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.side-menu-inner {
    width: 100%;
    display: block;
    position: relative;
    overflow-y: auto;
    height: 100%;
    padding: 50px 30px 30px 85px;
    z-index: 2;
    -webkit-transition: 0.9s all ease;
    -webkit-transition: 0.9s all ease-out;
    transition: 0.9s all ease-out;
}

.side-menu.active .side-menu-inner {
}

.side-menu-logo {
    display: block;
    position: relative;
    margin-bottom: 80px;
}

.side-menu-logo a {
    display: inline-block;
    position: relative;
}

.side-menu-logo a img {
    max-width: 530px;
    height: auto;
    width: 100%;
}

.sidemenu-nav>li>a {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.080em;
    color: #1c9dbf;
    text-transform: uppercase;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
    display: inline-block;
    font-family: var(--font-family-title);
}

.sidemenu-nav>li>a:hover {
    color: var(--secondary-color);
}

.sidemenu-nav .sub-menu {
    display: block;
    margin-top: 35px;
}

.sidemenu-nav .sub-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.sidemenu-nav .sub-menu li a {
    color: #939393;
    font-size: 14px;
    letter-spacing: 0.080em;
    line-height: 1;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.sidemenu-nav .sub-menu li a:hover {
    color: var(--secondary-color);
}

.side-menu-nav-holder {
    position: relative;
    display: block;
}

ul.sidemenu-nav {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

ul.sidemenu-nav:first-of-type>li {
    display: inline-block;
    vertical-align: top;
}

ul.sidemenu-nav:first-of-type>li:not(:last-child) {
    margin-right: 50px;
}

ul.sidemenu-nav:not(:last-child) {
    margin-right: 66px;
}

.sidemenu-nav>li {
    position: relative;
    display: block;
    min-width: 160px;
}

.sidemenu-nav>li:not(:last-child) {
    margin-bottom: 40px;
}

.sidemenu-nav>li.sub-menu-contacts ul.sub-menu li a {
    text-transform: none;
}

.side-menu-nav {
    text-align: right;
    width: 100%;
    margin-left: auto;
    height: 100%;
}

.side-menu-nav {
    display: block;
    position: relative;
}

.side-menu-close {
    position: absolute;
    top: 62px;
    right: 70px;
    font-size: 24px;
    border: none;
    line-height: 1;
    padding: 0;
    background-color: transparent;
    z-index: 10;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    color: var(--primary);
}

.side-menu-close:hover {
    color: var(--secondary);
}

.side-menu-contact-holder {
    position: relative;
    display: block;
}

.side-menu-contacts {
    display: block;
    position: relative;
    margin: 40px 0 35px;
}

.side-menu-contacts h2 {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.080em;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    display: none;
}

.side-menu-contacts span {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
}

.side-menu-contacts span em.ai-font-envelope {
    font-size: 12px;
}

.side-menu-contacts em.ai-font-location-c {
    font-size: 20px;
}

.side-menu-contacts span a {
    color: inherit;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.side-menu-contacts span a:hover {
    color: var(--primary);
}

.side-menu-contacts span:not(:last-child) {
    margin-bottom: 14px;
}

.side-menu-contacts span em[class^=ai-font] {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: var(--primary);
}

.side-menu-logo .site-logo h2, .side-menu-logo .site-logo span {
    color: var(--primary);
}

.side-menu-logo .site-logo span:before {
    background-color: var(--primary);
}

.amh-navigation, .aiosMobileHeaderOverlay {
    display: none!important;
}

.ip-container #main-wrapper {
    z-index: auto!important;
}

.grecaptcha-badge {
    z-index: 100000!important;
    bottom: 100px !important;
}

body.page-id-365 #inner-page-wrapper {
    margin-bottom: 0!important;
}

body .aios-home-valuation-step-wrap .aios-home-valuation-form form {
    position: relative;
}

body .aios-home-valuation-step-wrap .aios-home-valuation-form .wpcf7 form .wpcf7-response-output {
    color: #fff!important;
    padding: 0.2em 1em;
    background-color: transparent;
    position: absolute;
    bottom: -46px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

body .aios-home-valuation-step-wrap .aios-home-valuation-form span.wpcf7-not-valid-tip {
    border: 1px solid #dc3232;
    top: 20%;
    left: 20%;
    right: auto;
    width: auto;
    font-size: 11px;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
