/*



Theme Name: Blake and Ali Poore Team



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



 *



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

 @font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Bold.woff2') format('woff2'), url('fonts/Author/Author-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-BoldItalic.woff2') format('woff2'), url('fonts/Author/Author-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Regular.woff2') format('woff2'), url('fonts/Author/Author-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-ExtralightItalic.woff2') format('woff2'), url('fonts/Author/Author-ExtralightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-SemiboldItalic.woff2') format('woff2'), url('fonts/Author/Author-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-LightItalic.woff2') format('woff2'), url('fonts/Author/Author-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Light.woff2') format('woff2'), url('fonts/Author/Author-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Medium.woff2') format('woff2'), url('fonts/Author/Author-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Extralight.woff2') format('woff2'), url('fonts/Author/Author-Extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Semibold.woff2') format('woff2'), url('fonts/Author/Author-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-MediumItalic.woff2') format('woff2'), url('fonts/Author/Author-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author/Author-Italic.woff2') format('woff2'), url('fonts/Author/Author-Italic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

:root {
    /** Font default */
    --body-font: 'Author', sans-serif;
    --title-font: 'Playfair Display', serif;
    --font-size-default: 17px;
    --font-size-title: 72x;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary-color: #000000;
    --secondary-color: #666666;
    --primary: #000000;
    --secondary: #666666;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}


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



 *



 * 2. Navigation



 *



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


/* Sub Menu */

#nav li {
    position: relative;
    display: inline-block;
    margin-right: 47px;
}

#nav li a {
    font-size: 14px;
    letter-spacing: 0.200em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    font-weight: 400;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#nav>li>a:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

#nav>li:focus-within>a:before,
#nav>li:hover>a:before {
    opacity: 1;
    width: 100%;
}

#nav li:last-child {
    margin-right: 0;
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 198px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(33px);
    -ms-transform: translateX(-50%) translateY(33px);
    transform: translateX(-50%) translateY(33px);
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 33px;
}

#nav .sub-menu li a {
    display: block;
    padding: 10px 5px;
    color: #fff;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu>li {
    position: relative;
    display: block;
    background-color: rgba(0, 0, 0, .90);
    margin: 0 auto 1px;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

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

#nav .sub-menu li:hover>a {
    color: #000;
    text-decoration: none;
}

#nav li:focus-within>.sub-menu,
#nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(-50%) translateY(0) !important;
    -ms-transform: translateX(-50%) translateY(0) !important;
    transform: translateX(-50%) translateY(0) !important;
}

#nav li>.sub-menu .sub-menu {
    margin-left: calc(100% + 1px);
    top: 0;
    padding-top: 0 !important;
}


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



 *



 * 3. Custom CSS



 *



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


/* Global */

body {
    font-family: var(--body-font);
    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; */
}


/*CSS Reset*/

a,
a:hover,
a:visited,
a:focus,
textarea {
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

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

.slick-track * {
    outline: none;
}

select::-ms-expand {
    display: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

[class*="ai-icon-"] {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#main-wrapper {
    overflow: hidden;
}

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

.attachment-fixed canvas {
    background-attachment: fixed !important;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-img {
    display: block;
    position: relative;
}

.site-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.site-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

.is-mobile {
    display: none !important;
}


/*Global Title*/

.global-title {
    display: block;
    position: relative;
    z-index: 2;
}

.global-title h2 {
    display: block;
    position: relative;
}

.global-title h2>span {
    font-size: 72px;
    line-height: 1;
    font-family: var(--title-font);
    font-weight: 500;
    color: #000;
}

.global-title h2>small {
    font-size: 19px;
    line-height: 1;
    display: block;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.570em;
    margin-bottom: 10px;
}

.global-accent-logo {
    position: absolute;
    bottom: -14px;
    left: 0;
    opacity: .06;
    /*    width: 663px;*/
    width: 171px;
    height: auto;
    pointer-events: none;
}

.global-title.is-white h2>span {
    color: #fff;
}

.global-title.is-white .global-accent-logo {
    opacity: 0.06;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.global-title.is-center .global-accent-logo {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
}


/*Global Button*/

.global-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    max-width: 270px;
    background-color: transparent;
    border: 1px solid #cbcbcb;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    letter-spacing: 0.250em;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    padding: 0 5px 5px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.global-slide-btn a {
    max-width: 100%;
}

.global-btn:before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: 1px solid #cbcbcb;
    z-index: -1;
}

.global-btn:hover,
.global-btn:focus,
.global-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
    padding-bottom: 0;
}

.global-btn.is-white {
    color: #fff;
    border-color: rgba(255, 255, 255, .70);
}

.global-btn.is-white:before {
    border: 1px solid rgba(255, 255, 255, .70);
    z-index: auto;
}


/*Global Slide Control*/

.global-slide-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.global-slide-control button {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    letter-spacing: 0.250em;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    background-color: transparent;
}

.global-slide-btn {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 34px;
    width: 155px;
    max-width: 100%;
}

.global-slide-control button:hover {
    color: #666;
}


/*Fixed Header*/

.header-wrapper.active {
    background-color: rgba(0, 0, 0, .90);
    padding: 8px 0;
    min-height: 100px;
}

.header-wrapper.active .logo img {
    max-width: 148px;
}

.header-wrapper.active #nav li:hover>.sub-menu {
    -webkit-transform: translateX(-50%) translateY(43px);
    -ms-transform: translateX(-50%) translateY(43px);
    transform: translateX(-50%) translateY(43px);
    padding-top: 43px;
}


/* Header */

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 39px 0;
}

.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-nav {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 auto;
}

.header-wrapper>.container {
    width: 100%;
    /* max-width: 1510px; */
    padding: 0 60px;
}

.header-broker-logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: 0;
    margin-right: 80px;
}

.header-broker-logo img {
    max-width: 100%;
    height: auto;
}

.logo {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.logo a {
    display: block;
    position: relative;
}

.logo img {
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.logo a img.default-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
}

.logo a img.fixed-logo {
    opacity: 0;
}

header.header-wrapper.active .logo a img.default-logo {
    opacity: 0;
    pointer-events: none;
}

header.header-wrapper.active .logo a img.fixed-logo {
    opacity: 1;
}


/*Slideshow*/

.slideshow-container,
.slideshow-wrapper {
    display: block;
    position: relative;
}

.slideshow-container {
    /*overflow: hidden;*/
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img {
    background-color: #000;
    height: 100%;
}

.slideshow-container #aios-slider-hp-slideshow .aios-slider-splide .aios-slider-img canvas {
    min-height: 100vh;
}

.slideshow-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.slideshow-container:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    pointer-events: none;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide,
.slideshow-container .splide__track,
.slideshow-container .splide__track--fade>.splide__list,
.slideshow-container .splide__track--fade>.splide__list>.splide__slide {
    height: 100%;
}

.slideshow-wrapper canvas{
    width: 100%;
    min-height: 100vh;
}

.slideshow-wrapper img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    pointer-events: none;
}


