/*
Theme Name: Bremis Collection
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: 'Outfit', sans-serif;
    --font-family-title: 'Outfit', sans-serif;
    --font-family-accent: 'Ms Madi', cursive;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #296cb5;
    --secondary: #26df2e;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --gray: #c9c9c9;
}

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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0, 0, 0, 0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
}

#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}

#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 var(--light);
    color: var(--font-color-default);
    text-decoration: none;
}

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

#nav li:hover>.sub-menu {
    display: block;
}

#nav .sub-menu li {
    position: relative;
}

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

body.home section p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 25px;
}

body.home section p.intro {
    font-size: 21px;
}

.custom-container {
    width: 90%;
    max-width: 1285px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

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

.j-center {
    justify-content: center;
}

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

.j-spacebet {
    justify-content: space-between;
}

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

.a-center {
    align-items: center;
}

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

#main-wrapper {
    overflow: hidden;
}

.canvas-img {
    display: block;
    position: relative;
    overflow: hidden;
}

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

.canvas-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--default-transition);
    object-fit: cover;
}

.canvas-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

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

.canvas-bg.section-logo-bg canvas {
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .06;
}

.canvas-bg+.custom-container {
    position: relative;
    z-index: 1;
}

.canvas-bg.is-white canvas {
    filter: grayscale(1);
}

.canvas-bg.is-white::before {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .90;
}

.canvas-bg.is-white::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    top: 0;
    z-index: 1;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h1,
.section-title h2 {
    font-size: 80px;
    font-family: var(--font-family-title);
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.section-title h1.text-right,
.section-title h2.text-right {
    text-align: right;
}

.section-title span.br {
    display: block;
}

.section-title small {
    display: block;
    color: #525252;
    font-size: 20px;
    margin: 10px 0;
    letter-spacing: 6px;
}

.section-title small.is-secondary {
    color: var(--secondary);
}

.section-title h1 span.line-number,
.section-title h2 span.line-number {
    font-size: 20px;
    position: absolute;
    left: -40px;
    bottom: 30px;
    font-weight: 400;
}

.section-title h1 span.line-number::after,
.section-title h2 span.line-number::after {
    content: '';
    width: 35px;
    height: 1px;
    background: #d3d3d3;
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
}

.ip-container .line-number {
    display: none
}

.section-title h1 span.line-number.line-primary::after,
.section-title h2 span.line-number.line-primary::after {
    background: var(--primary);
}

.section-btn {
    font-size: 14px;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    border: 1px var(--primary) solid;
    display: inline-block;
    text-align: center;
    padding: 24px 40px 20px;
    transition: var(--default-transition);
    background-color: transparent;
}

.section-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.hp-slide-control button {
    margin: 0 20px;
    background: transparent;
    border: 0;
    font-size: 9px;
    text-transform: uppercase;
    padding: 10px 0;
}

.hp-slide-control button i {
    color: #000;
}

.hp-slide-control button.arrow-prev {
    border-right: 1px #000 solid;
}

.hp-slide-control button.arrow-next {
    border-left: 1px #000 solid;
}

.hp-slide-control button span {
    display: inline-block;
    padding: 0 15px;
}

.hp-slide-control .slick-arrow {
    transition: all .5s;
}

.hp-slide-control .slick-arrow:hover {
    opacity: 0.5;
}

/* header */
.header {
    color: #fff;
    padding: 20px 0;
    position: absolute;
    z-index: 900;
    width: 100%;
    background-color: transparent
}

.header.fixed {
    position: fixed;
    background-color: #000;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.header .custom-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 95%;
}

.header .logo {
    margin-right: 50px;
}

.header .logo img {
    transition: var(--default-transition);
}

.header.fixed .custom-container {
    max-width: 1420px;
}

.header.fixed .logo {
    margin-right: 35px;
}

.header.fixed .logo img {
    width: 42px;
    height: auto;
}

.header .logo a {
    display: block;
}

.header .hdr-nav-inner .navigation {
    display: flex;
    position: relative;
    align-items: center;
}

.header .hdr-contact {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 5px;
    position: absolute;
    left: 0;
    bottom: -40px;
    text-align: center;
    width: 100%;
}

.header .hdr-contact a {
    transition: var(--default-transition);
}

.header .hdr-contact a:hover {
    color: var(--secondary);
}

.header.fixed .hdr-contact {
    position: relative;
    left: auto;
    bottom: 0;
    width: auto;
    font-size: 35px;
    margin-right: 35px;
}

/* Sub Menu */
.hdrnav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family-default);
}

.hdrnav>li {
    position: relative;
    margin: 0;
}

.hdrnav>li:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
}

.header.fixed .hdrnav>li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
}

.hdrnav>li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 15px;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    opacity: .20;
}

.hdrnav>li>a {
    font-size: 14px;
    color: var(--white-text);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1.2px;
    padding: 5px 0;
    display: block;
    position: relative;
    transition: var(--default-transition);
}

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

.hdrnav>li>a[data-title="Contact"] {
    padding-left: 15px;
}

.hdrnav>li>a[data-title="Contact"]::before {
    content: "\b0069";
    font-family: agentimage !important;
    font-size: 35px;
    /*color: red;*/
    color: var(--secondary);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.header.fixed .hdrnav>li>a[data-title="Contact"] {
    margin-left: 20px;
}

.header.fixed .hdrnav>li>a[data-title="Contact"]::before {
    display: block;
}

.hdrnav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 170px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    transition: var(--default-transition);
    opacity: 0;
    visibility: hidden;
}

.header.fixed .hdrnav .sub-menu {
    padding-top: 39px;
}

.hdrnav li:hover>.sub-menu,
.hdrnav li:focus>.sub-menu,
.hdrnav li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.hdrnav .sub-menu li {
    display: block;
    position: relative;
    padding: 0;
    margin-bottom: 1px;
    background: rgb(0 0 0 / .75);
}

.hdrnav .sub-menu li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: var(--default-transition);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.hdrnav .sub-menu li:hover:before,
.hdrnav .sub-menu li:focus:before {
    opacity: 1;
}

.hdrnav .sub-menu li.menu-item-has-children:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 7px solid #fff;
    z-index: 2;
    pointer-events: none;
}

.hdrnav .sub-menu a {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    letter-spacing: .025em;
    display: block;
    text-align: center;
    padding: 10px !important;
    text-transform: uppercase;
    line-height: 1;
    transition: var(--default-transition);
    position: relative;
    z-index: 2;
}

.hdrnav .sub-menu a:hover,
.hdrnav .sub-menu a:focus {
    color: #fff;
}

.hdrnav .sub-menu .sub-menu {
    margin-left: 100%;
    padding: 0 0 0 1px;
    top: 0;
}

/* footer: contact form */
.footer-cf {
    position: relative;
    padding: 60px 0;
}

.footer-cf .custom-container {
    position: relative;
    z-index: 2;
}

.footer-cf .wpcf7 {
    width: 95%;
    max-width: 825px;
    margin: 0 auto;
    position: relative;
}

.footer-cf .wpcf7 form {
    display: flex;
    flex-flow: row wrap;
    position: relative;
    margin-top: 30px;
}

.footer-cf .wpcf7 .wpcf7-response-output {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #000;
    bottom: -40px;
    margin: 0;
    padding: 5px;
}

.cf-field {
    width: 50%;
    padding: 5px 10px;
    position: relative;
    margin-bottom: 15px;
}

.cf-field-full {
    width: 100%;
}

.cf-field input,
.cf-field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 10px 0;
    font-size: 12px;
    font-family: var(--font-family-title);
    letter-spacing: 1.1px;
    outline: none;
    border: 0;
    border-bottom: 1px #525252 solid;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    text-transform: uppercase;
    color: #525252;
}

.cf-field textarea {
    resize: none;
    padding-top: 20px;
    height: 85px;
}

.cf-submit {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.cf-field .wpcf7-not-valid-tip {
    position: absolute;
    left: auto;
    right: 0;
    width: auto;
}

/* footer */
.footer {
    background: #000;
    padding: 50px 0 40px;
    position: relative;
    color: #fff;
}

.footer .canvas-bg canvas {
    opacity: .15;
    max-width: 1231px;
    max-height: 898px;
}

.footer .custom-container {
    max-width: 1220px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-logo img {
    margin: 0 auto 40px;
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-bottom: 1px rgb(255 255 255 / .20) solid;
    max-width: 845px;
    margin: 0 auto 45px;
    padding-bottom: 35px;
}

.footer-contact.with-divider::after {
    content: '';
    width: 1px;
    height: 15px;
    background: #fff;
    right: 0;
    opacity: .20;
    display: inline-block;
    margin: 0 15px;
    position: relative;
    vertical-align: middle;
}

.footer-contact-smis {
    width: 100%;
    margin-top: 30px;
}

.footer-contact-smis a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    background-color: #c9c9c9;
    color: #000;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 6px;
}

.footer-contact-smis a:hover {
    background-color: var(--primary);
    transition: var(--default-transition);
    color: #fff !important;
}

.footer-nav {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.footernav li {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
}

.footernav li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 15px;
    background: #fff;
    right: 0;
    opacity: .20;
    display: inline-block;
    margin: 0 10px;
    position: relative;
    top: 2px;
}

.footer-bottom {
    padding: 40px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    line-height: 20px;
}

.agent-name {
    text-transform: uppercase;
    font-weight: 700;
}

.footer-copyright p {
    padding: 5px 0;
}

.footer-copyright .ai-icon {
    font-size: 28px;
    margin-right: 5px;
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 20px;
    padding-top: 20px;
    margin: 0 auto 30px;
}

.footer a {
    transition: var(--default-transition);
}

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

/* home: slideshow */
.hp-slider,
.hp-slider .textwidget {
    position: relative;
}

.hp-slider .aios-slider-img::before,
.hp-slider .aios-slider-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 1;
    opacity: .10;
}

.hp-slider .aios-slider-img::after {
    height: 30%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: .5;
}

.hp-slider .aios-slider-img img {
    filter: saturate(0.30)
}

.hp-slider-tagline {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #fff;
    width: 100%;
    text-align: center;
}

.hp-slider-tagline h1,
.hp-slider-tagline h2 {
    font-size: 100px;
    font-family: var(--font-family-accent);
    color: var(--secondary);
    text-shadow: 0 0 20px #000;
    position: relative;
    z-index: 2;
}

.hp-slider-tagline::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 100px;
    background: #000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 1;
    opacity: .6;
}

/* home: smis */
.hp-smis {
    text-align: center;
    position: relative;
    margin-top: -30px;
}

.hp-smis-list a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--gray);
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
    margin: 0 6px;
}

.hp-smis-list a:hover {
    background-color: var(--primary);
    transition: var(--default-transition);
}

.hp-sm-feed-nav .slick-arrow {
    transition: all .5s;
}

.hp-sm-feed-nav .slick-arrow:hover {
    opacity: 0.5;
}

/* home: open house */
.hp-oh {
    padding: 60px 0;
}

.hp-oh-list:not(.slick-initialized) {
    display: flex;
}

.hp-oh-list {
    margin-bottom: 50px;
}

.hp-oh-list .slick-slide {
    padding: 0 6px;
}

.hp-oh-item {
    position: relative;
}

.hp-oh-item>a:not(.section-btn) {
    display: block;
    position: relative;
    border-left: 5px var(--primary) solid;
    outline: none;
    transition: all .5s;
}

.hp-oh-item>a.section-btn.hp-oh-item-vt {
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.hp-oh-item:hover>a.section-btn.hp-oh-item-vt {
    opacity: 1;
    border-color: var(--primary);
}

.hp-oh-item>a:hover {
    border-color: #fff;
}

.hp-oh-item:hover .section-btn {
    background-color: var(--primary);
    color: #fff;
}

.hp-oh-item-img::before,
.hp-oh-item-img::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all .5s;
}

.hp-oh-item-img::after {
    opacity: 0;
    height: 100%;
    background: #000;
}

.hp-oh-item:hover .hp-oh-item-img::after {
    opacity: .80;
}

.hp-oh-item:hover .hp-oh-item-img::before {
    opacity: 0;
}

.hp-oh-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 25px 0;
    z-index: 2;
}

.hp-oh-address-1 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hp-oh-address-2 {
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hp-oh-spec {
    font-size: 11px;
    padding: 0 15px;
}

.hp-oh-item-bottom {
    padding: 30px 0;
    margin: 0 20px;
    border-bottom: 2px var(--primary) solid;
}

.hp-oh-spec i {
    margin-right: 5px;
}

.hp-oh-item-bottom h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hp-oh-item-bottom p {
    font-size: 12px !important;
}

/* home: featured properties */
.hp-fp {
    position: relative;
    padding: 0;
}

.hp-fp-accent {
    position: absolute;
    width: 15%;
    height: 100%;
    background: #cecece;
    z-index: 2;
    pointer-events: none;
    transition: all .5s;
}

.hp-fp-accent::before {
    content: '';
    background: url(/wp-content/uploads/2023/08/footer-bg.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .20;
}

.hp-fp-accent.a-bottom {
    width: 100%;
    height: 30%;
    bottom: 0;
    top: auto;
}

.hp-fp-accent.a-right {
    width: 20%;
    height: 30%;
    bottom: 0;
    top: auto;
    right: 0;
    background: #adadad;
    z-index: 2;
}

.hp-fp:hover .hp-fp-accent.a-left,
.hp-fp:hover .hp-fp-accent.a-bottom {
    background: #383838;
}

.hp-fp .custom-container {
    z-index: 3;
    max-width: 1405px;
}

.hp-fp-item {
    border-left: 5px var(--primary) solid;
    position: relative;
    transition: var(--default-transition);
}

.hp-fp-item:hover {
    border-color: #fff;
}

.hp-fp-item:hover .hp-fp-item-img img {
    filter: grayscale(1);
}

.hp-fp-item-tagline {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 80%;
    text-align: center;
    color: var(--secondary);
    font-family: var(--font-family-accent);
    font-size: 80px;
    text-shadow: 0 0 35px #000;
    opacity: 0;
    transition: var(--default-transition);
}

.hp-fp-item:hover .hp-fp-item-tagline {
    opacity: 1;
}

.hp-fp-item-details {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 365px;
    border-radius: 20px;
    text-align: center;
    padding: 40px 0;
    background: rgb(255 255 255 / .90);
}

.hp-fp-item-details::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/wp-content/uploads/2023/08/hp-fp-details-bg.jpg) no-repeat;
    background-size: contain;
    opacity: .05;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.hp-fp-item-details>div,
.hp-fp-item-details img,
.hp-fp-item-details>div,
.hp-fp-item-details .section-btn {
    z-index: 2;
    position: relative;
}

.hp-fp-item-details img {
    margin: 0 auto 30px;
}

.hp-fp-item-details-price {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hp-fp-item-details-address-1 {
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hp-fp-item-details-address-2 {
    text-transform: uppercase;
    color: #525252;
    font-size: 14px;
    margin-bottom: 30px;
}

.hp-fp-list .slick-list {
    padding-bottom: 80px;
}

.hp-fp-specs {
    position: absolute;
    bottom: -65px;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: all .5s;
}

.hp-fp-item:hover .hp-fp-specs {
    opacity: 1;
}

.hp-fp-spec {
    color: #fff;
    font-size: 24.2px;
    position: relative;
}

.hp-fp-spec:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 35px;
    background: #fff;
    right: 0;
    opacity: .20;
    display: inline-block;
    margin: 0 45px;
    position: relative;
    vertical-align: middle;
}

.hp-fp-spec i {
    margin-right: 10px;
}

/* home: welcome */
.hp-wc {
    padding: 100px 0;
    position: relative;
}

.hp-wc .section-title h1 span.line-number,
.hp-wc .section-title h2 span.line-number {
    bottom: auto;
    top: 25%;
}

.hp-wc .canvas-bg {
    max-width: 892px;
    max-height: 381px;
    right: 0;
    left: auto;
}

.hp-wc-img {
    position: relative;
}

.hp-wc-img-label {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: var(--secondary);
    font-family: var(--font-family-accent);
    font-size: 70px;
    text-shadow: 0 0 10px #000;
}

.hp-wc-txt-col {
    position: relative;
}

.hp-wc-txt-col .accent-line {
    width: 145px;
    height: 1px;
    position: absolute;
    top: 15px;
    left: -145px;
    background-color: var(--primary);
}

.hp-wc-txt-col .accent-line::before {
    width: 15px;
    height: 15px;
    content: '';
    position: absolute;
    top: calc(50% - 7.5px);
    left: -3px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.hp-wc-txt-col .accent-line::after {
    width: 9px;
    height: 9px;
    content: '';
    position: absolute;
    top: calc(50% - 4.5px);
    left: 0;
    background-color: var(--primary);
    border-radius: 50%;
}

/* home: about */
.hp-about .section-title h1 span.line-number,
.hp-about .section-title h2 span.line-number {
    bottom: auto;
    top: 25%;
}

.hp-about .custom-container {
    padding: 100px 0;
}

.hp-about-main {
    position: relative;
}

.hp-about .canvas-bg.section-logo-bg canvas {
    background-position: 0 20%;
}

.hp-about-text-top {
    float: left;
    width: 100%;
}

.hp-about-text-top img {
    float: left;
    margin: 0 30px 25px 0;
}

.hp-about-text-top h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hp-about-text-top h4 {
    font-size: 50px;
    font-family: var(--font-family-accent);
    color: var(--secondary);
}

.hp-about-text-top p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px !important;
}

.hp-team {
    position: relative;
    display: block;
    text-align: center;
}

.hp-team .canvas-bg canvas {
    filter: grayscale(1);
    background-position: top;
}

.hp-team .canvas-bg.section-logo-bg {
    bottom: 0;
    top: unset;
    height: 139px;
    opacity: 0.3;
}

.hp-team .canvas-bg.section-logo-bg canvas {
    opacity: 0.6;
}

.team-wrap {
    position: relative;
    z-index: 2;
    padding-top: 400px;
    padding-bottom: 63px;
}

.team-wrap .section-title h2,
.team-wrap .section-title small,
.section-title h2 span.line-number.line-primary::after {
    color: #fff;
}

.team-wrap .section-btn {
    color: #fff;
    border-color: #fff;
}

/* home: sold listings */
.hp-sl {
    position: relative;
    padding: 0;
}

.hp-sl-accent {
    position: absolute;
    width: 15%;
    height: 70%;
    background: #cecece;
    z-index: 2;
    pointer-events: none;
    transition: all .5s;
}

.hp-sl-accent::before {
    content: '';
    background: url(/wp-content/uploads/2023/08/footer-bg.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .20;
}

.hp-sl-accent.a-bottom {
    width: 60%;
    height: 30%;
    bottom: 0;
    top: auto;
    right: 0;
}

.hp-sl-accent.a-right {
    right: 0;
    z-index: 2;
}

.hp-sl:hover .hp-sl-accent {
    background: #383838;
}

.hp-sl .custom-container {
    z-index: 3;
    position: relative;
    max-width: 1405px;
}

.hp-sl-item {
    border-right: 5px var(--primary) solid;
    position: relative;
    transition: var(--default-transition);
}

.hp-sl-item:hover {
    border-color: #fff;
}

.hp-sl-item:hover .hp-sl-item-img img {
    filter: grayscale(1);
}

.hp-sl-item-tagline {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80%;
    text-align: center;
    color: var(--secondary);
    font-family: var(--font-family-accent);
    font-size: 80px;
    text-shadow: 0 0 35px #000;
    opacity: 0;
    transition: var(--default-transition);
}

.hp-sl-item:hover .hp-sl-item-tagline {
    opacity: 1;
}

.hp-sl-item-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 365px;
    border-radius: 20px;
    text-align: center;
    padding: 40px 0;
    background: rgb(255 255 255 / .90);
}

.hp-sl-item-details::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/wp-content/uploads/2023/08/hp-fp-details-bg.jpg) no-repeat;
    background-size: contain;
    opacity: .05;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.hp-sl-item-details>div,
.hp-sl-item-details img,
.hp-sl-item-details>div,
.hp-sl-item-details .section-btn {
    z-index: 2;
    position: relative;
}

.hp-sl-item-details img {
    margin: 0 auto 30px;
}

.hp-sl-item-details-price {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hp-sl-item-details-address-1 {
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hp-sl-item-details-address-2 {
    text-transform: uppercase;
    color: #525252;
    font-size: 14px;
    margin-bottom: 30px;
}

.hp-sl-list .slick-list {
    padding-bottom: 80px;
}

.hp-sl-specs {
    position: absolute;
    bottom: -65px;
    text-align: center;
    width: 60%;
    opacity: 0;
    transition: all .5s;
    right: 0;
}

.hp-sl-item:hover .hp-sl-specs {
    opacity: 1;
}

.hp-sl-spec {
    color: #fff;
    font-size: 24.2px;
    position: relative;
}

.hp-sl-spec:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 35px;
    background: #fff;
    right: 0;
    opacity: .20;
    display: inline-block;
    margin: 0 45px;
    position: relative;
    vertical-align: middle;
}

.hp-sl-spec i {
    margin-right: 10px;
}

/* home: awards */
.hp-award-logos {
    padding: 100px 0;
}

.hp-award-logos .custom-container {
    max-width: 1400px;
}

.hp-award-logos-list img {
    margin: 10px;
}

/* home: testimonials */
.hp-testi {
    position: relative;
    padding: 0 0 170px;
}

.hp-testi .canvas-bg.section-logo-bg {
    z-index: 2;
}

.hp-testi .canvas-bg.section-logo-bg canvas {
    background-position: 0 97%;
}

.hp-testi-list {
    margin-bottom: 50px;
}

.hp-testi-list .slick-slide {
    padding: 0 50px;
}

.hp-testi-item {
    position: relative;
}

.hp-testi-item::before {
    content: '';
    width: 75px;
    height: 75px;
    background: var(--primary) url(/wp-content/uploads/2023/08/icon-quote.png) no-repeat center;
    display: block;
    border-radius: 50%;
    margin: 20px auto;
}

.hp-testi-item-name {
    font-size: 20px;
    margin-bottom: 15px;
}

.hp-testi-item-type {
    color: #8d8d8d;
    font-size: 12px;
    margin-bottom: 25px;
}

.hp-testi-item-text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.hp-testi-item-more a {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    transition: var(--default-transition);
}

.hp-testi-item-more a:hover {
    color: var(--secondary);
}

/* home: ctas */
.hp-ctas {
    z-index: 2;
    position: relative;
}

.hp-ctas-wrap {
    padding: 150px 0;
    position: relative;
}

.hp-ctas-accent {
    position: absolute;
}

.hp-ctas-accent::before {
    content: '';
    background: url(/wp-content/uploads/2023/08/footer-bg.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .20;
}

.hp-ctas-accent.a-left {
    background: #404040;
    width: 59%;
    height: calc(100% - 140px);
    pointer-events: none;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.hp-ctas-accent.a-top,
.hp-ctas-accent.a-bottom {
    background: #b3b3b3;
    position: absolute;
}

.hp-ctas-accent.a-top {
    width: 48%;
    height: 70px;
    top: 0;
}

.hp-ctas-accent.a-bottom {
    bottom: 20px;
    width: 35%;
    left: 27%;
    height: 194px;
}

.hp-ctas .custom-container {
    max-width: 1400px;
}

.hp-ctas-text {
    color: #fff;
}

.hp-ctas-list {
    padding-left: 10%;
}

.hp-ctas-list li a {
    background-color: #000;
    color: #fff;
    display: block;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 25px 45px;
    border: 2px #fff solid;
    margin: 5px 0;
    transition: var(--default-transition);
    position: relative;
}

.hp-ctas-list li a::before {
    content: '';
    height: 1px;
    background: var(--primary);
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    width: 0;
    transition: all .5s;
}

.hp-ctas-list li:hover a::before {
    opacity: 1;
    width: 110px;
}

.hp-ctas-list li a.cta-small {
    font-size: 35px;
}

.hp-ctas-list li a:hover {
    background: #fff;
    color: #000;
}

.hp-ctas-list li a span {
    position: relative;
    transition: all .5s;
    left: 0;
}

.hp-ctas-list li:hover a span {
    left: 45px;
}

.hp-ctas-text .section-title small {
    color: #fff;
}

/* home: social media */
.hp-sm {
    position: relative;
    padding: 80px 0;
}

.hp-sm-feed {
    display: flex !important;
    flex-wrap: wrap;
}

.hp-sm-feed-item,
.hp-sm-feed-source {
    width: 33.33%;
    padding: 10px;
}

.hp-sm-feed-source {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 4;
    flex-direction: column;
}

.hp-sm-feed-source-logo {
    margin: 15px 0;
}

.hp-sm-feed-source-handle {
    color: #525252;
    font-size: 22.4px;
}

.hp-sm-feed-item:nth-child(2) {
    order: 0;
}

.hp-sm-feed-item:nth-child(3) {
    order: 1;
}

.hp-sm-feed-item:nth-child(4) {
    order: 2;
}

.hp-sm-feed-item:nth-child(5) {
    order: 3;
}

.hp-sm-feed-item:nth-child(6) {
    order: 4;
}

.hp-sm-feed-item:nth-child(7) {
    order: 5;
}

.hp-sm-feed-item:nth-child(8) {
    order: 6;
}

.hp-sm-feed-item:nth-child(9) {
    order: 7;
}

.hp-sm-feed-nav button {
    padding: 10px 20px;
    margin: 0;
    display: inline-block;
}

.hp-sm-feed-nav button i {
    font-size: 25px;
}

.hp-sm-feed-nav button span {
    display: none;
}

.hp-sm-feed-nav button.arrow-next {
    border-left: 0;
    margin-left: -1px;
}

.hp-sm-feed-nav button.arrow-prev {
    border-color: #ccc;
}

.hp-sm-feed-item:hover img {
    opacity: 0.7;
}

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

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
}

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

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

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

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: 80px;
    font-family: var(--font-family-title);
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 40px;
    font-family: var(--font-family-title);
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

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

/* 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-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale {
    display: none !important;
}

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list>article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

body.single-post .entry-thumbnail img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.aios-custom-ihomefinder-printable-template .listings-printable-header span {
    display: none !important;
}

:is(.page-id-24, .page-id-15) #breadcrumbs {
    margin: 0 50px;
}

section#hp-welcome,
section#hp-about,
section#hp-team,
section#hp-awards,
section#hp-ctas,
section#hp-social-media,
div#footer-contact-form,
footer.footer {
    display: none;
}

section#hp-open-house,
section#hp-featured-properties,
section#hp-sold-listings,
section#hp-testimonials {
    opacity: 0;
}

.hp-sm .footer-contact-smis {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 30px;
}

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

html .aios-custom-ihomefinder-results-template #content-full .entry-title {
    padding-left: 0;
    padding-right: 0;
}

#agents-results .agents-list .agents-box .agent-box-hover>.agent-box-hover-info span {
    margin-right: 10px;
    margin-left: 0;
}

.error-page-cf-wrap .wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px;
    display: none;
}

.error-page-cf-wrap .wpcf7-not-valid-tip:last-of-type {
    display: block;
}

.error-page-cf-wrap .wpcf7-response-output {
    text-align: center;
}

#content #ai-modern-contact .ai-modern-contact-title span {
    color: var(--secondary);
}

#content #ai-modern-contact .ai-modern-contact-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

#content #ai-modern-contact .ai-modern-contact-title img {
    background: black;
    width: 70px;
    height: auto;
}

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

.aios-custom-ihomefinder-printable-template #breadcrumbs {
    display: none;
}

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

.page-id-24 #ai-modern-about .ai-modern-about-title h2 span {
    color: #26df2e;
}

.page-id-24 #ai-modern-about .ai-template-form-wrap::after {
    background-color: #26df2e;
}

.page-id-24 #ai-modern-about .ai-modern-about-contact li>span {
    color: #26df2e;
}

.page-id-24 #ai-modern-about .ai-modern-about-smi li a {
    background-color: var(--secondary);
}

#listings-results .listings-grid .listings-col:hover .listings-footer  span.listings-openhouse em {
	color: #fff;
}

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

html #listings-details .listings-main,
html #ai-modern-about{
    margin-top: 20px;
}

#agents-single .agents-contact li.agent-contact-short > div > div {
    text-align: center;
}

html .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
	color: #26df2e;
}

.post-aios-agents-cheri-meckley #agents-single .agent-videos {
    display: none;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */