:root {
    /** Font default */
    --font-family-default: "Lato", sans-serif;
    --font-family-title: "Playfair Display", serif;
    --roboto: "Roboto", sans-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-color: #fff;
    --background-color-darker: #dbdbdb;
    --primary-text-color: #000;
    --primary-text-accent: #898989;
    --primary: #000000;
    --primary-accent: #767676;
    --accent-color: #000000;
    --secondary: #ffffff;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    /** Pattern **/
    --mask-size: 100%;
    --mask-repeat: repeat;

    --aios-agents-primary-color: var(--primary);
    --aios-agents-hover-color: var(--primary);
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: var(--background-color);
    color: var(--primary-text-color);
    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; */
}

body a {
    text-decoration: none;
    color: inherit;
}

body a:hover {
    text-decoration: none;
}

#main-wrapper {
    overflow: hidden;
}

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

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

.slick-slide * {
    outline: none !important;
}

.container-padding {
    padding-left: 100px;
    padding-right: 100px;
}

.max-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.default-padding {
    padding: 0 15px;
}

.default_title_container {
    text-align: left;
}

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

/* Sub Menu */
#nav li {
    position: relative;
    display: inline-block;
}

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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    display: block;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
    left: 50%;
    margin-left: -90px;
    padding-top: 30px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

#nav .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px;
    background: var(--primary);
}

#nav .sub-menu li {
    position: relative;
    display: block;
    padding: 0;
    text-align: center;
}

#nav .sub-menu li:hover a {
    background: var(--secondary);
    color: var(--primary);
    opacity: 1;
    text-decoration: none;
}

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

/* Title */
.default_title {
    font-family: var(--font-family-title);
    display: inline-block;
    color: var(--primary);
    font-size: 65px;
    text-transform: uppercase;
}

.default_title i {
    display: block;
    color: var(--primary-text-accent);
    font-style: normal;
    font-size: 16px;
    font-family: var(--font-family-default);
    padding-bottom: 15px;
}

.default_title span {
    display: block;
    font-family: var(--font-family-default);
    color: var(--primary-accent);
    font-size: 25px;
    text-align: right;
    position: relative;
    padding-top: 3px;
    letter-spacing: 0.05em;
}

.default_title span em {
    display: inline-block;
    background: var(--background-color);
    position: relative;
    z-index: 2;
    padding-left: 30px;
    font-style: normal !important;
    font-weight: 300;
}

.default_title span::after {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-accent);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
    content: "";
}

.default_title.expanded span {
    margin: 0 -15px;
}

/* Pagination */
.default_pagination {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.default_pagination .aios-arrows {
    font-size: 34px;
    color: var(--primary-accent);
    margin: 0 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.6s ease;
}

.default_pagination .aios-arrows:hover {
    color: var(--primary);
}

.default_button {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    background: transparent;
    display: inline-block;
    border: 2px solid var(--primary);
    padding: 0 40px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-family-default);
    transition: all 0.6s ease;
    font-size: 13px;
    color: var(--primary);
}

.default_button:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 26px 15px 0;
    transition: all 0.6s ease;
}

.header.show-fh {
    background: var(--primary);
    padding: 26px 15px;
}

.header.show-fh .logo-wrap {
    width: 29%;
}

.header.show-fh .logo-wrap a .logo h2 {
    font-size: 29px;
}

.header.show-fh .logo-wrap a .logo span {
    font-size: 9px;
}

.header.show-fh .logo-wrap a .logo-image i {
    font-size: 17px;
}

.header.show-fh .navigation {
    width: 65%;
    margin-left: 0;
}

.header.show-fh .navigation ul li {
    padding: 0px 15px;
}

.header.show-fh .navigation ul li a {
    font-size: 14px;
}

.header.show-fh .hd-cta {
    color: var(--secondary);
    display: flex;
    width: 8%;
}

.header.show-fh .hd-cta ul {
    display: flex;
    align-items: center;
}

.header.show-fh .hd-cta ul li:first-child {
    padding: 0 12px;
    font-size: 13px;
}

.header.show-fh .hd-cta ul li .ai-font-envelope-f {
    font-size: 11px;
    color: var(--secondary);
}

.header .hd-wrap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo-wrap {
    width: 30.759%;
    flex-shrink: 0;
}

.header .logo-wrap a {
    display: flex;
    width: 100%;
    color: #fff;
    pointer-events: none;
}

.header .logo-wrap a .logo {
    padding-right: 15px;
    pointer-events: auto;
    /* width: 50%; */
}

.header .logo-wrap a .logo img {
    max-width: 200px;
    width: 100%;
}

.header.show-fh .logo-wrap a .logo img {
    max-width: 135px;
}

.header .logo-wrap a .logo h2 {
    font-size: 42px;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.6s ease;
}

.header .logo-wrap a .logo span {
    text-transform: uppercase;
    font-size: 14.6px;
    line-height: 1.2;
    letter-spacing: 0.33em;
    transition: all 0.6s ease;
    display: block;
    white-space: nowrap;
}