/* Slideshow Tagline */

.slideshow-tagline {
    position: absolute;
    top: 49%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    pointer-events: none;
    z-index: 5;
}

.slideshow-tagline-text {
    display: inline-block;
    pointer-events: auto;
    position: relative;
}

.slideshow-tagline-text>span {
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.570em;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    text-align: right;
    margin-right: -95px;
    font-weight: 300;
}

.slideshow-tagline-text h2 {
    font-size: 95px;
    line-height: 1;
    font-family: var(--title-font);
    color: #fff;
    margin-left: -158px;
}

.slideshow-tagline-text h2 span {
    display: block;
    text-align: right;
    margin-right: -158px;
}


/*Burger Menu*/

.burger-menu-wrap {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1000;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.burger-menu-icon {
    cursor: pointer;
    position: relative;
    pointer-events: none;
    background-color: transparent;
}

.burger-menu-icon span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #fff;
    left: 0;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    top: 0;
    left: 0;
    margin: 0 auto;
}

.bm-lines {
    display: block;
    width: 41px;
    height: 23px;
    position: relative;
    margin: 0 auto;
    pointer-events: auto;
}

.bm-text {
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.050em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.burger-menu-icon.active .bm-text {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.burger-menu-icon:hover .bm-lines span {
    opacity: 0.75;
}

.burger-menu-icon span:nth-child(2) {
    top: 10px;
}

.burger-menu-icon span:last-child {
    bottom: 0;
    top: auto;
}

.burger-menu-icon.active span:nth-child(1) {
    width: 100%;
    -webkit-transform: translate(0px, 11px) rotate(45deg);
    -ms-transform: translate(0px, 11px) rotate(45deg);
    transform: translate(0px, 11px) rotate(45deg);
}

.burger-menu-icon.active span:nth-child(2) {
    width: 100%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.burger-menu-icon.active span:nth-child(3) {
    width: 100%;
    -webkit-transform: translate(0px, -9px) rotate(-45deg);
    -ms-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}


/*Side Menu*/

html.burger-menu-active {
    overflow: hidden !important;
}

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

.side-menu.active .side-menu-bg {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.side-menu-bar,
.side-menu-overlay {
    height: 100% !important;
}

.side-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 786px;
    max-width: 483px;
    width: 100%;
    height: 100%;
    z-index: 1056;
    background-color: var(--primary-color);
    -o-transition: all ease .6s;
    -webkit-transition: all ease .6s;
    transition: all ease .6s;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}

.side-menu-bg .simplebar-scrollbar:before {
    background: #eee;
}

.side-menu-container {
    width: 100%;
    position: relative;
    height: 100%;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1054;
    width: 100%;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
    opacity: 0;
}

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

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

.side-menu.active .side-menu-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.side-menu-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 160px 50px 50px 157px;
    padding: 160px 50px 50px 50px;
    overflow-y: auto;
    overflow-x: hidden;
}

.side-menu-inner {
    width: 100%;
}

.sidemenu-nav>li>a {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    position: relative;
    font-family: var(--title-font);
    text-transform: uppercase;
    display: inline-block;
}

.sidemenu-nav>li.menu-item-has-children>a:after {
    content: '';
    padding: initial;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #ffffff transparent transparent transparent;
    top: 11px;
    right: -25px;
    position: absolute;
    margin-left: 11px;
}

.sidemenu-nav>li>a:hover {
    color: #666;
}

.sidemenu-nav .sub-menu {
    padding-top: 23px;
    /*    padding-left: 12px;*/
    padding-left: 0;
    display: none;
}

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

.sidemenu-nav .sub-menu li a {
    color: #939393;
    font-size: 17px;
    letter-spacing: 0.050em;
    line-height: 1;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

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

.sidemenu-nav {
    position: relative;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.sidemenu-nav:not(:last-child) {
    /*    margin-right: 80px;*/
}

.sidemenu-nav>li {
    text-align: center;
    margin-bottom: 38px;
}


/*.sidemenu-nav > li:last-child {



    margin-bottom: 0;



}*/

.side-menu-nav {
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    -webkit-transition: 1s all ease-in-out;
    -o-transition: 1s all ease-in-out;
    transition: 1s all ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.side-menu-main-bg {
    position: absolute;
    bottom: 7%;
    right: 0;
    width: 83.843%;
    height: 171px;
    pointer-events: none;
}

.side-menu-main-bg>div {
    width: 100%;
    height: 100%;
}

.side-menu-main-bg canvas {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .06;
    filter: brightness(0) invert(1);
}

.side-menu-nav,
.side-menu-main-bg canvas,
.side-menu-main-bg>div,
.sidemenu-nav>li>ul,
.sidemenu-nav>li,
.sidemenu-nav .sub-menu li,
.side-menu-inner {
    display: block;
    position: relative;
}


/*Quick Search*/

.qs-disclaimer,
.qs-form form,
.qs-main,
.qs-btn {
    display: block;
    position: relative;
}

.qs-btn {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.qs-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 0 38px;
    z-index: 10;
    font-size: 0;
    pointer-events: none;
}

.qs-container .custom-container {
    max-width: 1115px;
}

.qs-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 66px;
    max-width: 333px;
    border: 1px solid rgba(255, 255, 255, .60);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.250em;
    text-transform: uppercase;
    margin: 0 auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    pointer-events: auto;
}

.qs-form form {
    padding: 25px;
    background-color: #000;
}

.qs-field {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 0.096%;
}

.qs-field.has-caret:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid #fff;
    pointer-events: none;
}

.qs-field>input:not([type=submit]),
.qs-field>select {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .55);
    font-size: 17px;
    letter-spacing: 0.050em;
    color: #fff;
    line-height: normal;
    padding: 0 30px 0 15px;
    font-weight: 300;
}

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

.qs-field.submit button {
    font-size: 0;
    background-color: transparent;
    border: none;
    padding: 0;
    background-image: url(images/ai-magnifying-icon.png);
    width: 100%;
    height: 30px;
}

.qs-field.submit button:hover {
    opacity: .75;
}

.qs-field.long {
    width: 24.154%;
}

.qs-field.short-b,
.qs-field.short-i {
    width: 11.594%;
}

.qs-field.submit {
    width: 2.898%;
    margin: 0 auto;
}

.qs-field.short-i.fl-r {
    margin-right: 1.932%;
}

.qs-close {
    position: absolute;
    top: -24px;
    right: -24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 5;
    border: none;
    font-size: 17px;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    padding: 0;
}

.qs-close:hover {
    background-color: #000;
    color: #fff;
}

.qs-form {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    margin-top: 37px;
    position: relative;
}

.qs-form.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.qs-btn a:hover,
.qs-btn a.active {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.qs-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.050em;
    line-height: 1;
    margin-top: 10px;
    font-weight: 300;
}


/* HP Areas */

.hp-areas-container {
    display: block;
    position: relative;
    font-size: 0;
}

.hp-areas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hp-map-container,
.hp-map-wrapper,
.hp-map-content,
.hp-map-main,
.hp-map-list-areas li.hp-map-list-title {
    display: block;
    position: relative;
}

.hp-map-main-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 15px 70px;
}

.hp-map-main-btn {
    width: 100%;
    max-width: 330px;
    padding: 15px;
}

.hp-map-main-btn .global-btn {
    max-width: 300px;
}

.hp-map-choices-list-item,
.hp-map-choices-item {
    display: none;
}

.hp-map-choices-list-item.active,
.hp-map-choices-item.active {
    display: block;
}

.hp-map-choices-item.hp-map-choices-item2 {
    margin: -43px 0 0;
}

.hp-map-container {
    z-index: 3;
    overflow: hidden;
    padding: 85px 0 0;
}

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

.hp-map-list-areas {
    display: inline-block;
    position: relative;
}

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

.hp-map-content {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.hp-map-content .global-title {
    margin-bottom: 40px;
}

.hp-map-content .global-title .global-accent-logo {
    /*    bottom: -56px;*/
    top: -56px;
}

.hp-map-list-areas ul {
    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;
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1245px;
}

.hp-map-list-areas li.hp-map-list-title {
    z-index: 1;
    font-size: 18px;
    letter-spacing: 0.100em;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-weight: 400;
    pointer-events: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 13px;
}

.hp-map-list-areas li.hp-map-list-title:before {
    position: absolute;
    content: '';
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    pointer-events: none;
}

.hp-map-list-areas li[data-map-target="hanover"]:before,
.hp-map-list-areas li[data-map-target="petersburg"]:before,
.hp-map-list-areas li[data-map-target="hopewell"]:before,
.hp-map-list-areas li[data-map-target="lancaster"]:before,
.hp-map-list-areas li[data-map-target="essex"]:before {
    display: none;
}

.hp-map-list-areas li.hp-map-list-title a:before {
    opacity: 0;
}

.hp-map-list-areas li.hp-map-list-title:hover a:before,
.hp-map-list-areas li.hp-map-list-title.active a:before {
    opacity: 1;
}

.hp-map-list-areas li.hp-map-list-title a {
    pointer-events: auto;
    border: none;
    height: 39px;
    padding: 5px 19px;
    font-size: 22px;
    letter-spacing: 0.080em;
    font-weight: 600;
}

.hp-map-list-areas li.hp-map-list-title a:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    background: -o-linear-gradient(left, rgba(17, 34, 76, 1) 0%, rgba(11, 23, 51, 1) 33%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(17, 34, 76, 1)), color-stop(33%, rgba(11, 23, 51, 1)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(17, 34, 76, 1) 0%, rgba(11, 23, 51, 1) 33%, rgba(0, 0, 0, 0) 100%);
}

.hp-map-list-areas li.hp-map-list-title:hover a,
.hp-map-list-areas li.hp-map-list-title.active a {
    color: #fff;
    background-color: #000;
}

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

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

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

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

.hp-map-pin.is-lg span {
    font-size: 16px;
}

.hp-map-hovers>div.active .hp-map-pin span {
    color: #fff;
    text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(0, 0, 0) -0.832294px 1.81859px 0px, rgb(0, 0, 0) -1.60229px 1.19694px 0px, rgb(0, 0, 0) -1.97998px 0.28224px 0px, rgb(0, 0, 0) -1.87291px -0.701566px 0px, rgb(0, 0, 0) -1.30729px -1.5136px 0px, rgb(0, 0, 0) -0.421592px -1.95506px 0px, rgb(0, 0, 0) 0.567324px -1.91785px 0px, rgb(0, 0, 0) 1.41734px -1.41108px 0px, rgb(0, 0, 0) 1.92034px -0.558831px 0px;
}

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

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

.hp-map-area-links {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

.hp-map-area-links>div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.hp-map-link {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    text-align: left;
    white-space: nowrap;
}

.hp-map-link a {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.100em;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    text-shadow: rgb(114 114 114) 1px 0px 0px, rgb(137 137 137) 0.540302px 0.841471px 0px, rgb(197 197 197) -0.416147px 0.909297px 0px, rgb(224, 224, 224) -0.989992px 0.14112px 0px, rgb(224, 224, 224) -0.653644px -0.756802px 0px, rgb(224, 224, 224) 0.283662px -0.958924px 0px, rgb(224, 224, 224) 0.96017px -0.279415px 0px;
    /* text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.20), rgb(201 201 201) 1px 0px 0px, rgb(160, 156, 156) 0.540302px 0.841471px 0px, rgb(160, 156, 156) -0.416147px 0.909297px 0px, rgb(160, 156, 156) -0.989992px 0.14112px 0px, rgb(160, 156, 156) -0.653644px -0.756802px 0px, rgb(160, 156, 156) 0.283662px -0.958924px 0px, rgb(160, 156, 156) 0.96017px -0.279415px 0px; */
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.hp-map-area-links>div.active .hp-map-link a {
    color: #fff;
    text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(0, 0, 0) -0.832294px 1.81859px 0px, rgb(0, 0, 0) -1.60229px 1.19694px 0px, rgb(0, 0, 0) -1.97998px 0.28224px 0px, rgb(0, 0, 0) -1.87291px -0.701566px 0px, rgb(0, 0, 0) -1.30729px -1.5136px 0px, rgb(0, 0, 0) -0.421592px -1.95506px 0px, rgb(0, 0, 0) 0.567324px -1.91785px 0px, rgb(0, 0, 0) 1.41734px -1.41108px 0px, rgb(0, 0, 0) 1.92034px -0.558831px 0px;
}

.hp-map-link.is-right a:before {
    left: auto;
    right: 0;
}

.hp-map-link.is-right a {
    padding-left: 0;
    padding-right: 20px;
}

.hp-map-link a:before {
    content: '';
    background-image: url(images/map/ai-pin-icon-b.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 27px;
    position: absolute;
    top: -2px;
    left: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.hp-map-area-links .active .hp-map-link a:before {
    filter: invert(1);
}

.hp-map-area-links>div.town-of-king-william .hp-map-link a,
.hp-map-area-links>div.central-garage .hp-map-link a,
.hp-map-area-links>div.chickahominy-shores .hp-map-link a,
.hp-map-area-links>div.west-point .hp-map-link a {
    text-align: right;
}

.hp-map-area-links>div.central-garage .hp-map-link a:before,
.hp-map-area-links>div.town-of-king-william .hp-map-link a:before,
.hp-map-area-links>div.town-of-charles-city .hp-map-link a:before,
.hp-map-area-links>div.chickahominy-shores .hp-map-link a:before,
.hp-map-area-links>div.amelia-court-house .hp-map-link a:before,
.hp-map-area-links>div.town-of-new-kent .hp-map-link a:before,
.hp-map-area-links>div.west-point .hp-map-link a:before,
.hp-map-area-links>div.providence-forge .hp-map-link a:before,
.hp-map-area-links>div.north-highland-park .hp-map-link a:before,
.hp-map-area-links>div.highland-springs .hp-map-link a:before,
.hp-map-area-links>div.rocketts-landing .hp-map-link a:before {
    top: 4px;
}


/*Featured Properties*/

.fp-container,
.fp-main,
.fp-row,
.fp-slide-holder,
.fp-slide,
.fp-item a,
.fp-content-container,
.fp-title,
.fp-content-slider,
.fp-address,
.fp-info,
.fp-more-btn {
    display: block;
    position: relative;
}

.fp-container {
    font-size: 0;
    padding: 0;
    margin-top: 106px;
}

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

.fp-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.fp-img canvas {
    min-height: 614px;
}

.fp-slide-control {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 36px 0 25px 40px;
    background-color: #fff;
}

.fp-content-container {
    padding: 100px 50px 50px 124px;
    height: 100%;
    overflow: hidden;
}

.fp-content-container .global-accent-logo {
    bottom: auto;
    top: 16%;
    left: 23.5%;
}

.fp-title span {
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.570em;
    color: #000;
    text-transform: uppercase;
}

.fp-col:first-child {
    width: 55.654%;
}

.fp-col:last-child {
    width: 44.346%;
}

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

.fp-content-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.fp-address h2 {
    font-size: 72px;
    color: #000;
    line-height: 1;
    font-family: var(--title-font);
}

.fp-info span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 19px;
    letter-spacing: 0.050em;
    color: #000;
}

.fp-address {
    margin-bottom: 40px;
}

.fp-info span em {
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    letter-spacing: 0.050em;
    margin-left: 10px;
}

.fp-info span:not(:last-child) {
    margin-right: 30px;
}

.fp-info {
    margin-bottom: 47px;
}

.fp-more-btn {
    padding-left: 5px;
}

.fp-slide:not(.slick-initialized) .fp-item:nth-child(n+2),
.fp-content-slider:not(.slick-initialized) .fp-content-item:nth-child(n+2) {
    display: none;
}


/* Meet the Team */

.mtt-container {
    display: block;
    position: relative;
    z-index: 3;
    background: #fff;
    font-size: 0;
    padding: 110px 0 0;
}

.mtt-wrapper {
    display: block;
    position: relative;
}

.mtt-title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 85px;
    z-index: 3;
}

.mtt-title .global-title.is-center .global-accent-logo {
    bottom: -50px;
}

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

.mtt-map-main {
    position: relative;
    width: 1600px;
    overflow: hidden;
}

.mtt-map-hovers {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    pointer-events: none;
}

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

.mtt-map-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    pointer-events: none;
    z-index: 4;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    overflow: hidden;
    background-color: rgba(0, 0, 0, .90);
}

.mtt-map-hovers > div.active .mtt-map-hover-info {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.mtt-map-hover-title {
    display: block;
    position: relative;
    padding: 31px 0;
    max-width: 100%;
    width: 285px;
    min-width: 100%;
    text-align: center;
}

.mtt-map-hover-title h2 {
    display: block;
    position: relative;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--title-font);
}

.mtt-map-hover-title span {
    display: block;
    position: relative;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.350em;
    color: #7c7c7c;
    text-transform: uppercase;
}

.mtt-map-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    width: 132px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: .06;
}

.mtt-map-icon img {
    max-width: 100%;
    height: auto;
}

.mtt-img-hover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

.mtt-img-hover > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
}

