/*
Theme Name: nicolebeauchamp.com
Theme URI: http://aios3-staging.agentimage.com/n/nicolebeauchamp.com/htdocs
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.3.6
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
*/

/*

1. CSS RESET
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. CSS RESET
 *
 *******************************************************/

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font: 16px/1 sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
    margin: 0;
    padding: 0;
}

header, section, footer,
aside, nav, main, article,
figure, li {
    display: block;
}

h1,
h2,
h3,
h4 {
    font-size: inherit;
}

strong {
    font-weight: bold;
}

a,
button {
    color: inherit;
    transition: .3s;
}

a {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    color: #ff0000;
}

button {
    overflow: visible;
    border: 0;
    font: inherit;
    -webkit-font-smoothing: inherit;
    letter-spacing: inherit;
    background: none;
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border: 0;
}

:focus {
    outline: 0;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

/* removing select arrow from all browser */
select::-ms-expand {
    display: none;
}

select {
    background: transparent url('images/arrow-down.png') no-repeat;
    background-position: right 7px center;
}

/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

:root {
    --font-size-default: 15px;
    --font-size-title: 18px;
    --font-color-default: #666666;
    --font-color-title: #000000;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    background: #FFF;
    color: #221f1f;
    margin: 0;
}

#main-wrapper {
    overflow: hidden;
}

h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: #221f1f;
}

.h2-last {
    color: #ff0000;
}

.thin-text {
    font-weight: 300;
}

/** Header ***/
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding-top: 28px;
    background: transparent url(images/header-light-shadow.png) center no-repeat;
}

/** Logo **/
.logo-wrapper {
    text-align: center;
    margin-top: 12px;
}

.logo-wrapper img {
    max-width: 226px;
}

/** Header Contact **/
.header-contact {
    text-align: right;
}

span.smi {
    position: relative;
    bottom: 2px;
    top: 2px;
}

span.smi a, span.header-email a {
    color: #ff0000;
    font-size: 0px;
}

span.smi a:hover,
span.header-email a:hover {
    opacity: .60;
}

span.header-email a {
    display: inline-block;
    vertical-align: middle;
}

span.smi a::before, span.header-email a::before {
    font-size: 21px;
    vertical-align: bottom;
    margin: 0px 4px;
}

span.header-email a::before {
    font-size: 14px;
    vertical-align: baseline;
    margin-right: 11px;
}

span.smi a img {
    width: 15px;
    position: relative;
    top: 2px;
    margin: 0 4px;
}

span.header-phone {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
}

/*** Main Nav ***/
header nav, #static-nav {
    text-align: right;
    margin-top: 20px;
}

#nav li:hover .sub-menu, #static-nav li:hover .sub-menu {
    display: none;
}

#nav > li, #static-nav > li {
    display: inline-block;
    margin-left: 43px;
    position: relative;
}

#nav > li > a, #static-nav > li > a {
    padding-bottom: 39px;
    text-shadow: -1px -1px 1px #fff;
}

#nav li a, #static-nav li a {
    color: #555555;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
}

#nav > li:hover > a,
#static-nav > li:hover > a {
    color: #ff0000;
}

/*** Sub Menu ***/
#nav .sub-menu, #static-nav .sub-menu {
    background: rgba(0, 0, 0, 0.7);
    width: 180px;
    display: none;
}

#nav > li > .sub-menu, #static-nav > li > .sub-menu {
    position: absolute;
    left: 50%;
    margin-left: -90px;
    text-align: center;
}

#nav .sub-menu a:hover, #static-nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #ff0000;
    color: #fff;
}

/*** Fixed Header ***/
.fixed-header {
    position: fixed;
    top: -500px;
    left: 0;
    right: 0;
    padding-top: 6px;
    z-index: 1031;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-box-shadow: 0px 1px 11px #bfbfbf;
    box-shadow: 0px 1px 11px #bfbfbf;
}

#static-nav {
    margin-top: 27px;
}

#static-nav li a {
    padding-bottom: 32px;
}

#static-nav .sub-menu a {
    padding: 10px;
    color: #fff;
}

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

.fix-header {
    top: 0px;
}

#nav li,
#static-nav li {
    position: relative;
}

/*** Slideshow ***/
.cycloneslider-template-responsive {
    margin-bottom: 0px !important;
}