.header .logo-wrap a .logo-image {
    padding-left: 17px;
    border-left: 1px solid #ffffff;
    display: flex;
    align-items: center;
}

.header .logo-wrap a .logo-image i {
    font-size: 30px;
    transition: all 0.6s ease;
}

.header .navigation {
    width: 67%;
    /* margin-left: 6%; */
    transition: all 0.6s ease;
}

.header .navigation ul {
    display: flex;
    align-items: center;
    float: right;
}

.header .navigation ul li {
    position: relative;
    padding: 0 16px;
    transition: all 0.6s ease;
}

.header .navigation ul li a {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.6s ease;
    position: relative;
    z-index: 5;
}

.header .navigation ul li:hover a {
    opacity: 0.6;
}

.header .navigation #nav>li:last-child a {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    border: 2px solid var(--secondary);
    width: 100%;
    padding: 15px 0;
    text-align: center;
    transition: all 0.6s ease;
    flex-shrink: 0;
    min-width: 117px;
    margin-left: 13px;
}

.header .navigation #nav>li:last-child a:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.header .hd-cta {
    display: none;
}

.header.show-fh .navigation #nav>li:last-child a:hover,
.header.show-fh .navigation ul li:hover>a {
    background: transparent;
    opacity: 0.7;
    color: var(--secondary);
}

/* CTA */
.hp-cta-wrap {
    padding-top: 90px;
    padding-bottom: 90px;
    overflow: hidden;
}

.hp-cta {
    display: flex;
    margin: 0 -27.5px;
}

.hp-cta div {
    width: 33.3333333333%;
    padding: 0 27.5px;
}

.hp-cta div a {
    border: 1px solid var(--primary);
    width: 100%;
    padding: 0 40px;
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    height: 130px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.6s ease;
    position: relative;
}

.hp-cta div a:after {
    display: block;
    width: 2px;
    height: 97px;
    position: absolute;
    right: 10%;
    background: #d1d3d4;
    content: "";
    top: 50%;
}

.hp-cta div a:hover {
    background: var(--primary);
    background-size: cover;
    color: var(--secondary);
    border-color: var(--primary);
}

.hp-cta div a:hover span {
    color: var(--secondary);
}

.hp-cta div a span {
    font-family: var(--font-family-title);
    display: block;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-size: 23px;
    padding-top: 6px;
    transition: all 0.6s ease;
}

/* Contact Form */
.ft-contact-form {
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 191px 0;
}

.ft-contact-form:after {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
}

.ft-contact-form .container {
    position: relative;
    z-index: 5;
}

.ft-contact-form .ft-form-title h2 {
    font-family: var(--font-family-title);
    color: var(--secondary);
    font-size: 57px;
    text-transform: uppercase;
    padding-top: 20px;
}

.ft-contact-form .ft-form-title p {
    color: var(--secondary);
    font-size: 19px;
    padding-top: 14px;
    text-transform: uppercase;
    font-weight: 300;
}

.ft-contact-form .ft-form form {
    position: relative;
}

.ft-contact-form .ft-form .fieldWrap {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    position: relative;
    margin: 0 -15px;
}

.ft-contact-form .ft-form .field-input {
    width: 100%;
    padding: 10px 15px;
}

.ft-contact-form .ft-form .field-input span {
    display: block;
    position: relative;
}

.ft-contact-form .ft-form .field-input.field-sm {
    width: 50%;
}

.ft-contact-form .ft-form .field-input label {
    display: none;
}

.ft-contact-form .ft-form .field-input textarea {
    height: 61px;
    margin-top: 15px;
    resize: none;
}

.ft-contact-form .ft-form .form-btn {
    text-align: right;
    padding: 0 15px;
    width: 100%;
    margin-top: 21px;
}

.ft-contact-form .ft-form .form-btn span {
    display: block;
}

.ft-contact-form .ft-form .form-btn input[type=submit] {
    display: inline-block;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    height: 48px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-family-default);
    transition: all 0.6s ease;
    background: transparent;
    width: 100%;
    max-width: 177px;
    font-size: 13px;
    letter-spacing: 0.14em;
}

.ft-contact-form .ft-form .form-btn input[type=submit]:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.ft-contact-form .wpcf7-not-valid-tip {
    width: auto;
    position: absolute !important;
    top: 0;
    left: unset;
    right: 0;
    font-size: 12px;
}

.ft-contact-form .wpcf7 form .wpcf7-response-output {
    width: calc(100% - 30px);
    background: #fff;
    margin: 0;
    text-align: center;
    position: absolute;
    bottom: -25px;
    left: calc(50% - 15px);
    transform: translateX(-50%);
}

.ft-contact-form .ft-form .field-input input[type=text],
.ft-contact-form .ft-form .field-input input[type=email],
.ft-contact-form .ft-form .field-input input[type=tel],
.ft-contact-form .ft-form .field-input textarea {
    width: 100%;
    background: transparent;
    border: none;
    height: 31px;
    color: var(--secondary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--secondary);
    outline: none;
}

/* Footer */
#main-footer {
    position: relative;
    font-size: 0;
    overflow: hidden;
    z-index: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