.mtt-agent-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mtt-img-hover > div.active .mtt-agent-img {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mtt-map-hovers > div.agent-2 .mtt-map-hover-title,
.mtt-map-hovers > div.agent-3 .mtt-map-hover-title {
    padding: 30px 0 15px;
}

.mtt-map-hovers > div.agent-3 .mtt-map-hover-title {
    width: 409px;
}


/*hovers*/

.mtt-map-hovers > div.agent-1 .mtt-map-hover-info {
    /*top: 409px;

    left: 1012px;*/
    /*top: 195px;
    left: 809px;*/
    top: 115px;
    left: 914px;
}

.mtt-map-hovers > div.agent-2 .mtt-map-hover-info {
    /* top: 325px;

    left: 799px;*/
    top: 160px;
    left: 252px;
}

.mtt-map-hovers > div.agent-3 .mtt-map-hover-info {
    /*top: 415px;

    left: 608px;*/
    top: 370px;
    left: 400px;
}

.mtt-map-hovers > div.agent-4 .mtt-map-hover-info {
    /*top: 428px;

    left: 560px;*/
   /* top: 450px;
    left: 930px;*/
    top: 412px;
    left: 999px;
}

.mtt-map-hovers > div.agent-5 .mtt-map-hover-info {
    /*top: 331px;

    left: 483px;*/
   /* top: 305px;
    left: 495px;*/
    top: 276px;
    left: 639px;
}

.mtt-map-hovers > div.agent-6 .mtt-map-hover-info {
    /* top: 422px;

    left: 385px;*/
    /*top: 163px;
    left: 600px;*/
    top: 210px;
    left: 780px;
}

.mtt-map-hovers > div.agent-7 .mtt-map-hover-info {
    /* top: 310px;

    left: 316px;*/
    top: 290px;
    left: 1230px;
}

.mtt-map-hovers > div.agent-8 .mtt-map-hover-info {
    /*top: 409px;

    left: 223px;*/
    top: 253px;
    left: 1274px;
}


/*.mtt-map-hovers > div.agent-9 .mtt-map-hover-info {

    top: 289px;

    left: 124px;

}*/


/* .mtt-map-hovers > div.agent-10 .mtt-map-hover-info {

    top: 290px;

    left: 122px;

} */


/*Image hover*/

.mtt-img-hover > div.agent-1 .mtt-agent-img {
    /*top: 86px;

    left: 1012px;*/
    /*top: 50px;
    left: 850px;*/
}

.mtt-img-hover > div.agent-2 .mtt-agent-img {
    /*top: 102px;

    left: 834px;*/
    /*top: 37px;
    left: 72px;*/
}

.mtt-img-hover > div.agent-3 .mtt-agent-img {
    /*top: 120px;

    left: 712px;*/
    /*top: 275px;
    left: 332px;*/
}

.mtt-img-hover > div.agent-4 .mtt-agent-img {
    /*top: 122px;

    left: 625px;*/
    /*top: 301px;
    left: 888px;*/
}

.mtt-img-hover > div.agent-5 .mtt-agent-img {
    /*top: 178px;

    left: 547px;*/
   /* top: 178px;
    left: 556px;*/
    top: 139px;
    left: 705px;
}

.mtt-img-hover > div.agent-6 .mtt-agent-img {
    /*top: 162px;

    left: 472px;*/
   /* top: 44px;
    left: 627px;*/
}

.mtt-img-hover > div.agent-7 .mtt-agent-img {
    /* top: 170px;

    left: 374px;*/
    top: 71px;
    left: 1233px;
}

.mtt-img-hover > div.agent-8 .mtt-agent-img {
    /*top: 178px;

    left: 298px;*/
    top: 111px;
    left: 1281px;
}


/*.mtt-img-hover > div.agent-9 .mtt-agent-img {

    top: 154px;

    left: 209px;

}*/


/* .mtt-img-hover > div.agent-10 .mtt-agent-img {

    top: 141px;

    left: 204px;

} */


.mtt-img-hover > div.agent-1 .mtt-agent-img {
    top: 29px;
    left: 966px;
}

.mtt-img-hover > div.agent-2 .mtt-agent-img {
    top: 15px;
    left: 279px;
}

.mtt-img-hover > div.agent-3 .mtt-agent-img {
    top: 226px;
    left: 508px;
}
.mtt-img-hover > div.agent-4 .mtt-agent-img {
    top: 240px;
    left: 998px;
}

.mtt-img-hover > div.agent-6 .mtt-agent-img {
    top: 24px;
    left: 735px;
}


/*Testimonials*/

.testi-container,
.testi-main,
.testi-slide,
.testi-content {
    display: block;
    position: relative;
}

.testi-container {
    font-size: 0;
    padding: 130px 0 96px;
}

.testi-bg {
    background-color: #fff;
}

.testi-bg canvas {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .10;
}

.testi-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.testi-main {
    z-index: 5;
}

.testi-item {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% / 2);
    position: relative;
    padding: 0 3.5%;
    opacity: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.slick-slide.slick-current.slick-active .testi-item {
    opacity: 1;
}

.testi-slide {
    margin: 0 -105% 0 -4.5%;
}

.testi-slide .slick-list {
    overflow: visible;
}

.slick-slide.slick-current.slick-active+.slick-slide .testi-item {
    opacity: .20;
}

.testi-slide:not(.slick-initialized) .testi-item:nth-child(n+2) {
    display: none;
}

.testi-content p {
    font-size: 63px;
    line-height: 1.143;
    color: #000;
    font-family: var(--title-font);
    display: block;
    width: 96%;
}

.testi-icon {
    position: absolute;
    top: -70px;
    right: calc(100% - 120px);
    width: 252px;
    height: 197px;
    pointer-events: none;
}

.testi-icon img {
    max-width: 100%;
    height: auto;
}

.testi-container .custom-container {
    max-width: 1190px;
}

.testi-disclaimer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 45px auto 0;
}

.testi-disclaimer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
}

.testi-disclaimer span {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #484848;
    display: inline-block;
    vertical-align: middle;
    margin: 0 16px;
}

.testi-disclaimer span span {
    margin: 0 20px;
}

.testi-disclaimer span:first-of-type {
    margin-left: 0;
}

.testi-slide-control .global-slide-btn {
    width: 325px;
}

.testi-disclaimer a {
    display: inline-block;
    position: relative;
}

.testi-disclaimer a img {
    max-width: 100%;
    height: auto;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}


/*Social Media*/

.sm-container,
.sm-main,
.sm-smis-list,
.sm-list,
.sm-item a,
.sm-more-btn {
    display: block;
    position: relative;
}

.sm-container {
    font-size: 0;
    padding: 160px 0 74px;
}

.sm-top-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.sm-smis-list ul {
    display: block;
    position: relative;
}

.sm-smis-list ul li {
    display: inline-block;
    vertical-align: middle;
    width: 39px;
    height: 39px;
    position: relative;
}

.sm-smis-list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000;
    font-size: 20px;
    color: #fff;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sm-smis-list ul li:not(:last-child) {
    margin-right: 13px;
}

.sm-smis-list ul li a:hover {
    background-color: #666;
}

.sm-item {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% / 6);
    position: relative;
    padding: 0 4px;
}

.sm-item a span.ai-font-facebook {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 30px;
    color: #fff;
    line-height: 1;
    z-index: 5;
}

.sm-item a:hover img {
    opacity: .50;
}

.sm-img {
    background-color: #000;
    overflow: hidden;
}

.sm-img img {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.sm-smis-list {
    margin-bottom: 5px;
}

.sm-list {
    margin: 0 -4px;
}

.sm-more-btn a {
    margin: 0 auto;
}

.sm-more-btn {
    margin: 77px auto 0;
}


/*Blogs*/

.blog-container,
.blog-main,
.blog-list,
.blog-img,
.blog-content,
.blog-btn {
    display: block;
    position: relative;
}

.blog-container {
    padding: 140px 0 70px;
    font-size: 0;
}

.blog-bg {
    background-color: #fff;
}

.blog-bg canvas {
    opacity: .10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.blog-top-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
    z-index: 5;
}

.blog-more-btn {
    display: inline-block;
    vertical-align: middle;
    width: 270px;
    max-width: 100%;
    margin-bottom: 5px;
}

.blog-more-btn a {
    max-width: 100%;
}

.blog-top-holder .global-title {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.blog-main {
    z-index: 5;
}

.blog-item {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% / 3);
    position: relative;
    padding: 0 5px;
    vertical-align: top;
}

.blog-container .custom-container {
    max-width: 1170px;
}

.blog-list {
    margin: 0 -5px;
}

.blog-content p {
    font-size: 26px;
    line-height: 1.2;
    color: #000;
    font-family: var(--title-font);
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: pre-wrap;
}

.blog-content {
    padding: 25px 0 40px;
}

.blog-btn a {
    max-width: 170px;
    margin-left: auto;
    margin-right: 48px;
}

.blog-btn a:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 100%;
    width: 100vw;
    height: 1px;
    background-color: #cbcbcb;
    pointer-events: none;
}

.blog-btn {
    overflow: hidden;
    padding-top: 5px;
}

.blog-btn a:before {
    opacity: 0;
    visibility: hidden;
}

.blog-btn a {
    border: none;
}

.blog-btn a:hover:before {
    opacity: 1;
    visibility: visible;
}

.blog-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    pointer-events: none;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.blog-top-holder .global-accent-logo {
    left: -20px;
}

.blog-img a {
    background-color: #000;
    overflow: hidden;
}

.blog-img a:hover img {
    opacity: .80;
}

.blog-img a img {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}


/*Newsletter*/

.fn-container,
.fn-main,
.fn-caption,
.fn-form-widget,
.fn-form-widget form {
    display: block;
    position: relative;
}

.fn-container {
    padding: 140px 0 127px;
    font-size: 0;
}

.fn-bg {
    background-color: #000;
}

.fn-bg canvas {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .30;
}

.fn-container .custom-container {
    max-width: 1170px;
}

.fn-main .global-title {
    margin-bottom: 45px;
}

.fn-main .global-accent-logo {
    left: 54px;
    bottom: -25px;
}

.fn-caption p {
    font-size: 17px;
    line-height: 1.412;
    letter-spacing: 0.050em;
    color: #fff;
    font-weight: 300;
}

.fn-caption {
    width: 77%;
    margin-bottom: 30px;
}

.fn-form-field.form-submit button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    max-width: 100%;
    background-color: transparent;
    border: 1px solid #cbcbcb;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.250em;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    padding: 0 5px 5px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fn-form-field.form-submit button span {
    position: relative;
    z-index: 2;
}

.fn-form-field.form-submit button:before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: 1px solid #cbcbcb;
}

.fn-form-field.form-submit button:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    pointer-events: none;
}

.fn-form-field.form-submit button:hover {
    border-color: #000;
    color: #fff;
}

.fn-form-field.form-submit button:hover:after {
    opacity: 1;
    visibility: visible;
}

.fn-form-field.form-submit button:hover:before {
    border-color: #000;
}

.fn-form-field {
    display: inline-block;
    vertical-align: middle;
    width: calc(75.438% - 10px);
    position: relative;
}

.fn-form-field input:not([type=submit]) {
    width: 100%;
    height: 58px;
    background-color: #fff;
    border: none;
    font-size: 17px;
    line-height: normal;
    letter-spacing: 0.050em;
    color: #818181;
    padding: 0 17px;
}

.fn-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fn-form-field.form-submit {
    width: calc(24.562% - 10px);
}

.fn-form-widget div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.fn-form-widget .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -43px;
    left: 0;
    width: 100%;
    font-size: 13px;
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
}

.fn-form-widget .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
}

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


/*Footer*/

.footer-copyright {
    display: block;
    position: relative;
    padding: 85px 0 110px;
    font-size: 0;
    overflow: hidden;
    background-color: #000;
    z-index: 2;
}

.footer-copyright .custom-container {
    max-width: 1170px;
}

.footer-logo:not(:last-child) {
    margin-right: 45px;
}

.footer-logo-holder {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 46px;
}

.footer-logo {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

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

.footer-logo a img {
    margin-top: 0;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-top: 25px;
}

.footer-contacts {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.footer-contacts span:not(:last-child) {
    border-right: 1px solid #aaaaaa;
}

.footer-contacts span:first-child {
    padding-left: 0;
}

.footer-contacts span:last-child {
    padding-right: 0;
}

.footer-contacts span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #fff;
    font-size: 19px;
    letter-spacing: 0.050em;
    line-height: 1;
    padding: 0 22px;
}

.footer-contacts span a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-contacts span a:hover {
    color: var(--secondary-color);
}

.footer-contacts span a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    position: relative;
}

.footer-smis {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

.footer-smis ul {
    display: block;
    position: relative;
}

.footer-smis ul {
    display: block;
    position: relative;
}

.footer-smis ul li {
    display: inline-block;
    vertical-align: middle;
    width: 39px;
    height: 39px;
    position: relative;
}

.footer-smis ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #000;
    font-size: 20px;
    color: #fff;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-smis ul li:not(:last-child) {
    margin-right: 13px;
}

.footer-smis ul li a:hover {
    border-color: #666;
    background-color: #666;
    color: #fff;
}


/*Copyright*/

.footer-accent-logo {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
    pointer-events: none;
    width: 497px;
    height: 498px;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .05;
}

.footer-disclaimer {
    display: block;
    position: relative;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 15px;
    line-height: 1.334;
    letter-spacing: 0.050em;
    color: #fff;
    font-weight: 300;
}

.footer-disclaimer p a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
}

.footer-disclaimer p a:hover {
    color: var(--secondary-color);
}

.footernav {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.footernav li {
    margin: 0 30px 15px;
}

.footernav li a {
    font-size: 15px;
    line-height: 1.334;
    letter-spacing: 0.050em;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    transition: all .3s ease;
}

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

.footer-broker-logo {
    margin-bottom: 30px;
    margin-top: 20px;
    text-align: center;
}

.footer-broker-logo a {
    display: inline-block;
    font-size: 0;
    transition: opacity .3s ease;
}

.footer-broker-logo a:hover {
    opacity: 0.3;
}

.footer-broker-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.copyright {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    position: relative;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .30);
    padding-top: 24px;
    margin-top: 27px;
}

.copyright span {
    text-transform: uppercase;
}

.copyright a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
}

.copyright a+a {
    color: #fff;
}

.copyright a:hover {
    color: var(--secondary-color);
}

.mls-logo {
    position: relative;
    display: block;
    text-align: center;
}

.mls-logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    color: #fff;
    margin: 0 6px;
}

.mls-logo span:first-child {
    margin-left: 0;
}

.mls-logo span:last-child {
    margin-right: 0;
}

.mls-logo span.ai-font-realtor-mls {
    font-size: 30px;
}


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



 *



 * 4. IP Styles



 *



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

.ip-container #breadcrumbs {
    font-size: 17px;
    letter-spacing: 0.100em;
    text-transform: uppercase;
}

.ip-container #breadcrumbs span.breadcrumb_last {
    color: var(--primary-color);
    font-weight: 500;
}

.ip-banner {
    position: relative;
    overflow: hidden;
}

.ip-banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

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

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

.ip-banner h1 {
    font-weight: 400;
    font-size: 45px;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

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


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

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


/* Adjust width of sidebar */

.sidebar {
    width: 23.83%;
    margin-top: 80px;
}


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

body.single-page.postid-0 h1.entry-title,
#content .entry-title,
#content .archive-title,
.page-id-21 #content .aios-contact-title,
#content .ai-modern-blog-title {
    font-size: 72px;
    line-height: 1;
    font-family: var(--title-font);
    font-weight: 500;
    color: #000;
}

#content .entry {
    font-size: 17px;
    line-height: 1.412;
    letter-spacing: 0.050em;
    color: #000;
    font-weight: 300;
}


/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {
    font-size: 32px;
    line-height: 1;
    font-family: var(--title-font);
    font-weight: 500;
    color: #000;
}

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

.row.archive-list {
    display: flex;
    flex-flow: row wrap;
}

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;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

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

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

.post-page-meet-the-team #content #agents-results .agents-button,
.single-aios-agents #agents-single .agents-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    max-width: 270px;
    background-color: transparent;
    border: 1px solid #cbcbcb;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    letter-spacing: 0.250em;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    padding: 0 5px 5px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.post-page-meet-the-team #content #agents-results .agents-button:before,
.single-aios-agents #agents-single .agents-button:before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: 1px solid #cbcbcb;
    z-index: -1;
}

.post-page-meet-the-team #content #agents-results .agents-button:hover,
.post-page-meet-the-team #content #agents-results .agents-button:focus,
.post-page-meet-the-team #content #agents-results .agents-button.active,
.single-aios-agents #agents-single .agents-button:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    padding-bottom: 0;
}

.single-aios-agents #agents-single .agents-img,
.single-aios-agents #agents-single .agents-right .agents-description-line {
    background: #000;
}

body #content #agents-results .agents-name a:hover {
    color: #666;
}

body #agents-results .agents-contact li a:hover {
    color: #000;
}

button.global-btn.agent-single-form-submit {
    margin: 0 auto;
    max-width: 200px;
}

body.single-aios-agents .wpcf7-spinner {
    bottom: -19px;
}

body.single-aios-agents .wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 10px auto 0;
    font-size: 13px;
}

body.single-aios-agents .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
}

body #agents-results .agent-top {
    margin: 0;
}

body #inner-page-wrapper #breadcrumbs {
    padding: 0;
}

.ai-contact-wrap span.context-mob em.ai-font-mobile-a {
    min-width: 25px;
    font-size: 18px;
}

.aios-rm-buyers-template-default #inner-page-wrapper,
.aios-rm-sellers-template-default #inner-page-wrapper {
    margin-bottom: 0;
}

.aios-rm-buyers-template-default #inner-page-wrapper:before,
.aios-rm-sellers-template-default #inner-page-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url(images/testi-bg.jpg) center/cover no-repeat;
    background-attachment: fixed;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .10;
}

.financing-imgs {
    margin: 0 -84px;
}

.financing-imgs p {
    margin: 0 !important;
}

.single-post .entry-thumbnail {
    display: none;
}

/* section#hp-areas,
section#social-media,
section#blogs,
footer.footer {
    display: none;
}

section#featured-properties,
section#testimonials {
    opacity: 0;
} */

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 0;
    padding: 0 30px 0 15px;
    outline: none!important;
    box-shadow: none!important;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 17px;
    letter-spacing: 0.050em;
    color: #fff;
    line-height: normal;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 95%;
}

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

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

body.single-aios-communities #ip-cd-tab4 .ip-cd-box-item .site-img:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 100%;
    height: 100%;
    background-image: url(images/new-monogram-logo-white.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0) invert(1);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
}

body.single-aios-communities #ip-cd-tab4 .ip-cd-box-item a:hover .site-img:before {
    opacity: .10;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.1);
}

body.single-aios-communities #ip-cd-tab4 .ip-cd-box-item canvas {
    background: rgba(0, 0, 0, .90);
}

.amh-fixed-header-nav {
    display: none;
}

.page-id-399 article#content div.page > h1.entry-title,
.page-id-701 article#content div.page > h1.entry-title {
    /*display: block;*/
}

.page-id-399 #inner-page-wrapper > .container,
.page-id-701 #inner-page-wrapper > .container {
    /*max-width: 1170px;*/
    max-width: 1380px;
    width: 100%;
    padding: 0 15px;
}

.aios-custom-ihomefinder-results-template p#breadcrumbs {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px !important;
}

.page-id-701 .entry-content center {
    text-transform: uppercase;
    letter-spacing: 0.100em;
    font-weight: 400;
}

.page-id-701 .entry-content center a {
    font-weight: 500;
}

.page-id-701 .entry-content center a:hover {
    text-decoration: underline;
    color: #000;
}

.page-id-701 .ip-listing-title {
    display: flex;
    justify-content: center;
    position: relative;
    flex-flow: column wrap;
    align-items: center;
}

body.single-post .custom-breadcrumbs {
    margin: 20px 0;
}

body.single-post .ip-banner .custom-breadcrumbs {
    display: none;
}

body #ihf-main-container.ihf-modal-container .modal input[type=submit],
body #ihf-main-container.ihf-modal-container .modal button[type=submit] {
    border: 1px solid #d1d1d1;
    color: #858585;
}

body #ihf-main-container.ihf-modal-container .modal input[type=submit].active,
body #ihf-main-container.ihf-modal-container .modal input[type=submit]:hover,
body #ihf-main-container.ihf-modal-container .modal button[type=submit].active,
body #ihf-main-container.ihf-modal-container .modal button[type=submit]:hover,
body #ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout:hover {
    background-color: #000!important;
    border-color: #000!important;
    color: #fff!important;
}

body.page-id-21 .aios-contact-form input[type="submit"]:hover {
    color: #fff;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li span.page-numbers.current {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li span.page-numbers.current:before,
body .aiosCommunitiesGalaxy .ai-communities-pagination ul li span.page-numbers.current:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border: 1px solid #cbcbcb;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li span.page-numbers.current:after {
    top: 3px;
    left: -3px;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul {
    flex-flow: row wrap;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li a:before,
body .aiosCommunitiesGalaxy .ai-communities-pagination ul li a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border: 1px solid #cbcbcb;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li a {
    position: relative;
    z-index: 2;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li a:after {
    top: 3px;
    left: -3px;
    z-index: -2;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li:hover a:before,
body .aiosCommunitiesGalaxy .ai-communities-pagination ul li:hover a:after {
    opacity: 1;
    visibility: visible;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li:hover a:before {
    background-color: #000;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li:hover a {
    color: #fff;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li a:before {
    z-index: -1;
}

body .aiosCommunitiesGalaxy .ai-communities-pagination ul li:hover a i {
    color: #fff;
}

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

body.aios-custom-ihomefinder-details-template.ihf-details-template #ihf-mortgage-calculator-tab-content .col-xs-12.col-sm-3 .row {
    margin: 0;
}

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

.ip-listing-pagination ul li::marker {
    display: none;
}

.ip-listing-pagination ul li {
    display: inline-block;
    position: relative;
}

#content .ip-listing-pagination ul {
    margin: 0;
}

.aiosCommunitiesGalaxy__col a {
    display: block;
    position: relative;
}

body.aios-custom-ihomefinder-details-template.ihf-details-template #inner-page-wrapper #breadcrumbs {
    display: none;
}

body.page-id-21 .aios-contact-form div.wpcf7-response-output {
    font-size: 12px;
    margin: 10px auto 0;
}

body .ihf-board-disclaimer-text,
body .ihf-board-update-text {
    padding: 0 15px;
}

body .ihf-board-update-text {
    margin-bottom: 30px;
}

body.aios-custom-ihomefinder-results-template.aios-custom-ihomefinder-template.ihf-results-template .ihf-board-disclaimer-text {
    max-width: 1380px;
    margin: 0 auto;
}

body.aios-custom-ihomefinder-results-template.aios-custom-ihomefinder-template.ihf-results-template .ihf-board-update-text {
    max-width: 1380px;
    margin: 0 auto 30px;
}

.footer-disclaimer p:not(:last-child) {
    margin-bottom: 15px;
}

#content .ip-comm-list ul {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 25px;
    font-size: 22px;
    line-height: 1.2;
}

#content .ip-comm-list h2 {
    font-family: var(--title-font);
    font-size: 50px;
    line-height: 1;
}

#content .ip-text-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 19px;
}

#content .ip-text-content p {
    line-height: 1.412;
}

#content .custom-title {
    text-align: center;
    position: relative;
}

#content .custom-title h2 {
    display: inline-block;
    position: relative;
}

body.single-page.postid-0 h1.entry-title {
    position: relative;
}

body.single-page.postid-0 h1.entry-title:before,
#content .custom-title h2::before {
    content: '';
    width: 213px;
    height: 213px;
    background: url(https://cdn.agentimagehosting.com/VWaHh7hBpt52xtqLeGMcn/2023/11/monogram-lg.png) no-repeat center / contain;
    position: absolute;
    right: 0;
    bottom: -61px;
    opacity: 0.06;
}

#content .ip-text-content p.is-center {
    text-align: center;
    display: block;
    font-size: 21px;
    text-transform: uppercase;
}

#content .ip-text-content strong {
    font-weight: 600;
}

#content .ip-text-content p.is-center a {
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    color: inherit;
    position: relative;
}

#content .ip-text-content p.is-center a:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

#content .ip-text-content p.is-center a:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#content .ip-text-content p.is-center:nth-of-type(1) {
    margin-top: 68px!important;
    display: block;
}

#content .ip-text-content ul,
#content .ip-text-content ol {
    list-style-type: none;
}

body.page-id-399 #content .ip-listing-title h1,
body.page-id-701 #content .ip-listing-title h1 {
    display: none;
}

body.page-id-399 #content .ip-listings,
body.page-id-701 #content .ip-listings {
    padding-top: 0;
}

body.page-id-399 #content .new-btn-listing-ip,
body.page-id-701 #content .new-btn-listing-ip {
    padding: 0!important;
}

body.single-page.postid-0 h1.entry-title {
    margin: 49px 0 30px;
    display: inline-block;
}

body.single-page.postid-0 .ai-classic-single-share {
    display: none;
}

body.single-page.postid-0 #inner-page-wrapper #breadcrumbs {
    margin: 20px 0;
}

body.single-page.postid-0 #ihf-contact-confirmation {
    font-size: 17px;
    padding: 3px;
    border: 2px solid #46b450;
    text-align: center;
}

body.single-page.postid-0 #ihf-contact-confirmation br {
    display: none;
}

body.single-page.postid-0 .ai-classic-single-pagination {
    display: none;
}

.page-id-701 .for-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    justify-content: flex-start;
    flex-flow: row wrap;
    width: 100%;
}

.page-id-701 .for-btn-wrap {
    max-width: 830px;
    margin: 40px auto 0 auto;
}

.page-id-701 .for-btn-wrap .global-btn {
    max-width: 170px;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-flow: row wrap;
}

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

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

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

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

.content-top {
    margin-bottom: 60px;
}

.post-page-featured-listings #content .entry-title span {
    display: block;
    font-size: 18px;
    font-family: var(--body-font);
    margin-top: 20px;
    text-align: center;
}

/* .ip-banner:not(.custom-comm) {
    display: none;
} */

.ip-banner.custom-comm {
    display: none;
}

.ip-banner .for-meet-team {
    display: none;
}

.ip-listing-pagination {
    width: 100%;
}

#content .archive-subtitle {
    margin-top: 0;
}


.single-post #inner-page-wrapper .container .ai-classic-single-content h2 {
    font-size: 24px;
    font-weight: 600;
}
.single-post #inner-page-wrapper .container h3{
    font-size: 20px;
    font-weight: 500;
}
.single-post #inner-page-wrapper ol,.single-post #inner-page-wrapper ul {
    list-style: disc;
    padding-left: 30px;
}
.single-post #inner-page-wrapper .container .ai-classic-single-content h2.entry-title {
    font-size: 75px;
    font-weight: 700;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */