/*
Theme Name: rubinabokhari.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: 'Compass Sans';
    --font-family-title: 'Playfair Display', serif;
    --font-family-cardo: 'Cardo', serif;
    --font-family-poppins: 'Poppins', sans-serif;
    --font-family-compass-serif: 'Compass Serif';
    --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: #968833;
    --secondary: #000;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --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-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-row-reverse {
    flex-direction: row-reverse;
}

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

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

#main-wrapper {
    overflow: hidden;
}

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

p {
    line-height: 1.9;
}

.cc_form_row {
    margin: 0 -10px;
}

.cc_form_col {
    width: 100%;
    padding: 4px 10px;
}

.cc_form_col label {
    display: none;
}

.cc_form_col input {
    font-size: 15px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    height: 51px;
    width: 100%;
    outline: none;
}

.cc_form_col textarea {
    font-size: 15px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    height: 103px;
    width: 100%;
    outline: none;
    margin-top: 20px;
}

.cc_form_col .wpcf7-not-valid-tip {
    position: absolute;
    display: block;
    width: auto;
    /* left: 0; */
}

.cf-submit {
    flex-shrink: 0;
    margin-top: 35px;
}

.cf-submit input {
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    display: block;
    padding: 0 0 20px;
    transition: var(--transition);
}

.cf-submit input:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.cf-submit .wpcf7-spinner {
    position: absolute;
}

.wpcf7 form .wpcf7-response-output {
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 10px 20px;
}

/* Defaults */
.default-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 1000;
}

.default-title {}

.default-title h2,
.default-title h1 {
    color: #000;
    position: relative;
    font-family: var(--font-family-cardo);
    line-height: 1;
    font-size: 52px;
    padding-left: 27px !important;
}

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

.default-title h2::after,
.default-title h1::after {
    display: block;
    content: "";
    position: absolute;
    left: 1.5px;
    top: 0;
    width: 1px;
    background: #000;
    opacity: 0.5;
    height: 100%;
    z-index: 1;
}

.default-title.--white h2::after,
.default-title.--white h1::after {
    background: #fff;
}

.default-title h2::before,
.default-title h1::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #000;
    opacity: 1;
    height: 50%;
    z-index: 2;
}

.default-title.--white h2::before,
.default-title.--white h1::before {
    background: #fff;
}

.default-title h2 span,
.default-title h1 span {
    display: block;
    font-family: var(--font-family-poppins);
    opacity: 0.7;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.default-button {}

.default-button a {
    font-weight: 500;
    line-height: 1;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 20px 0;
    display: inline-block;
    border-bottom: 1px solid var(--secondary);
    transition: var(--transition);
}

.default-button a:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 20px 27px;
}

/* Defaults */
/* Header */
.mainHeader {
    background-color: rgba(0, 0, 0, 0.929);
    transition: var(--transition);
    padding: 20px 0 19px;
    z-index: 1001;
    transition: var(--transition);
}

.mainHeader.headerFloat {
    top: -50%;
}

.mainHeader.fixedHeader {
    padding: 15px 30px;
    top: -50%;
}

.mainHeader.fixedHeader.fixedHeader--show {
    top: 0;
}

/* Logo */
.mainHeader .logo {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

.mainHeader.fixedHeader .logo {
    max-width: 135px;
    margin: 0;
    text-align: center;
}

.mainHeader .logo a {}

/* Logo */
/* Navigation */
.mainHeader .navigation {
    padding-top: 40px;
}

.mainHeader.fixedHeader .navigation {
    padding-top: 0;
}

.mainHeader .navigation ul {}

.mainHeader .navigation ul li {
    position: relative;
    padding: 0 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.149);
    ;
}

.mainHeader.fixedHeader .navigation ul li {
    border: none;
    padding: 0 20px;
}

.mainHeader .navigation ul li:first-child {
    border-left: none;
}

.mainHeader .navigation ul li a {
    color: #fff;
    font-size: min(0.875vw, 14px);
    line-height: 1.3;
    transition: var(--transition);
    text-transform: uppercase;
    display: block;
    font-family: var(--font-family-default);
}

.mainHeader .navigation ul li:hover a {
    color: #968833;
}

/* Sub Menu */
.navigation ul .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: auto;
    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;
    min-width: 146px;
    padding-top: 4px;
}

.navigation ul>li>.sub-menu {
    left: 50%;
    display: block;
    -webkit-transform: translate(-50%, 30px);
    -ms-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
}

.navigation ul .sub-menu li {
    display: block;
    padding: 0;
    border: none;
}

.navigation ul .sub-menu li:first-child {
    padding-top: 0.750vw;
}

.navigation ul .sub-menu li:last-child {
    padding-bottom: 0.750vw;
}

.navigation ul .sub-menu a {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 700;
    padding: 0.750vw 1.250vw;
    letter-spacing: 0.1em;
    transition: var(--transition);
    margin: 0;
    letter-spacing: 0.2em;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.749);
}

.navigation ul .sub-menu a::after {
    display: none !important;
}