#main-footer .ftr-top {
    position: relative;
    z-index: 5;
}

#main-footer .ft-logo {
    margin-bottom: 60px;
    padding: 0 15px;
}

#main-footer .ft-logo .logo-img {
    padding-bottom: 45px;
}

#main-footer .ft-logo .logo-img a {
    font-size: 56px;
    color: var(--primary);
}

#main-footer .ft-logo img {
    /* width: 100%;
  max-width: 250px; */
    display: block;
    position: relative;
    max-width: 100%;
    height: auto;
}

#main-footer .ft-logo .logo-text {
    display: flex;
    align-items: center;
}

#main-footer .ft-logo .logo-text a {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    margin-right: 30px;
}

#main-footer .ft-logo h2 {
    font-size: 47px;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-weight: 400;
    color: var(--primary);
}

#main-footer .ft-logo span {
    text-transform: uppercase;
    font-size: 14.6px;
    line-height: 1.2;
    letter-spacing: 0.33em;
    font-weight: 500;
}

#main-footer h2 {
    color: var(--primary);
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: bold;
    font-family: var(--font-family-title);
}

#main-footer .ft-rows {
    display: flex;
}

#main-footer .ft-row:first-child+.ft-row {
    width: 27%;
    margin: 0 15%;
    position: relative;
    z-index: 6;
}

#main-footer .ft-row p {
    color: var(--primary-text-accent);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

#main-footer .ft-row ul li {
    color: var(--primary-text-accent);
    font-size: 15px;
    padding: 3px 0;
    line-height: 1.6;
    font-weight: 500;
}

#main-footer .ft-row ul li a {
    color: var(--primary-text-accent);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.6s ease;
}

#main-footer .ft-row ul li a:hover {
    color: var(--primary-text-color);
}

#main-footer .ft-row:nth-child(2) ul li:nth-child(3) {
    margin-top: 40px;
    display: block;
}

#main-footer .ftr-newsletter .newsletter-form {
    position: relative;
}

#main-footer .ftr-newsletter .newsletter-form input[type=email] {
    width: 100%;
    background: transparent;
    color: var(--primary-text-accent);
    border: 1px solid var(--primary-text-accent);
    font-size: 15px;
    height: 57px;
    padding: 0px 15px;
    outline: none;
    border-right: none;
}

#main-footer .ftr-newsletter .newsletter-form span {
    position: relative;
    display: block;
    width: calc(100% - 56px);
}

#main-footer .ftr-newsletter .newsletter-form span.wpcf7-spinner {
    width: 24px;
    height: 24px;
}

#main-footer .ftr-newsletter .newsletter-form span.ajax-loader {
    width: 24px;
}

#main-footer .ftr-newsletter .newsletter-form .ftr-bttn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    /* background: var(--primary-text-color); */
    width: 56px;
}

#main-footer .ftr-newsletter .newsletter-form .ftr-bttn input {
    width: 100%;
    height: 100%;
    background: var(--primary);
    font-size: 0;
    border: none;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

#main-footer .ftr-newsletter .newsletter-form .ftr-bttn input:hover {
    opacity: 0.7;
}

#main-footer .ftr-newsletter .newsletter-form .ftr-bttn i {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary);
    pointer-events: none;
}

#main-footer .ftr-newsletter .newsletter-form .wpcf7-not-valid-tip {
    top: 0;
    width: auto;
    position: absolute;
    font-size: 12px;
    left: unset;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#main-footer .ftr-newsletter .smi {
    margin-top: 40px;
}

#main-footer .ftr-newsletter .smi>div {
    display: flex;
}

#main-footer .ftr-newsletter .smi a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    background: var(--primary);
    border-radius: 50%;
    text-align: center;
    font-size: 21px;
    color: var(--secondary);
    margin: 0 3px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

#main-footer .ftr-newsletter .smi a:first-child {
    margin-left: 0;
}

#main-footer .ftr-newsletter .smi a:hover {
    opacity: 0.7;
}

#main-footer .wpcf7 form .wpcf7-response-output {
    font-size: 12px;
    color: #000;
    position: absolute;
    margin: 5px 0;
    width: 100%;
    text-align: center;
}

#main-footer .ft-copyright {
    margin-top: 70px;
    border-top: 1px solid #c3c3c3;
}

#main-footer .ft-copyright .compass-logo {
    color: var(--primary);
    font-size: 37px;
    padding-top: 36px;
}

#main-footer .ft-copyright .compass-copyright {
    color: var(--primary-text-accent);
    font-size: 15px;
    padding: 36px 0;
    line-height: 1.8;
}

#main-footer .ft-copyright .compass-copyright p {
    display: block;
}

#main-footer .ft-copyright .compass-copyright p+p {
    border-top: 1px solid rgba(0, 0, 0, 0.251);
    margin-top: 30px;
    padding-top: 30px;
}

#main-footer .ft-copyright .compass-copyright p a {
    transition: all 0.35s ease-in-out;
}

#main-footer .ft-copyright .compass-copyright p a:hover {
    color: var(--primary-text-color);
}

#main-footer .ft-copyright .copright {
    color: var(--primary-text-accent);
    font-size: 15px;
    line-height: 1.8;
    transition: all 0.6s ease;
}

#main-footer .ft-copyright .copright p a {
    transition: all 0.6s ease;
}

#main-footer .ft-copyright .copright p+p {
    margin-top: 30px;
}

#main-footer .ft-copyright .copright a:hover {
    color: var(--primary-text-color);
}

#main-footer .ft-copyright .copright i {
    color: var(--primary);
    font-size: 50px;
    margin-top: 20px;
    display: inline-block;
}

#main-footer .ft-copyright .copright i.ai-font-realtor-mls {
    margin-left: 15px;
}

/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
    z-index: 5;
}

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-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 .ip-breadcrumbs {
    position: absolute;
    bottom: 0;
    z-index: 4;
    width: 100%;
    color: var(--secondary);
    font-size: 16px;
    padding-top: 21px;
    padding-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ip-banner .ip-breadcrumbs a {
    color: var(--secondary);
    transition: all 0.35s ease-in-out;
}

.ip-banner .ip-breadcrumbs a:hover {
    opacity: 0.6;
}

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
    width: 77.08%;
}

#content-full #content {
    width: 100%;
}

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

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

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

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

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

#content .post a {
    color: var(--primary);
    word-break: break-all;
}

#content #breadcrumbs {
    display: none;
}

#content .entry-title,
#content .archive-title,
.post-page-testimonials #aios-testimonials.aios-testimonials-page h1 {
    font-family: var(--font-family-title);
    color: var(--primary);
    font-size: 33px;
    text-transform: uppercase;
}

#content .archive-subtitle {
    color: var(--primary);
    font-family: var(--font-family-title);
}

#content .entry-thumbnail img {
    width: 100%;
    margin: 0 auto;
}

#content .archive-list {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
}

#content .archive-list .post {
    width: 50%;
    padding: 15px;
    border: none;
}

#content .archive-list .post a {
    display: block;
    width: 100%;
    position: relative;
}

#content .archive-list .post .archive-thumbnail {
    width: 100%;
    float: none;
}

#content .archive-list .post .archive-thumbnail canvas {
    width: 100%;
    height: auto;
}

#content .archive-list .post .archive-thumbnail img {
    display: block;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
}

#content .archive-list .post .archive-content {
    width: 100%;
    float: none;
}

#content .archive-list .post .archive-content .archive-more {
    font-style: normal;
    text-decoration: none;
    display: inline-block;
    width: auto;
}

#content .archive-list .post .archive-content .archive-more:hover {
    color: #fff !important;
}

#content .archive-list .post:first-child {
    width: 100%;
}

#content .archive-list .post:first-child .entry {
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list .post:first-child .entry .archive-thumbnail {
    width: 60%;
}

#content .archive-list .post:first-child .entry .archive-content {
    width: 37%;
    margin-left: 3%;
    font-size: 22px;
}

#content .archive-list .post:first-child .entry .archive-content .archive-subtitle {
    margin: 0;
}

#content #listings-results .listings-table .listings-table-body .listings-table-label {
    color: #ffffff;
}

.ihf-details-template #inner-page-wrapper .max-container,
.single-aios-listings #inner-page-wrapper .max-container,
.ihf-results-template #inner-page-wrapper .max-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.post-page-get-a-free-home-valuation #inner-page-wrapper .max-container,
.aios-listings-template-default #inner-page-wrapper .max-container,
.aios-custom-ihomefinder-results-template #inner-page-wrapper #content,
.aios-custom-ihomefinder-details-template #inner-page-wrapper .max-container {
    padding: 0;
}

.listing-module-page #inner-page-wrapper .max-container>.container {
    width: 100% !important;
    padding: 0 !important;
}

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

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

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

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

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

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

body.aios-custom-ihomefinder-results-template .ip-breadcrumbs .max-container {
    width: 100%;
    max-width: 100%;
}

.post-page-get-a-free-home-valuation #inner-page-wrapper {
    margin: 0;
}