.slideshow-slider {
    position: relative;
}

.slideshow-slider .aios-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-slider > canvas {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 1600 / 1066;
}

/*** Welcome ***/
#welcome {
    overflow: hidden;
}

section#welcome {
    text-align: right;
    background: transparent;
    margin-top: -43%;
    position: relative;
}

section#welcome .welcome-title {
    padding-bottom: 52px;
    margin-bottom: 54px;
    position: relative;
    background: url(images/triangle-sm.png) top right no-repeat;
    padding-top: 241px;
    z-index: 103;
}

section#welcome .welcome-title::after {
    content: '';
    display: block;
    width: 3000px;
    height: 1px;
    position: absolute;
    background: url(images/faded-border-bottom-right.png) left no-repeat;
    bottom: 0;
}

section#welcome .welcome-title .smi {
    display: none;
}

.welcome-content {
    position: relative;
    z-index: 103;
}

.welcome-content p {
    font-size: 12px;
    color: #777777;
    line-height: 1.7em;
    margin-bottom: 28px;
    font-weight: 300;
}

/*** Triangle ***/
#welcome .tr-r, #welcome .tr-r-d {
    padding-top: 56px;
    padding-bottom: 270px;
    position: relative;
    overflow: hidden;
    background: url(images/triangle-sm.png) right no-repeat;
}

#welcome .tr-r:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 134%;
    height: 100%;
    background-color: #fff;
    -webkit-transform-origin: 90% 100%;
    -ms-transform-origin: 90% 100%;
    transform-origin: 90% 100%;
    -webkit-transform: rotate(-23deg);
    -ms-transform: rotate(-23deg);
    transform: rotate(-23deg);
    z-index: 100;
}

/*** Section 2 ***/
.section-2 {
    position: relative;
    z-index: 100;
    overflow: hidden;
    padding-top: 460px;
    padding-bottom: 600px;
    margin-top: -52%;
    background: url(images/buliding_bg.png) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

/*** CTA ***/
#cta a, .cta a {
    background: #221f1f;
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 30px 10px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}

#cta a:hover, .cta a:hover {
    background: #ff0000;
}

/*** Featured Neighborhood ***/
#featured-neighborhoods {
    position: relative;
}

#featured-neighborhoods h2 {
    margin-top: 50px;
    margin-bottom: 50px;
}

ul.fn {
    font-size: 0px;
    margin-top: 50px;
    flex-wrap: wrap;
    display: flex;
}

ul.fn li {
    display: inline-block;
    /* width: 14.285%; */
    text-align: center;
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    padding: 0px 12px;
    height: 56px;
    border: 1px solid #c7c7c7;
    margin-bottom: 5px;
    margin-left: -1px;
    width: calc(100% / 7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

ul.fn li.bg-red {
    background: #ff0000;
    color: #fff !important;
    border-color: #ff0000;
}

.fn-details {
    font-size: 11px;
    color: #777777;
    font-weight: 300;
    margin: 35px 0px;
}

.fn-title {
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    color: #221f1f;
    font-weight: 700;
}

.fn-wrapper .fn-details {
    margin-top: 33px;
    margin-bottom: 37px;
}

.fn-add {
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #777;
    font-weight: 300;
    margin-top: 9px;
}

/*** Hover ***/
.fn-img-holder {
    background: #702626;
    text-align: center;
}

.fn-img-holder img {
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    /*    -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;*/
}

.fn-wrapper a:hover .fn-img-holder img {
    opacity: 0.1;
}

.fn-wrapper a:hover .fn-img-holder .fn-more {
    opacity: 1;
}

.fn-more {
    background: #ff0000;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 20px 10px;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 150px;
    top: 31%;
    opacity: 0;
    width: 100%;
}

a.view-more-btn {
    display: block;
    max-width: 360px;
    padding: 30px 10px;
    background: #221f1f;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 22px auto 0px;
    position: relative;
    z-index: 103;
}

a.view-more-btn:hover {
    background: #ff0000;
}

.fn-wrapper a:hover .fn-details .fn-title,
.fn-wrapper a:hover .fn-details .fn-add {
    color: #ff0000;
}

/*** Section 3 ***/
.section-3 {
    overflow: hidden;
    margin-top: -54%;
}

.section-3 section {
    position: relative;
    z-index: 101;
}

#newsletter div.wpcf7-response-output {
    color: #fff !important;
}

/*** Triangle ***/
.tr-l {
    position: relative;
    padding-top: 30%;
    padding-bottom: 25%;
    overflow: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
}

.tr-l:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
}

.section-3 .tr-l:before {
    width: 150%;
    height: 100%;
    background: #221f1f;
    -webkit-transform-origin: -1% 0%;
    -ms-transform-origin: -1% 0%;
    transform-origin: -1% 0%;
    -webkit-transform: rotate(29deg);
    -ms-transform: rotate(29deg);
    transform: rotate(29deg);
    z-index: 100;
}

.section-4 .tr-l:before {
    width: 150%;
    height: 100%;
    background: #221f1f;
    -webkit-transform-origin: -1% 0%;
    -ms-transform-origin: -1% 0%;
    transform-origin: -1% 0%;
    -webkit-transform: rotate(29deg);
    -ms-transform: rotate(29deg);
    transform: rotate(29deg);
}

/*** Newsletter ***/
section#newsletter .container {
    position: relative;
}

section#newsletter .container::before {
    height: 452px;
    width: 459px;
    background: url(images/triangle-lg.png) no-repeat;
    position: absolute;
    right: 15px;
    top: -90px;
}

section#newsletter h2 {
    font-size: 30px;
    color: #fff;
    text-align: left;
}

section#newsletter h2 .thin-text {
    font-size: 36px;
}

section#newsletter p {
    font-size: 14px;
    color: #999999;
    margin-top: 25px;
    line-height: 1.5em;
    font-weight: 300;
}

section#newsletter form {
    position: relative;
}

section#newsletter form input {
    color: #717171;
    font-size: 14px;
    background: transparent;
    border: 1px solid #717171;
    padding: 14px 45px 14px 23px;
    margin-top: 27px;
    width: 100%;
}

section#newsletter form input[type="submit"],
#git form input[type="submit"] {
    position: absolute;
    height: 22px;
    width: 22px;
    border: none;
    font-size: 0px;
    background: url(images/airplane-icon.png) center no-repeat;
    top: 12px;
    right: 4px;
}

section#newsletter form input[type="submit"]:hover,
#git form input[type="submit"]:hover {
    opacity: .60;
}

section#newsletter form input[type="submit"] {
    right: -8px;
}

.home div.wpcf7-response-output {
    margin: 0em 0em 1em;
    text-align: center;
    font-size: 12px;
}

.home div.wpcf7-response-output {
    color: #fff;
}

/*** Recent Posts ***/
section#recent-posts {
    position: relative;
    overflow: hidden;
    margin-top: 64px;
    padding-top: 81px;
}

section#recent-posts::before {
    position: absolute;
    content: '';
    height: 1px;
    background: url(images/faded-border-bottom-left.png) no-repeat;
    top: 0;
    display: block;
    width: 5000px;
    right: 50%;
}

#recent-posts h2.thin-text {
    font-size: 36px;
    color: #fff;
    text-align: left;
    position: relative;
}

.blog-title {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 45px;
    min-height: 32px;
}

.blog-details {
    margin-top: 9px;
    font-size: 10px;
    color: #787878;
    text-transform: uppercase;
}

.no_comments {
    margin-right: 6px;
}

.blog-date {
    margin-left: 6px;
}

.blog-content {
    margin-top: 40px;
    color: #999999;
    padding-top: 22px;
    border-top: 1px solid #443e3e;
    line-height: 1.7em;
    min-height: 145px;
}

.blog-content p {
    min-height: 140px;
}

.blog-readmore {
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    border: 1px solid #3d3b3b;
    padding: 10px 12px;
    display: inline-block;
}

.blog-readmore:hover {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
}

/*** Section 4 ***/
.section-4 {
    position: relative;
    z-index: 102;
    overflow: hidden;
    padding-top: 103px;
    margin-top: -25%;
    background: url(images/footer-bg.png) no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

/*** Testimonails ***/
.testi-holder {
    padding: 208px 0px 180px;
    background: url(images/testi-bg.png) no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    position: relative;
    text-align: center;
}

.testi-holder h2, section#git h2 {
    color: #ffffff;
    font-weight: 300;
    font-size: 36px;
}

.testi-holder p {
    margin: 61px auto 0px;
    text-align: center;
    max-width: 66%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6em;
    color: #fff;
}

.testi-holder a {
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 20px;
    display: flex;
    width: 115px;
    height: 37px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.testi-holder a:hover,
.testi-holder a:focus {
    border-color: #ff0000;
    background: #ff0000;
    text-decoration: none;
}

p.client-name {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

button.testi-pre-btn,
button.testi-next-btn {
    font-size: 0px;
    position: absolute;
    top: 47.5%;
    color: #fff;
}

button.testi-pre-btn:hover,
button.testi-next-btn:hover {
    color: #ff0000;
}

button.testi-pre-btn {
    left: 86px;
}

button.testi-next-btn {
    right: 86px;
}

button.testi-pre-btn::before,
button.testi-next-btn::before {
    font-size: 30px;
}

/*** Get in touch ***/
section#git {
    margin-top: 109px;
}

section#git form {
    position: relative;
    font-size: 0px;
    margin-top: 32px;
}

section#git form {
    position: relative;
    font-size: 0px;
}

section#git form input, section#git form textarea {
    background: transparent;
    color: #fff;
    border: 1px solid #abaaab;
    font-size: 14px;
    height: 46px;
    padding: 9px 22px;
    vertical-align: top;
    resize: none;
    width: 26.5%;
    margin-right: 0.5%;
    line-height: 1.8em;
}

#git form textarea#git-message {
    width: 46%;
    margin-right: 0px;
    padding-right: 45px;
}

#git form input[type="submit"] {
    margin-right: 0px;
}

.home span.wpcf7-not-valid-tip {
    font-size: 14px;
}

#git form input[type="submit"] {
    right: 16px;
}

/*** Footer Contact ***/
.footer-contacts {
    text-align: center;
    margin-top: 34px;
    color: #fff;
}

.footer-contacts span {
    margin-right: 8px;
}

.footer-contacts em {
    margin-right: 10px;
    margin-left: 8px;
}

p.contact-add {
    text-align: center;
    color: #fff;
    margin-top: 11px;
}

/*** Footer Nav ***/
footer {
    padding-bottom: 85px;
}

.home .footernav {
    text-align: center;
    margin-top: 39px;
    padding-top: 47px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footernav li {
    display: inline;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin: 0px 19px;
}

.copyright {
    text-align: center;
    margin-top: 16px;
    color: #6e6e6e;
    font-size: 10px;
    line-height: 1.5em;
}

.copyright a:last-of-type {
    color: #fff;
}

.footer-links {
    margin-top: 20px;
    text-align: center;
    color: #6e6e6e;
    font-size: 10px;
    line-height: 1.5em;
}

.mls {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    color: #fff;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/

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

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

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

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
    margin-top: 22px;
    text-align: center;
}

/* 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 post/page main headings (h1) */
#content .entry-title {}

/* Style category/archive/etc main headings (h1) */
#content .archive-title {}

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

/*** Header ***/
.ip-container header {
    position: relative;
}

.ip-container .innerpage-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: url(images/innerpage-banner.jpg) no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    height: 250px;
    z-index: 0;
}

.ip-container main {
    margin-top: 130px;
}

/*** Footer ***/
.ip-container footer {
    background: url(images/innerpage-footer-bg.jpg) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.ip-container footer {
    padding: 60px 0px;
}

.ip-container .footernav {
    text-align: center;
}

/*** Sidebar ***/
.sidebar .footer-contacts span, .sidebar p.contact-add {
    margin-right: 0px;
    display: block;
    color: #221f1f;
    font-size: 14px;
}

.sidebar .footer-contacts {
    margin-top: 15px;
}

.cta a {
    margin-bottom: 2px;
    font-size: 15px;
}


/* Testimonials */
.wpcr3_pagination:after {
    content: "";
    display: table;
    clear: both
}

.wpcr3_pagination .wpcr3_a,
.wpcr3_pagination .wpcr3_a.wpcr3_disabled {
    background: #221f1f;
}

.wpcr3_pagination .wpcr3_a.wpcr3_current {
    background: #ff0000;
}

.ai-contact-wrap {
    max-width: 100%;
}

.wpcr3_pagination .wpcr3_a:hover {
    background: #454545 !important;
}


/*teestimonials*/
.wpcr3_review .wpcr3_review_datePublished {
    display: none !important;
}

.wpcr3_review .wpcr3_review_author {
    text-transform: capitalize;
}

/*** Under Construction ***/
header.header-wrap {
    position: relative;
}

header.header-wrap .agentname {
    letter-spacing: -8px;
}

header.header-wrap .subtitle {
    line-height: 39px;
}

header.header-wrap .header-title {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.contacts {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.main-wrap {
    min-height: initial;
}

.socmedia {
    margin: 0 auto 15px auto;
}

.footer-wrap {
    padding-bottom: 10px;
}

.contactform-wrap input[type="submit"] {
    margin: auto;
}

.nh-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0 -10px;
    /* font-size: 0; */
    letter-spacing: 0;
}

.nh-list .nh {
    width: 50%;
    height: 312px;
    padding: 10px 5px;
    float: none;
    margin: 0;
}

.nh a:hover {
    opacity: .80;
}

.nh p {
    text-align: center;
    font-weight: bold;

}

.nh img {
    height: 270px !important;
    object-fit: cover;
    object-position: center;
}

.comments textarea {
    height: 66px;
}

#content .listing-details-wrap .photo-slideshow .photo-list a {
    display: block;
    background: #000;
    opacity: .2;
}

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

.site-name {
    color: #ff0000;
}

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

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

#content .fo-table td:first-child {
    min-width: 85px;
}

.ai-contact-wrap span.context-mob a:hover,
.ai-contact-wrap span.context-email a:hover {
    color: #ff0000;
}

input.aios-listing-button3:hover,
.popup-wrap-request .request-more-info .m-form input[type="submit"]:hover,
.popup-wrap-schedule .schedule-showing .m-form input[type="submit"]:hover {
    background: #ff0000;
    color: #fff;
}

.popup-wrap-request .request-more-info .m-form input[type="submit"]:hover {}

ul.sitemap-list li::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000;
    margin-right: 5px;
}

#content .listing-details-wrap .photo-slideshow .slick-prev:hover,
#content .listing-details-wrap .photo-slideshow .slick-next:hover {
    opacity: .60;
}

.schedule-showing .close:hover,
.request-more-info .close:hover {
    opacity: .90;
}

.request-more-info form,
.schedule-showing form {
    padding-bottom: 30px;
}

.request-more-info input[type="submit"],
.schedule-showing input[type="submit"] {
    margin: 20px auto 0 !important;
    display: block;
    float: none !important;
}

div#ui-datepicker-div {
    left: 45% !important;
}

.popup-wrap-request .request-more-info h3 {
    margin-bottom: 16px !important;
}

.dom-row {
    display: flex;
    align-items: center;
}

.dom-row > div:first-child {
    width: 40%;
}

.dom-row > div:last-child {
    width: 60%;
}

.dom-row span.wpcf7-form-control-wrap.approx_date_move {
    width: 100% !important;
}

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

#content .listing-details-wrap .pager a:hover {
    filter: brightness(0);
}

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

table.fo-table {
    width: 100%;
}

.footer-links a {
    display: block;
}

.footer-disclaimer {
    display: block;
    margin: 20px 0 0 0;
    text-align: center;
    color: #6e6e6e;
    font-size: 10px;
    line-height: 1.5em
}

.single-listing .popup-wrap-schedule .schedule-showing .wpcf7-response-output,
.single-listing .popup-wrap-request .request-more-info .wpcf7-response-output {
    margin-top: 0;
}

body .aios-roadmaps.sellers-roadmap a:nth-child(6) .aios-roadmap-icon:after {
    content: "\b0130"
}

body .aios-roadmaps.sellers-roadmap a:nth-child(7) .aios-roadmap-icon:after {
    content: "\b0048"
}

/* BURGER BUTTON */
.burger-btn {
    cursor: pointer;
}

.burger-btn:hover > div {
    background-color: #fff;
}

.burger-btn > div {
    width: 20px;
    height: 3px;
    background-color: currentColor;
    transition: var(--default-transition);
    margin-bottom: 3px;
}

.burger-btn > div:last-child {
    margin-bottom: 0;
}

/* .burger-btn>div:first-child {
  margin-bottom: 9px;
} */

/* BURGER MENU */
.burger-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    right: -100%;
    z-index: 1002;
    background-color: rgba(0, 0, 0, 1);
    transition: var(--default-transition);
    padding: 20px 24px 72px;
    display: none;
}

.burger-menu.show {
    right: 0;
}

.burger-menu .burger-close {
    position: absolute;
    cursor: pointer;
    font-size: 19px;
    text-align: center;
    transition: var(--default-transition);

    top: 32px;
    right: 28px;
    width: auto;
    color: #fff;
    background: none;
}

.burger-menu .burger-close:hover {
    opacity: .7;
}

.burger-menu .bgr-wrap {
    height: 100%;
    overflow-y: auto;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.burger-menu .bgr-wrap::-webkit-scrollbar {
    display: none;
}

.burger-menu .bgr-wrap .logo {
    margin-bottom: 72px;
}

.burger-menu .bgr-wrap .logo img {
    width: 100%;
    display: block;
    max-width: 168px;
    margin: 0 auto 0 0;
    filter: brightness(0) invert();
}

.burger-menu .navigation {
    text-align: center;
}

.burger-menu nav ul li a {
    font-family: var(--font-family-title);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 2.8;
    color: #000;
    transition: var(--default-transition);
}

.burger-menu nav ul li a:hover {
    opacity: .7;
}

.burger-menu nav ul > li > .sub-menu a {
    font-size: 14px;
}

.burger-menu nav ul > li > .sub-menu > li > .sub-menu a {
    font-size: 13px;
}

/* show burger submenus on click*/
.burger-menu nav ul > li > .sub-menu,
.burger-menu nav ul > li > .sub-menu > li > .sub-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--default-transition);
}

.burger-menu nav ul > li.offcanvas-submenu-open > .sub-menu,
.burger-menu nav ul > li > .sub-menu > li.offcanvas-submenu-open > .sub-menu {
    max-height: 9999px;
    opacity: 1;
    visibility: visible;
}

/* burger line */
.bgr-line {
    background-color: #0a3c45;
    width: 290px;
    height: 1px;
    margin: 35px auto 40px;
}

/* burger contact */
.bgr-contact {
    text-align: center;
}

.bgr-contact ul li {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgr-contact ul li:last-child {
    margin-bottom: 0;
}

.bgr-contact ul li i {
    display: block;
    background: linear-gradient(60deg, rgba(160, 133, 57, 1) 0%, rgba(232, 193, 85, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 40px;
    padding-top: 1px;
}

.bgr-contact ul li a {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 500;
    font-family: var(--font-family-title);
    transition: var(--default-transition);
}

.bgr-contact ul li a:hover {
    color: #000;
    opacity: .7;
}

/* burger smis */
.bgr-contact .smis {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.bgr-contact .smis a {
    position: relative;
    display: block;
    color: var(--secondary);
    background-color: var(--primary);
    border-radius: 100%;
    padding: 17px 16px;
    text-align: center;
    font-size: 20px;
    margin-right: 16px;
    width: 54px;
    height: 54px;
    overflow: hidden;
    z-index: 1;
}

.bgr-contact .smis a:last-of-type {
    margin-right: 0;
}

.bgr-contact .smis a::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(52, 230, 231, 1) 0%, rgba(52, 230, 231, 0) 80%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: var(--default-transition);
}

.bgr-contact .smis a:hover::after {
    content: '';
    opacity: 1;
    visibility: visible;
}

.amh-header-left-btn {
    float: left;
    position: relative;
    text-align: center;
    padding: 17px 0;
    height: 52px;
    font-size: 18px;
    line-height: 1;
    box-sizing: border-box;
    width: 22.18%;
    cursor: pointer;
}

.amh-header-buttons.amh-3a .amh-center {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amh-header-right-btn {
    display: flex;
    align-items: center;
}

.amh-header-right-btn span {
    font-size: 14px;
    padding-right: 9px;
    line-height: 1;
    font-weight: 400;
    display: inline-block;
}

.burger-menu .bgr-wrap * {
    color: #fff;
    text-align: left;
}

#burger-nav {
    padding-left: 30px;
}

.burger-menu .bgr-wrap h2 {
    font-size: 14px;
    font-weight: 100;
}

.burger-menu nav ul li {
    margin-bottom: 20px;
}

.bgr-contact {
    padding-left: 30px;
    padding-top: 30px;
}

.bgr-contact span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.bgr-contact span em {
    font-size: 16px;
    width: 22px;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.bgr-contact span em.ai-font-envelope {
    font-size: 12px;
}

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