.navigation ul .sub-menu li:last-child a {
    border-bottom: 0;
}

.navigation ul .sub-menu li:hover>a {
    text-decoration: none;
    background: var(--primary);
    font-weight: 700;
    color: #fff;
}

.navigation ul .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    padding: 0 0 0 1% !important;
}

.navigation ul 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);
}

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

.navigation ul .sub-menu li {
    position: relative;
    z-index: 1;
}

.navigation ul .sub-menu .sub-menu li a {
    color: #fff;
}

.navigation ul .sub-menu .sub-menu li:hover a {
    text-decoration: none;
    background: #000000;
    color: var(--primary);
    font-weight: 700;
}

/* Navigation */
/* Header */
.floatingSmi {
    z-index: 999;
    top: 110px;
    right: 30px;
}

.floatingSmi div {
    height: 100%;
}

.floatingSmi ul {}

.floatingSmi ul li {
    padding: 5px 0;
}

.floatingSmi ul li a {
    font-size: 0;
    display: block;
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.floatingSmi ul li a:hover {
    background: var(--primary);
}

.floatingSmi ul li a i {
    font-size: 16px;
}

/* Hero */
#hero {
    /*overflow: hidden;*/
}

/* Slideshow */
#hero .slideshow {}

#hero .slideshow::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.149);
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
}

/* Slideshow */
/* Tagline */
#hero .slideshow--tagline {
    text-align: center;
    z-index: 20;
}

#hero .slideshow--tagline .container {
    transform: translateY(8vw);
}

#hero .slideshow--tagline h1 {
    color: #fff;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    font-family: var(--font-family-cardo);
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: max(55px, 55px);
    text-transform: uppercase;
}

#hero .slideshow--tagline p {
    font-family: var(--font-family-title);
    font-size: 35px;
    color: #fff;
    margin-top: 10px;
    line-height: 1;
    margin-bottom: 32px;
}

#hero .slideshow--tagline p em {
    display: inline-block;
    margin: 0 22px;
}

#hero .slideshow--tagline button {
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
    transition: var(--transition);
}

#hero .slideshow--tagline button:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 20px 27px;
}

/* Tagline */
/* Quick Search */
#hero .hpQuickSearch {
    left: 0;
    bottom: -10vh;
    z-index: -1;
    transition: var(--transition);
}

#hero .hpQuickSearch .container {
    position: relative;
}

#hero .hpQuickSearch .hp-qs-close {
    color: #ffffff;
    position: absolute;
    right: 80px;
    top: -35px;
}

#hero .hpQuickSearch .hp-qs-close a:hover {
    color: var(--primary);
}

.hpQuickSearch .default-title {
    display: none;
}

#hero .hpQuickSearch.active {
    bottom: 87px;
    z-index: 20;
}

#hero .hpQuickSearch span.qs-span {
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 12px;
    text-align: center;
    display: block;
    padding: 22px 0 0;
}

#hero .hpQuickSearch form {
    margin: 0 -1.5px;
}

#hero .hpQuickSearch .hpQuickSearch--col {
    padding: 0 1.5px;
    width: 100%;
}

#hero .hpQuickSearch .hpQuickSearch--col:first-of-type {
    flex-shrink: 0;
    width: 38.51%;
}

#hero .hpQuickSearch .hpQuickSearch--col label {
    display: none;
}

#hero .hpQuickSearch .hpQuickSearch--col select {
    width: 100%;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    background: transparent;
    border: 1px solid #fff;
    appearance: none;
    height: 43px;
    padding: 0 18px;
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
}

#hero .hpQuickSearch .hpQuickSearch--col select option {
    color: #000 !important;
}

#hero .hpQuickSearch .hpQuickSearch--buttn {
    width: 36px;
    flex-shrink: 0;
    position: relative;
    margin-left: 21px;
}

#hero .hpQuickSearch .hpQuickSearch--buttn input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 0;
    background: transparent;
    border: none;
    z-index: 20;
}

#hero .hpQuickSearch .hpQuickSearch--buttn i {
    color: #fff;
    font-size: 30px;
}

/* Quick Search */
/* Contact Form */
#hero .bannerContactForm {
    background: #000;
    left: -329px;
    bottom: 0;
    z-index: 24;
    padding: 36px 26px;
    width: 329px;
    transition: var(--transition);
}

#hero .bannerContactForm .default-title h2 {
    font-size: 40px;
}

#hero .bannerContactForm.active {
    left: 0;
}

#hero .bannerContactForm .bannerForm--trigger {
    position: absolute;
    background: #000;
    top: 0;
    width: 50px;
    right: -49px;
    height: 200px;
    transition: var(--transition);
    cursor: pointer;
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .bannerContactForm.active .bannerForm--trigger,
#hero .bannerContactForm .bannerForm--trigger:hover {
    background: var(--primary);
}

#hero .bannerContactForm .bannerForm--trigger h2 {
    font-size: 17px;
    letter-spacing: 0.2em;
    color: #fff;
    /* position: absolute;
                transform: rotate(90deg);
                white-space: nowrap;
                transform-origin: top;
                top: 47%;
                left: -47%; */
    display: flex;
}