.post-page-get-a-free-home-valuation #inner-page-wrapper>.max-container {
    max-width: 100%;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-form-steps-wrap .aios-home-valuation-footer .aios-home-valuation-footer-steps.active .aios-home-valuation-icon {
    border-color: #fff;
    color: #fff;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-form-steps-wrap .aios-home-valuation-footer .aios-home-valuation-footer-steps.active h6,
.post-page-get-a-free-home-valuation .aios-home-valuation-form-steps-wrap .aios-home-valuation-footer .aios-home-valuation-footer-steps.active p {
    color: #fff;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-zillow-copyright,
.post-page-get-a-free-home-valuation .aios-home-valuation-step-wrap .aios-home-valuation-map {
    display: none;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-step-wrap .aios-home-valuation-form {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-step-wrap .aios-home-valuation-form p {
    text-align: center;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-step-wrap .aios-home-valuation-form .wpcf7-spinner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    margin-top: -50px;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-info .aios-home-valuation-api-result {
    display: none;
}

/* Featured Communities Map */
.fc-map-container {
    display: block;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.fc-map-wrapper {
    display: block;
    position: relative;
}

.fc-comm-areas {
    display: block;
    position: relative;
    margin-left: 57px;
}

.fc-map-transparent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.fc-map-main {
    position: relative;
    width: 1600px;
}

.fc-map-hovers {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fc-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    z-index: 4;
}

.fc-map-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 2;
    display: block;
    text-align: center;
}

.fc-map-pin span {
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.075em;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: inline-block;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(0, 0, 0) -0.832294px 1.81859px 0px, rgb(0, 0, 0) -1.60229px 1.19694px 0px, rgb(0, 0, 0) -1.97998px 0.28224px 0px, rgb(0, 0, 0) -1.87291px -0.701566px 0px, rgb(0, 0, 0) -1.30729px -1.5136px 0px, rgb(0, 0, 0) -0.421592px -1.95506px 0px, rgb(0, 0, 0) 0.567324px -1.91785px 0px, rgb(0, 0, 0) 1.41734px -1.41108px 0px, rgb(0, 0, 0) 1.92034px -0.558831px 0px;
}

.fc-comm-areas li.fc-comm-title {
    position: relative;
    display: block;
    z-index: 1;
}

.fc-comm-areas li.fc-comm-title.active a,
.fc-comm-areas li.fc-comm-title:hover a {
    color: #fff;
    padding: 0 30px;
}

.fc-comm-areas li.fc-comm-title:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    max-width: 415px;
}

.fc-comm-areas li.fc-comm-title[data-map-target="brunswick-county"]:before,
.fc-comm-areas li.fc-comm-title[data-map-target="oak-island"]:before {
    display: none;
}

.fc-comm-areas ul {
    display: inline-block;
    position: relative;
    pointer-events: auto;
}

.fc-comm-areas li.fc-comm-title.active:before,
.fc-comm-areas li.fc-comm-title:hover:before {
    width: 100%;
}

.fc-comm-areas li.fc-comm-title a {
    display: flex;
    align-items: center;
    height: 54px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    padding: 0;
    text-decoration: none;
    font-family: var(--roboto);
}

.fc-comm-areas li.fc-comm-title a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    background-color: #beaf87;
    transform: scaleX(0);
    transform-origin: left;
}

.fc-map-content {
    position: absolute;
    top: 144px;
    left: 100px;
    z-index: 5;
    pointer-events: none;
}

.fc-map-title {
    display: block;
    position: relative;
    margin-bottom: 34px;
}

.fc-map-title h2 span {
    font-size: 18px;
    line-height: 1;
    display: block;
    font-family: var(--font-family-default);
    color: #666666;
    letter-spacing: 0.120em;
    margin-bottom: -10px;
}

.fc-map-title h2:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 5px;
    height: 95%;
    background-color: #beaf87;
    pointer-events: none;
}

.fc-map-title h2 {
    font-size: 90px;
    color: #000;
    display: block;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    padding-left: 55px;
    position: relative;
}

.fc-comm-areas li.fc-comm-title.active a:before,
.fc-comm-areas li.fc-comm-title:hover a:before {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.fc-map-hovers>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fc-map-mobile-list {
    display: none;
}

.fc-map-hovers>div.active .fc-map-img {
    opacity: 1;
    visibility: visible;
}

.fc-map-hovers>div.active .fc-map-pin {
    transform: translateY(5px) scale(1.5);
    z-index: 5;
}

.fc-map-hovers>div.active .fc-map-pin span {
    /* text-shadow: rgb(190, 175, 135) 2px 0px 0px, rgb(190, 175, 135) 1.75517px 0.958851px 0px, rgb(190, 175, 135) 1.0806px 1.68294px 0px, rgb(190, 175, 135) 0.141474px 1.99499px 0px, rgb(190, 175, 135) -0.832294px 1.81859px 0px, rgb(190, 175, 135) -1.60229px 1.19694px 0px, rgb(190, 175, 135) -1.97998px 0.28224px 0px, rgb(190, 175, 135) -1.87291px -0.701566px 0px, rgb(190, 175, 135) -1.30729px -1.5136px 0px, rgb(190, 175, 135) -0.421592px -1.95506px 0px, rgb(190, 175, 135) 0.567324px -1.91785px 0px, rgb(190, 175, 135) 1.41734px -1.41108px 0px, rgb(190, 175, 135) 1.92034px -0.558831px 0px; */
    text-shadow: rgb(190, 175, 135) 1px 0px 0px, rgb(190, 175, 135) 0.540302px 0.841471px 0px, rgb(190, 175, 135) -0.416147px 0.909297px 0px, rgb(190, 175, 135) -0.989992px 0.14112px 0px, rgb(190, 175, 135) -0.653644px -0.756802px 0px, rgb(190, 175, 135) 0.283662px -0.958924px 0px, rgb(190, 175, 135) 0.96017px -0.279415px 0px;
}

.fc-map-hovers>div.topsail-island.active .fc-map-pin {
    transform: translateX(-25px) translateY(2px) scale(1.5);
}

.fc-map-hovers>div.leland.active .fc-map-pin {
    transform: translateX(-20px) translateY(5px) scale(1.5);
}

.fc-map-hovers>div.oak-island.active .fc-map-pin {
    transform: translateX(-40px) translateY(-2px) scale(1.5);
}

.fc-map-hovers>div.wrightsville-beach.active .fc-map-pin {
    transform: translateX(-15px) translateY(0) scale(1.5);
}

.fc-map-hovers>div.figure-eight-island.active .fc-map-pin {
    transform: translateX(-28px) translateY(0) scale(1.5);
}

.fc-map-hovers>div.downtown-wilmington.active .fc-map-pin {
    transform: translateX(-4px) translateY(-7px) scale(1.5);
}

.fc-map-pin.is-left span {
    text-align: left;
}

.fc-map-hovers>div.active {
    z-index: 2;
}

.fc-map-pin.hover {
    opacity: 0;
}

.fc-map-hovers>div.oak-island.active .fc-map-pin,
.fc-map-hovers>div.active .fc-map-pin.is-left {
    opacity: 0;
}

.fc-map-hovers>div.active .fc-map-pin.hover {
    opacity: 1;
}


body.page-id-23 #inner-page-wrapper .max-container.default-padding {
    padding: 0;
    max-width: 100%;
}

body.page-id-23 .featured-communities-map {
    font-size: 0;
    letter-spacing: normal;
    line-height: 1;
}

body.page-id-23 #inner-page-wrapper {
    margin-bottom: 0;
}

body.page-id-23 .aios-communities-page {
    padding: 0 15px;
    max-width: 1600px;
    margin: 0 auto;
}

body.page-id-23 #content .archive-title {
    display: none;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
}

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

.post-page-meet-the-team #content #agents-results .agents-button:hover {
    /* color: #000000; */
}

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

.aiosp-wrap .aiosp-ref-\#agents-popup-form input,
.aiosp-wrap .aiosp-ref-\#agents-popup-form textarea {
    outline: none;
}

.agents-popup-form .wpcf7-not-valid-tip {
    font-size: 13px;
}

.post-page-testimonials #aios-testimonials h3,
.post-page-testimonials .aios-testimonials-popup h2 {
    display: none !important;
}

.aios-mobile-header-wrapper {
    z-index: 10000 !important;
}

.aios-smf-theme-three .aios-smf-group .aios-smf-group-items li .aios-smf-group-item .filter-view-status {
    text-shadow: 1px 2px 1px #000;
}

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

.aios-custom-ihomefinder-details-template #listings-details .listings-hero .listings-slideshow-splide:after {
    display: none !important;
}

.aios-custom-ihomefinder-details-template #listings-details .listings-hero:after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    display: block !important;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

#listings-details .listings-slideshow-splide.splide-default .listings-slideshow-splide-text span {
    text-shadow: 1px 2px 2px #000 !important;
}

.aios-custom-ihomefinder-printable-template #breadcrumbs,
.aios-custom-ihomefinder-printable-template #content .listings-printable-header span {
    display: none;
}

.aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.75));
}

.aios-custom-ihomefinder-printable-template .modal-open {
    overflow: auto;
}

#listings-details .listings-form .wpcf7-spinner {
    position: absolute;
    margin: 0;
    right: 7px;
    bottom: 38px;
}

#listings-details .listings-form .wpcf7-not-valid-tip {
    left: auto;
    right: 0;
    font-size: 14px;
}

.aiosCommunitiesRadiance__image span {
    filter: drop-shadow(1px 1px 0px #000);
}

.aiosCommunitiesRadiance .ai-communities-pagination ul li a:hover,
.aiosCommunitiesRadiance .ai-communities-pagination ul li span {
    color: var(--aios-communities-primary-color);
    font-weight: 500;
}

.aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row .aios-home-valuation-form-col select {
    line-height: normal;
}

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

.post-page-sitemap .sitemap-list .page_item.page-item--74,
.post-page-sitemap .sitemap-list  .page_item.page-item--1{
  display: none;
}

nav#pojo-a11y-toolbar{
    z-index: 9999;
}

.ihf-results-template .listings-map .leaflet-map-pane .leaflet-div-icon {
    border: none;
    background: transparent;
}

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

.grecaptcha-badge {
    z-index: 1000;
}











.property-search .ip-banner canvas {
    background-image: url(https://wilmingtonstopagent.com/wp-content/uploads/2024/12/137313301-1.jpg) !important;
}


body.aios-custom-ihomefinder-printable-template {
    overflow: initial !important;
}






#content .about-main .default_title.ipwc{
    font-size: min(5.8vw, 35px);
}
#content .about-main .default_title.ipwc i{
    font-style: normal;
}





@media only screen and (min-width: 992px) {
    .default_title.wc{
    font-size: min(6.5vw, 40px);
    }
    
}
@media only screen and (min-width: 1200px) {
    #content .about-main .default_title.ipwc{
        font-size: min(2.75vw,35px);
    }
}
@media only screen and (max-width: 1440px) {
    .header {
        padding: 20px 15px 0;
    }

    .header .logo-wrap {
        width: 30%;
    }

    .header .logo-wrap a .logo h2 {
        font-size: 25px;
    }

    .header .logo-wrap a .logo span {
        font-size: 7.7px;
    }

    .header .logo-wrap a .logo-image {
        padding-left: 11px;
    }

    .header .logo-wrap a .logo-image i {
        font-size: 15px;
    }

    .header.show-fh .logo-wrap {
        width: 23%;
    }

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

    .header.show-fh .logo-wrap a .logo span {
        font-size: 6.5px;
    }

    .header.show-fh .logo-wrap a .logo-image i {
        font-size: 14px;
    }

    .header.show-fh .navigation {
        width: 60%;
        margin-left: 7%;
    }

    .header.show-fh .navigation ul li {
        padding: 0px 6px;
    }

    .header.show-fh .navigation ul li a {
        font-size: 12px;
    }

    .header.show-fh .hd-cta {
        width: 10%;
    }

    .header .navigation {
        width: 72%;
        margin-left: 2%;
    }

    .header .navigation ul li {
        padding: 0 15px;
    }

    .header .navigation ul li a {
        font-size: 12px;
    }

    .header .navigation #nav>li:last-child a {
        padding: 10px 0;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    .container-padding {
        padding-left: 50px;
        padding-right: 50px;
    }

    .header .navigation {
        width: 72%;
        margin-left: 2%;
    }

    .header .navigation ul li {
        padding: 0 7px;
    }

    .header .logo-wrap a .logo img {
        max-width: 183px;
    }

    .header.show-fh .logo-wrap a .logo img {
        max-width: 130px;
    }

    .header .logo-wrap a .logo-image img {
        /* max-width: 140px; */
    }

    .hp-cta div {
        padding: 0 13.5px;
    }

    .hp-cta div a span {
        font-size: 20px;
    }

    /* Blog */
    #content .archive-list .post:first-child .entry .archive-thumbnail {
        width: 100%;
    }

    #content .archive-list .post:first-child .entry .archive-content {
        width: 100%;
        margin-left: 0;
    }

    #content .archive-list .post:first-child .entry .archive-content .archive-subtitle {
        margin: 0.75em 0;
    }

    .ft-contact-form .ft-form-title h2 {
        font-size: 45px;
    }

    .ft-contact-form .ft-form-title p {
        font-size: 15px;
    }

    #main-footer h2 {
        font-size: 13px;
        line-height: 1.2;
    }

    #main-footer .ftr-newsletter .smi a {
        width: 40px;
        height: 40px;
    }

    .header .logo-wrap,
    .header.show-fh .logo-wrap {
        width: 26%;
    }

    .header .navigation #nav>li:last-child a {
        min-width: 107px;
    }

    .header.show-fh .navigation,
    .header .navigation {
        width: 70%;
        margin-left: 0;
    }

    #main-footer .ft-row:first-child+.ft-row {
        margin: 0 9%;
    }
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    .default_pagination .aios-arrows {
        margin: 0 14px;
    }

    .container-padding {
        padding-left: 15px;
        padding-right: 15px;
    }

    .aios-mobile-header-wrapper {
        display: block !important;
    }

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

    .amh-header-buttons.amh-2a .amh-navigation-trigger span * {
        padding-left: 10px;
    }

    .header {
        position: relative !important;
        background: var(--primary);
        margin-top: 54px;
        padding: 20px 15px;
    }

    .header .hd-wrap {
        justify-content: center;
    }

    .header .navigation {
        display: none;
    }

    .header .logo-wrap {
        width: 100%;
    }

    .header .logo-wrap a {
        justify-content: center;
        text-align: center;
    }

    .header .logo-wrap a .logo h2 {
        font-size: 30px;
    }

    .header .logo-wrap a .logo span {
        font-size: 13px;
    }

    .header .logo-wrap a .logo-image i {
        font-size: 20px;
    }

    .hp-cta-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hp-cta {
        display: block;
        margin: 0;
    }

    .hp-cta div {
        width: 100%;
        padding: 20px 0;
        max-width: 450px;
        margin: 0 auto;
    }

    .fc-comm-areas li.fc-comm-title[data-map-target="brunswick-county"]:before,
    .fc-comm-areas li.fc-comm-title[data-map-target="oak-island"]:before {
        display: none;
    }

    .fc-map-hovers,
    .fc-map-base,
    .fc-map-transparent {
        display: none !important;
    }

    .fc-map-main {
        width: 100% !important;
        transform: none !important;
    }

    .fc-map-title h2 {
        font-size: 55px;
        padding-left: 20px;
        display: inline-block;
        text-align: left;
    }

    .fc-comm-areas {
        margin: 0 auto;
        width: 100%;
        max-width: 340px;
    }

    .fc-map-title h2 span {
        font-size: 16px;
        margin: 0;
    }

    .fc-map-content {
        position: relative;
        top: 0;
        left: 0;
    }

    .fc-map-container {
        padding: 30px 15px;
    }

    .fc-map-outer {
        height: auto !important;
    }

    .fc-comm-areas li.fc-comm-title a {
        font-size: 15px;
        height: 45px;
        letter-spacing: normal;
    }

    .fc-map-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .fc-comm-areas li.fc-comm-title:before {
        display: block !important;
        max-width: 100%;
    }

    .fc-comm-areas li.fc-comm-title:hover a,
    .fc-comm-areas li.fc-comm-title a {
        padding: 0 20px;
    }

    #main-footer .ft-copyright .compass-logo {
        font-size: 25px;
    }

    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

    #content-sidebar,
    #content-full {
        width: 100%;
    }

    .outer {
        width: 100%;
        min-width: 100%;
    }

    #content-sidebar #content {
        width: 100%;
    }

    #content {
        /* Blog */
        /* Blog */
    }

    #content .archive-list {
        margin: 0;
    }

    #content .archive-list .post {
        width: 100%;
        padding: 15px 0;
    }

    #content .archive-list .post .archive-content .archive-subtitle {
        text-align: left;
    }

    #content .archive-list .post:first-child .entry .archive-thumbnail {
        width: 100%;
    }

    #content .archive-list .post:first-child .entry .archive-content {
        width: 100%;
        margin-left: 0;
    }

    .ft-contact-form .ft-form-title {
        text-align: center;
        padding-bottom: 50px;
    }

    .ft-contact-form .wpcf7 form .wpcf7-response-output {
        position: static;
        transform: none;
    }

    #main-footer .ftr-newsletter {
        padding-top: 40px;
    }

    body.page-id-23 .fc-map-container {
        padding: 70px 15px 0;
    }

    #main-footer .ft-logo .logo-text {
        flex-flow: column;
        align-items: flex-start;
    }

    #main-footer .ft-logo .logo-text a {
        margin-right: 0;
    }

    #agents-results .agents-contact {
        justify-content: center !important;
    }

    #agents-single ul.agents-contact li.agents-contact-half>div {
        width: fit-content;
        margin: auto;
    }

    #agents-single .agents-contact li.agent-email-address {
        margin-top: 0 !important;
    }

    #agents-single .agents-img {
        max-width: 360px;
        margin: auto;
    }

    #agents-results .agents-img {
        max-width: 350px;
        margin: auto;
    }

    #agents-single ul.agents-contact li>div {
        padding: 0 !important;
    }

    #agents-single .agents-contact li {
        height: auto !important;
    }

    #agents-results .agents-col:nth-child(even) .agents-item,
    #agents-results .agents-col:nth-child(even) .agents-main {
        flex-direction: row !important;
    }

    #agents-single .agents-contact li.agents-contact-half {
        margin: 0 0 20px !important;
    }

    .aios-custom-ihomefinder-details-template #listings-details .listings-hero:after {
        display: none !important;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .default_button {
        font-size: 12px;
    }

    .default_title {
        font-size: 40px;
    }

    .default_title span {
        font-size: 16px;
    }

    .header .logo-wrap .logo h2 {
        font-size: 25px;
    }

    .header .logo-wrap .logo span {
        font-size: 10.5px;
    }

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

    .ft-contact-form .wpcf7-not-valid-tip {
        font-size: 11px;
    }

    .ft-contact-form .ft-form .fieldWrap {
        margin: 0;
    }

    .ft-contact-form .ft-form .field-input.field-sm,
    .ft-contact-form .ft-form .field-input.field-lg {
        width: 100%;
        padding: 16px 0;
    }

    .ft-contact-form .ft-form .form-btn {
        padding: 0;
    }

    .ft-contact-form .wpcf7 form .wpcf7-response-output {
        width: 100%;
    }

    #main-footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #main-footer h2 {
        font-size: 17px;
        margin-bottom: 31px;
    }

    #main-footer .ft-logo {
        margin-bottom: 40px;
    }

    #main-footer .ft-rows {
        flex-flow: column;
    }

    #main-footer .ft-row {
        width: 100% !important;
        margin: 20px 0 !important;
    }

    #main-footer .ft-row ul li .ai-mobile-phone {
        margin-top: 0;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .header .logo-wrap a .logo span {
        letter-spacing: 0.09em;
    }

    .header .logo-wrap a .logo-image i {
        font-size: 16px;
    }

    .ft-contact-form .ft-form-title h2 {
        font-size: 38px;
    }

    .fc-map-title h2 {
        font-size: 35px;
    }

    .fc-map-title {
        margin-bottom: 30px;
    }

    .fc-comm-areas li.fc-comm-title:hover a,
    .fc-comm-areas li.fc-comm-title a {
        padding: 0 10px;
    }

    .fc-comm-areas li.fc-comm-title a {
        font-size: 14px;
    }

    .fc-comm-areas {
        max-width: 290px;
    }
}

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

    .header .logo-wrap a .logo img,
    .header .logo-wrap a .logo-image img {
        max-width: 135px;
    }
}