#hero .bannerContactForm .bannerForm--trigger h2 i {
    font-size: 16px;
    display: block;
    transform: rotate(270deg);
    transform-origin: revert;
    margin: 0 0 0;
    left: 3px;
    top: 5px;
    position: relative;
    transition: var(--transition);
}

#hero .bannerContactForm.active .bannerForm--trigger h2 i,
#hero .bannerContactForm .bannerForm--trigger:hover h2 i {
    transform: rotate(90deg);
}

#hero .bannerContactForm .default-title {
    padding-left: 20px;
}

#hero .bannerContactForm p {
    color: #fff;
    line-height: 1.4;
    font-size: 14px;
    text-align: center;
    padding: 28px 20px 10px;
}

/* Contact Form */
/* Hero */
/* About Us */
.hpAboutUs {
    padding: 109px 0 0;
}

.hpAboutUs .hpAboutUs--container {
    padding: 0 15%;
}

.hpAboutUs .hpAboutUs--image {
    width: 31.6%;
    flex-shrink: 0;
}

.hpAboutUs .hpAboutUs--content {
    margin-left: 7.64%;
    padding-top: 30px;
}

.hpAboutUs .hpAboutUs--content .default-title {
    padding-bottom: 24px;
}

.hpAboutUs .hpAboutUs--content p {
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    padding: 20px 0;
    text-align: justify;
}

.hpAboutUs .hpAboutUs--content .default-button {
    margin-top: 4px;
}

/* About Us */
/* Rankings */
.hpAgentRankings {
    padding: 99px 0 0;
}

.hpAgentRankings .hpAgentRankings--container {
    max-width: 1400px;
    padding: 0 43px;
    margin: 0 auto;
}

.hpAgentRankings ul {
    width: 100%;
}

/* .hpAgentRankings ul:first-child {
    width: fit-content;
    max-width: 90%;
    margin: auto;
} */

.hpAgentRankings ul li {
    text-align: center;
    padding: 20px 30px;
}

.hpAgentRankings ul:nth-child(2)>li {
    width: calc(100% / 5);
}

.hpAgentRankings ul li span {
    font-family: var(--font-family-poppins);
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.7;
}

.hpAgentRankings ul li h3 {
    font-family: var(--font-family-cardo);
    font-size: 25px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
}

/* Rankings */
/* Meet the Team */
.hpMeetTheTeam {
    padding: 99px 0;
}

.hpMeetTheTeam .hpMeetTheTeam--lists {
    margin: 52px 0;
}

.hpMeetTheTeam .hpMeetTheTeam--list {
    padding: 0 14px;
}

.hpMeetTheTeam .hpMeetTheTeam--list a {}

.hpMeetTheTeam .hpMeetTheTeam--list a .hpMeetTheTeam--img {
    border: 1px solid #cccccc;
}

.hpMeetTheTeam .hpMeetTheTeam--list a .hpMeetTheTeam--img canvas {
    background: #000;
}

.hpMeetTheTeam .hpMeetTheTeam--list a .hpMeetTheTeam--img img {
    transition: var(--transition);
}

.hpMeetTheTeam .hpMeetTheTeam--list a:hover .hpMeetTheTeam--img img {
    opacity: 0.7;
}

.hpMeetTheTeam .hpMeetTheTeam--list a .hpMeetTheTeam--content {
    text-align: center;
    padding: 34px 0 0;
}

.hpMeetTheTeam .hpMeetTheTeam--list a .hpMeetTheTeam--content h3 {
    font-family: var(--font-family-compass-serif);
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.hpMeetTheTeam .hpMeetTheTeam--list a .hpMeetTheTeam--content span {
    color: #555555;
    text-transform: uppercase;
    display: block;
    padding: 10px 0 0;
}

/* Meet the Team */
/* Nexus Relocation */
.nexusRelocation {
    background: #000;
    padding: 80px 0;
}

.nexusRelocation::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/nexus-effect-bg.jpg) no-repeat top left transparent;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.10;
}

.nexusRelocation .nexusRelocation--container {
    position: relative;
    z-index: 10;
    padding: 0 74px;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--img {
    width: 20%;
    /*  width: 25%; */
    max-width: 352px;
    flex-shrink: 0;
    margin: 0 8px;
    border: 5px solid #fff;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--img canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--img:first-child {
    margin-left: 0;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--img:first-child canvas {
    background-size: 115% auto;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--content {
    padding-left: 22px;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--content h3 {
    color: #ffffff;
    font-family: var(--font-family-cardo);
    line-height: 1;
    font-size: 25px;
    margin-top: 30px;
}

.nexusRelocation .nexusRelocation--container .nexusRelocation--content p {
    color: #fff;
    /*padding-top: 40px;*/
    padding-top: 25px;
    text-align: justify;
    line-height: 1.5;
}

/* Nexus Relocation */
/* Featured Properties */
.featuredProperties {
    padding: 150px 0 129px;
    overflow: hidden;
}

.featuredProperties::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(images/fp-bg.jpg) no-repeat center top transparent;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.15;
}

.featuredProperties .featuredProperties--container {
    z-index: 20;
    padding: 0 95px;
}

/* Title */
.featuredProperties .featuredProperties--list.featuredProperties--title {
    width: 31.14%;
}

.featuredProperties .featuredProperties--list.featuredProperties--title .default-button {
    margin-top: 51px;
}

/* Title */
/* Loop */
.featuredProperties .featuredProperties--list {
    width: calc(100% / 3);
    height: 251px;
    padding: 1px;
}

/* widths */
.featuredProperties .featuredProperties--list:nth-child(2),
.featuredProperties .featuredProperties--list:nth-child(7) {
    width: 30.142%;
}

.featuredProperties .featuredProperties--list:nth-child(3),
.featuredProperties .featuredProperties--list:nth-child(7) {
    width: 38.7%;
}

/* widths */
.featuredProperties .featuredProperties--list>a {
    height: 100%;
    color: #fff;
    background: #000;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.featuredProperties .featuredProperties--list>a:hover {
    transform: scale(1.2);
    z-index: 2;
}

/* Image */
.featuredProperties .featuredProperties--list a .featuredProperties--img {}

.featuredProperties .featuredProperties--list a .featuredProperties--img canvas {
    display: none;
}

.featuredProperties .featuredProperties--list a .featuredProperties--img img {
    filter: grayscale(1);
    opacity: 0.8;
    transition: var(--transition);
}

.featuredProperties .featuredProperties--list a:hover .featuredProperties--img img {
    filter: grayscale(0);
}

/* Image */
/* Content */
.featuredProperties .featuredProperties--list a .featuredProperties--content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 30px 25px;
}

.featuredProperties .featuredProperties--list a .featuredProperties--content h3 {
    font-size: 32px;
    line-height: 1;
}

.featuredProperties .featuredProperties--list a .featuredProperties--content p {
    font-size: 16px;
    line-height: 1;
    padding: 15px 0 0;
}

.featuredProperties .featuredProperties--list a .featuredProperties--content span {
    font-weight: 500;
    line-height: 1;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 30px;
    display: inline-block;
    transition: var(--transition);
    background: var(--primary);
    margin-bottom: 50px;
    opacity: 0;
}

.featuredProperties .featuredProperties--list a:hover .featuredProperties--content span {
    opacity: 1;
}

/* Content */
/* Loop */
/* Buttons */
.featuredProperties .featuredProperties--list.featuredProperties--buttons {
    width: 27.9%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.featuredProperties .featuredProperties--list.featuredProperties--buttons>div {
    margin: 5px 0;
}

/* Buttons */
/* Featured Properties */
/* Featured Neighborhoods */
.featuredNeighborhoods {
    padding: 120px 0 91px;
}

.featuredNeighborhoods--container {
    padding: 0 100px;
}

.featuredNeighborhoods::after {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 291px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: url(images/cn-bg.jpg) no-repeat top left transparent;
    background-size: cover;
    background-attachment: fixed;
}

.featuredNeighborhoods .featuredNeighborhoods--container {
    z-index: 20;
}

.featuredNeighborhoods .featuredNeighborhoods--lists {
    margin: 40px -1px;
}

.featuredNeighborhoods .featuredNeighborhoods--list {
    padding: 1px;
    width: calc(100% / 3);
}

.featuredNeighborhoods .featuredNeighborhoods--list a {
    color: #fff;
    overflow: hidden;
}

.featuredNeighborhoods .featuredNeighborhoods--list a .featuredNeighborhoods--image {
    z-index: 2;
}

.featuredNeighborhoods .featuredNeighborhoods--list a .featuredNeighborhoods--image::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transition: var(--transition);
    height: 100%;
    z-index: 10;
    background: var(--secondary);
    opacity: 0.4;
}

.featuredNeighborhoods .featuredNeighborhoods--list a:hover .featuredNeighborhoods--image::after {
    background: var(--primary);
    opacity: 0.8;
}

.featuredNeighborhoods .featuredNeighborhoods--list a .featuredNeighborhoods--image img {
    z-index: 5;
}

.featuredNeighborhoods .featuredNeighborhoods--list a .featuredNeighborhoods--content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.featuredNeighborhoods .featuredNeighborhoods--list a .featuredNeighborhoods--content h4 {
    font-family: var(--font-family-compass-serif);
    font-size: 25px;
    transition: var(--transition);
    position: relative;
    width: 100%;
    text-align: center;
}

.featuredNeighborhoods .featuredNeighborhoods--list a:hover .featuredNeighborhoods--content h4 {
    padding-bottom: 70px;
}

.featuredNeighborhoods .featuredNeighborhoods--list a .featuredNeighborhoods--content span {
    font-weight: 700;
    font-family: var(--font-family-default);
    line-height: 2;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--secondary);
    transition: var(--transition);
    background: var(--secondary);
    position: absolute;
    visibility: hidden;
    opacity: 0;
    height: 51px;
    width: 240px;
    margin-top: 150px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.featuredNeighborhoods .featuredNeighborhoods--list a:hover .featuredNeighborhoods--content span {
    visibility: visible;
    opacity: 1;
}

/* Featured Neighborhoods */
/* Featured Videos */
.featuredVideos {
    padding: 120px 0 90px;
}

.featuredVideos::after {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 440px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: url(images/video-bg.jpg) no-repeat top left transparent;
    background-size: cover;
    background-attachment: fixed;
}

.featuredVideos .featuredVideos--container {
    z-index: 20;
    /*max-width: 1100px;*/
    max-width: 810px;
    padding: 0 30px;
    margin: auto;
}

.featuredVideos .featuredVideos--lists {
    margin: 61px 0 40px;
}

.featuredVideos .featuredVideos--lists a {
    border: 5px solid #000000;
    pointer-events: none;
    position: relative
}

.featuredVideos .featuredVideos--lists a canvas {
    background: #000;
    display: block;
    width: 100%;
    height: auto;
}

.featuredVideos .featuredVideos--lists a img {
    transition: var(--transition);
}

.featuredVideos .featuredVideos--lists a iframe,
.featuredVideos .featuredVideos--lists a video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
}

.featuredVideos .featuredVideos--lists a:hover img {
    opacity: 0.8;
}

.featuredVideos .featuredVideos--lists a::after {
    display: none;
    content: "";
    width: 181px;
    height: 181px;
    background: url(images/playbttn.png) no-repeat center center transparent;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Featured Videos */
/* Follow Social */
.followSocial {
    padding: 90px 0 128px;
}

.followSocial::after {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 275px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    background: url(images/nexus-effect-bg.jpg) no-repeat top left transparent;
    background-size: cover;
    background-attachment: fixed;
    filter: grayscale(1);
    opacity: 0.1;
}

.followSocial::before {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 275px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: #000;
}

.followSocial .followSocial--container {
    z-index: 20;
}

.followSocial .followSocial--container .followSocial--text {
    width: 52%;
}

.followSocial .followSocial--container .followSocial--text p {
    color: #fff;
    font-family: var(--font-family-cardo);
    font-size: 25px;
    padding-left: 30px;
    padding-top: 36px;
    line-height: 1;
}

.followSocial .followSocial--container .followSocial--text ul {
    margin: 28px -7px 0;
    padding-left: 30px;
}

.followSocial .followSocial--container .followSocial--text ul li {
    padding: 0 5px;
}

.followSocial .followSocial--container .followSocial--text ul li a {
    font-size: 0;
    display: block;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.followSocial .followSocial--container .followSocial--text ul li a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.followSocial .followSocial--container .followSocial--text ul li a i {
    font-size: 16px;
}

.followSocial .followSocial--container .followSocial--lists {
    width: 49%;
    flex-shrink: 0;
    margin: -6px;
}

.followSocial .followSocial--container .followSocial--list {
    width: calc(100% / 2);
    padding: 6px;
}

.followSocial .followSocial--container .followSocial--list a {}

.followSocial .followSocial--container .followSocial--list a canvas {
    background: #000;
}

.followSocial .followSocial--container .followSocial--list a:hover img {
    transition: var(--transition);
    opacity: 0.7;
}

.followSocial .followSocial--container .followSocial--list a i {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 25px;
}

/* Follow Social */
/* Form */
.globalForm {
    background: url(images/globformbg.jpg) no-repeat center top transparent;
    background-size: cover;
    background-attachment: fixed;
    padding: 123px 0;
}

.globalForm .globalForm--wrap {
    padding: 0 142px;
}

.globalForm .globalForm--wrap p {
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 42px 0;
}

/* Form */
/* Footer */
.footer {
    padding: 70px 0 60px;
    background: url(images/footer-bg-02.jpg) no-repeat center top transparent;
    background-size: cover;
}

/* Logo */
.footer .footer--logo {
    max-width: 185px;
    margin: 0 auto;
}

/* Logo */
/* Details */
.footer .footer--details {
    padding: 50px 0 0;
}

.footer .footer--details h3 {
    font-family: var(--font-family-cardo);
    color: #fff;
    font-size: 25px;
    padding-bottom: 27px;
}

/* Nav */
.footer .footer--details .footer--nav {}

.footer .footer--details .footer--nav ul {}

.footer .footer--details .footer--nav li {}

.footer .footer--details .footer--nav li a {
    color: #fff;
    font-size: 12px;
    line-height: 2.3;
    text-transform: uppercase;
    transition: var(--transition);
}

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

/* Nav */
/* info */
.footer .footer--details .footer--contactInfo {}

.footer .footer--details .footer--contactInfo p {
    color: #fff;
    font-family: var(--font-family-cardo);
    font-size: 15px;
}

.footer .footer--details .footer--contactInfo ul {
    margin-top: 37px;
}

.footer .footer--details .footer--contactInfo li {
    display: flex;
    align-items: center;
    color: #fff;
    padding-bottom: 17px;
}

.footer .footer--details .footer--contactInfo li i {
    width: 43px;
    font-size: 12px;
}

.footer .footer--details .footer--contactInfo li i.ai-font-envelope-f {
    font-size: 10px;
}

.footer .footer--details .footer--contactInfo li a {
    color: #fff;
    font-size: 12px;
    transition: var(--transition);
}

.footer .footer--details .footer--contactInfo li a:hover {
    color: var(--primary);
}

/* Info */
/* Form */
.footer .footer--details .footer--getInTouch {
    width: 30.44%;
}

.footer .footer--details .footer--getInTouch .footer--newsletter {}

.footer .footer--details .footer--getInTouch .footer--newsletter form {
    width: 100%;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletter--container {
    display: flex;
    background: #fff;
    height: 44px;
    padding: 1px;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletter--container .footer--newsletterWrap {
    width: 100%;
}

.footer .footer--details .footer--getInTouch .footer--newsletter label {
    display: none;
}

.footer .footer--details .footer--getInTouch .footer--newsletter input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    height: 42px;
    font-size: 15px;
    color: #000000;
    padding: 0 20px;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletterWrap--submit {
    width: 50px;
    height: 42px;
    background: #000;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletterWrap--submit:hover {
    background: var(--primary);
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletterWrap--submit input {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0;
    width: 100%;
    height: 100%;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletterWrap--submit .wpcf7-spinner {
    position: absolute;
    top: -27px;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .footer--newsletterWrap--submit i {
    font-size: 14px;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
}

.footer .footer--details .footer--getInTouch .footer--newsletter .wpcf7-not-valid-tip {
    position: absolute;
    top: 50%;
    left: calc(100% - 29px);
    font-size: 0;
    background: url(images/error-icon.png) no-repeat 0 0 transparent;
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    background-size: 100%;
    transform: translate(0, -50%);
}

.footer .footer--details .footer--getInTouch ul {
    margin-top: 50px;
}

.footer .footer--details .footer--getInTouch ul li {
    padding: 0 20px;
}

.footer .footer--details .footer--getInTouch ul li:first-child {
    padding-left: 0;
}

.footer .footer--details .footer--getInTouch ul li a {
    color: #fff;
    font-size: 0;
}

.footer .footer--details .footer--getInTouch ul li a i {
    font-size: 22px;
    transition: var(--transition);
}

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

/* Form */
/* Details */
/* Disclaimer */
.footer .footer-disclaimer {
    color: #fff;
    margin-top: 90px;
}

.footer .footer-disclaimer i {
    display: block;
    font-size: 15px;
}

.footer .footer-disclaimer p {
    line-height: 1.7;
    letter-spacing: 0.03em;
    font-size: 12px;
    color: #cdcdcd;
    padding: 20px 0 0;
}

/* Dislclaimer */
/* Copyright */
.footer .footer-copyright {
    padding: 23px 0 0;
}

.footer .footer-copyright p {
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #fff;
}

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

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

.footer .footer-copyright p span {
    text-transform: uppercase;
}

.footer .footer-copyright .copyright-logos {
    margin-top: 33px;
}

.footer .footer-copyright .copyright-logos i {
    color: #fff;
    font-size: 23px;
    margin: 0 4px;
}

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

.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,
.page-id-15 #content hr+h2,
#content .aios-contact-title {
    font-family: var(--font-family-cardo);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    color: #000000;
    text-transform: none;
}

.post-page-contact-us #content .entry-title {
    margin: 50px 0;
}

#content .aios-contact-title span {
    display: block;
    font-family: var(--font-family-poppins);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-family: var(--font-family-title);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    color: #000000;
    text-transform: none;
}

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

.hpAboutUs,
.hpAgentRankings,
.hpMeetTheTeam,
.nexusRelocation,
.featuredProperties,
.featuredNeighborhoods,
.featuredVideos,
.followSocial,
.globalForm,
footer.footer {
    display: none;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    background: transparent;
    border: 1px solid #fff;
    appearance: none;
    height: 43px;
    padding: 0 18px;
    width: 100%;
    border-radius: 0;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.hp-quick-search .dropdown-menu.open {
    max-height: 300px !important;
}

.hp-quick-search ul.dropdown-menu.inner {
    max-height: 250px !important;
}

/*Meet Rubina*/
.meet-rubina-abt {
    text-align: justify;
}

/*Testimonials Button*/
.testimonials-button {
    text-align: center;
}

/*Agents Details*/
#agents-single .agents-description p {
    text-align: justify;
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-headings {
    justify-content: center !important;
}

/* Side Bar | Contact Us */
.side-bar-agent-profile {
    position: relative;
}

.side-bar-agent-profile .side-bar-agent-image img {
    width: 100%;
    object-fit: cover;
}

.sidebar {
    width: 30%;
}

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

.side-bar-agent-info {
    text-align: center;
}

.side-bar-agent-info h3 {
    font-family: var(--font-family-title);
    font-size: 2vw;
    margin: 0;
}

.side-bar-agent-info a {
    display: block;
    margin-bottom: 10px;
}

/* About US Page */
.page-id-15 #agents-results .agent-top {
    display: none;
}

.page-id-15 #content #agents-results .agents-name a {
    font-family: var(--font-family-cardo);
}

.page-id-15 #content h2:first-child {
    font-family: var(--font-family-cardo);
    font-size: 45px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.page-id-15 #content h2:first-child span {
    display: block;
    font-family: var(--font-family-default);
    font-size: 26px;
}

.page-id-15 #content h3 {
    font-family: var(--font-family-default);
    font-size: 26px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 5px;
}

.page-id-15 #content h3 em {
    font-style: normal;
}

.page-id-15 #inner-page-wrapper #breadcrumbs {
    padding: 0;
}

.page-id-22 .post-22>.entry-title {
    text-align: center;
}

/* Contact Us */
.page-id-12 .sidebar {
    width: 50%;
    margin-top: 10%;
}

.page-id-12 #content-sidebar #content {
    width: 50%;
}

/* IHF Pages */
.page-id-0 .sidebar {
    display: none;
}

.page-id-0 #content-sidebar #content {
    width: 100%;
}

.post-page-contact-us .aios-contact-title span {
    color: #333333;
}

/* .post-page-contact-us  #content h2.aios-contact-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-family-cardo);
} */
.post-page-contact-us .aios-contact-form-inner>p,
.post-page-contact-us .aios-contact-form input[type="text"],
.post-page-contact-us .aios-contact-form input[type="email"],
.post-page-contact-us .aios-contact-form textarea,
.post-page-contact-us .aios-contact-form input[type="submit"] {
    font-family: var(--font-family-poppins);
}

.post-page-contact-us .side-bar-agent-info {
    font-family: 'Cardo';
    font-size: 30px;
}

.post-page-contact-us .side-bar-agent-info h3 {
    margin: 10px 0 20px !important;
    font-size: 25px !important;
    line-height: 1;
}

.post-page-contact-us .side-bar-agent-info a {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 0;
    color: #000;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.post-page-contact-us .side-bar-agent-info a:hover {
    color: var(--primary);
}

.post-page-contact-us .side-bar-agent-info span {
    display: block;
    margin-bottom: 10px;
}

.post-page-contact-us .side-bar-contact {
    font-size: 0;
}

.post-page-contact-us .wpcf7 form .wpcf7-response-output {
    color: #000000;
}

.post-page-contact-us .contact-page-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.post-page-contact-us .contact-page-container .side-bar-agent-profile {
    width: 35%;
    margin-top: 50px;
    max-width: 270px;
}

.post-page-contact-us .contact-page-container .side-bar-agent-profile img {
    max-width: 270px;
    height: 400px;
}

.post-page-contact-us .contact-page-container .aidefcf-wrapper {
    width: 40%;
}

.post-page-contact-us .contact-page-container .wpcf7-submit {
    background-color: transparent !important;
    border: 2px solid #c1b283;
    transition: all ease .4s;
    color: #c1b283 !important;
}

.post-page-contact-us .contact-page-container .wpcf7-submit:hover {
    background-color: #c1b283 !important;
    color: #ffffff !important;
}

/*intro pop up*/
.aiosp-content.aios-popup-body.newsletter-popup-body {
    padding: 0 !important;
    min-height: auto !important;
    width: 95% !important;
    max-width: 1140px;
    border: 1px solid var(--primary);
    background: #000 !important;
}

div#introNewsletterPopup {
    position: relative;
    z-index: 5;
}

div#introNewsletterPopup::after,
div#introNewsletterPopup::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 71.617%;
    height: 62.5%;
    background: var(--primary);
    z-index: -1;
    pointer-events: none;
}

div#introNewsletterPopup::before {
    top: auto;
    left: auto;
    bottom: -20px;
    right: -20px;
}

.aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close {
    opacity: 1;
    font-size: 0;
    top: 25px;
    right: 25px;
}

.aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close::after {
    content: "\b0241";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 29px;
    color: #fff;
    width: 100%;
    height: 100%;
    font-family: 'agentimage';
}

.aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close:hover {
    opacity: .5;
}

.ip-holder {
    position: relative;
    z-index: 5;
    padding: 87px 15px 70px;
    background: #000;
}

.ip-holder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/ip-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: .75;
    z-index: -1;
}

.ip-title {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-family-poppins);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: inline-block;
    text-align: left;
}

.ip-title span {
    display: block;
    font-size: 65px;
    font-family: var(--font-family-cardo);
    letter-spacing: 0;
    text-transform: capitalize;
    margin-top: 8px;
}

.ip-head {
    text-align: center;
    margin-bottom: 35px;
}

.ip-form {
    max-width: 852px;
    margin: 0 auto;
}

.ip_form_row {
    margin: 0 -10px;
}

.ip_form_col {
    width: 100%;
    padding: 4px 10px;
}

.ip_form_col label {
    display: none;
}

.ip_form_col input {
    font-size: 15px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    height: 51px;
    width: 100%;
    outline: none;
}

.ip_form_col textarea {
    font-size: 15px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    height: 103px;
    width: 100%;
    outline: none;
    margin-top: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    resize: none;
}

.ip_form_col .wpcf7-not-valid-tip {
    position: absolute;
    display: block;
    width: auto;
    left: 0;
}

.ip_form_col .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ip-form form {
    position: relative;
}

.ip-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    margin: 0;
}

.ip-form .cf-submit {
    margin-top: 42px;
}

.post-page-contact-us .aios-contact-form-inner {
    margin-left: auto;
    margin-right: 30px;
}

.agents-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    width: auto;
}

.aios-contact-form div.wpcf7 .wpcf7-spinner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.agents-popup-form .wpcf7 form .wpcf7-response-output,
.aios-contact-form div.wpcf7-response-output {
    color: #000000 !important;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    font-size: 12px;
    left: 1em !important;
    right: inherit !important;
}

#listings-details .listings-form textarea {
    padding-right: 30px !important;
}

.single-aios-communities #inner-page-wrapper>.container {
    /*width: 100%;*/
}

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

#aios-communities-quantum .aioscomu-txt {
    font-family: serif !important;
}

/* Inner Page Quick Search */
#inner-page-wrapper .ipQuickSearch {
    left: 0;
    bottom: -10vh;
    z-index: -1;
    transition: var(--transition);
}

#inner-page-wrapper .ipQuickSearch .container {
    position: relative;
}

#inner-page-wrapper .ipQuickSearch .ip-qs-close {
    color: #0000;
    position: absolute;
    right: 80px;
    top: -35px;
}

#inner-page-wrapper .ipQuickSearch .ip-qs-close a:hover {
    color: var(--primary);
}

.ipQuickSearch .default-title {
    display: none;
}

#inner-page-wrapper .ipQuickSearch.active {
    bottom: 87px;
    z-index: 20;
}

#inner-page-wrapper .ipQuickSearch span.qs-span {
    color: #000;
    letter-spacing: 0.1em;
    font-size: 12px;
    text-align: center;
    display: block;
    padding: 22px 0 0;
}

#inner-page-wrapper .ipQuickSearch form {
    margin: 0 -1.5px;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--col {
    padding: 0 1.5px;
    width: 100%;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--col:first-child {
    flex-shrink: 0;
    width: 38.51%;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--col label {
    /*display: none;*/
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--col select {
    width: 100%;
    color: #000;
    font-size: 13px;
    letter-spacing: 0.1em;
    background: transparent;
    border: 1px solid #000;
    appearance: none;
    height: 43px;
    padding: 0 18px;
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--col select option {
    color: #000 !important;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--buttn {
    width: 36px;
    flex-shrink: 0;
    position: relative;
    margin-left: 21px;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--buttn input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 0;
    background: transparent;
    border: none;
    z-index: 20;
}

#inner-page-wrapper .ipQuickSearch .ipQuickSearch--buttn i {
    color: #000;
    font-size: 30px;
}

.ip-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    background: transparent;
    border: 1px solid #000;
    appearance: none;
    height: 43px;
    padding: 0 18px;
    width: 100%;
    border-radius: 0;
}

.ip-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
    color: #000;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.ip-quick-search .dropdown-menu.open {
    max-height: 300px !important;
}

.ip-quick-search ul.dropdown-menu.inner {
    max-height: 250px !important;
}

#content .agent-entry-content,
#main-wrapper #aios-testimonials .aios-testimonials-lists .aios-testimonials-content {
    font-size: 16px;
    letter-spacing: 0px;
}

#ihf-main-container .modal-header,
#ihf-user-registration-container .btn-primary,
#ihf-user-registration-login-form .btn-primary {
    background-color: rgba(0, 0, 0, 0.929) !important;
}

.single-aios-communities .ipQuickSearch {
    display: none !important;
}

.text-verbiage-justify {
    text-align: justify;
}

/* Inner Page Quick Search */
/* post launch */
.btn-group {
    max-width: 437px;
}

span.filter-option.pull-left {
    text-overflow: ellipsis;
}

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

#aios-communities-quantum .aioscomu-img img {
    filter: brightness(0.7);
}

body.page-id-6 #inner-page-wrapper .wpcf7-response-output,
body.page-id-8 #inner-page-wrapper .wpcf7-response-output,
body.page-id-10 #inner-page-wrapper .wpcf7-response-output {
    color: #000;
}

body.page-id-379 .ai-contact-wrap span.context-mob a:hover,
body.page-id-379 .ai-contact-wrap span.context-email a:hover {
    color: #978732;
}

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

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

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

#content .aios-custom-ihomefinder-template-img-loader img {
    object-fit: contain;
}

#agents-single .agents-info .awards {
    margin-left: 15px;
    margin-top: 30px;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */