/*
Theme Name: kclardy-pending.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.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
*/


/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css
  
*/


/*******************************************************
 *
 * 1. Custom CSS
 *
 *******************************************************/

:root {
    --primary-color: #00213d;
}

/* Global */

body {
    font-family: 'Montserrat', Arial, Helvetica, Georgia, Sans-serif;
    font-size: 13px;
    background: #FFF;
    color: #333333;
    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; */
}

a {
    color: inherit;
}

a:hover {
    color: #00213d;
    opacity: .6 !important;
}

a:hover,
a:focus,
.slick-slide,
.slick-slide a {
    outline: none;
    text-decoration: none;
}

.flex {
    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;
    justify-content: center;
}

.flex:before,
.flex:after {
    display: none;
}

.dir-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.dir-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse wrap;
    flex-flow: column-reverse wrap;
}

.dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
}

.al-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.al-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.al-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.ju-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ju-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ju-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ju-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


/*keyframes | Custom animations*/

.animated.fadeInUpSmall {
    animation-name: fadeInUpSmall;
}

.animated.fadeInRightSmall {
    animation-name: fadeInRightSmall;
}

.animated.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}

.animated.fadeInDownSmall {
    animation-name: fadeInDownSmall;
}

.animated.zoomOutSmall {
    animation-name: zoomOutSmall;
}

.animated.slideInUpSmall {
    animation-name: slideInUpSmall;
}

.animated.slideInRightSmall {
    animation-name: slideInRightSmall;
}

.animated.slideInLeftSmall {
    animation-name: slideInLeftSmall;
}

@-webkit-keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInRightSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInDownSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeZoomOutSmall {
    from {
        opacity: 0;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fadeZoomOutSmall {
    from {
        opacity: 0;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slideInUpSmall {
    from {
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUpSmall {
    from {
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInRightSmall {
    from {
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRightSmall {
    from {
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInLeftSmall {
    from {
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeftSmall {
    from {
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInDownSmall {
    from {
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDownSmall {
    from {
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

#main-wrapper {
    overflow: hidden;
}

.btn-a {
    display: block;
    width: 250px;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .05em;
    background: #00213d;
    border: 1px solid #00213d;
    color: #fff;
    padding: 15px 15px;
    transition: background .3s, border .3s, color .3s, opacity .3s;
}

.btn-a:hover {
    opacity: .8;
}


/*fixed header*/

.active.fixedheader-wrapper {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.fixedheader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #00213d;
    z-index: 1011;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
}

.fixedheader-logo {
    width: 22%;
}

.fixedheader-logo a {
    display: inline-block;
    margin-left: -68px;
}

.fixedheader-logo img {
    max-width: 100%;
    width: 177px;
}

.fixedheader-navigation {
    width: 78%;
    text-align: right;
}

#nav_ {
    font-size: 0;
    margin-right: -68px;
}

#nav_>li {
    display: inline-block;
    vertical-align: top;
    margin: 0 25px;
    text-align: center;
}

#nav_>li>a {
    color: #fff;
    padding: 39px 0;
}


/*header*/

header.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    background: #fff;
}

.header-top {
    padding: 34px 15px 31px;
}

header .site-logo {
    position: relative;
}

.site-logo img {
    max-width: 100%;
}

header .contact-info {
    position: relative;
}

.contact-info .contact {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .075em;
    color: #00213d;
}

.contact a {
    transition: color .3s, background .3s, opacity .3s;
}

.contact-info .contact.phone a:hover,
.contact-info .contact.email a:hover {
    opacity: .8;
}

.contact i {
    color: #00213d;
}

.contact.email {
    min-width: 82px;
    margin-left: 29px;
    margin-right: 8px;
    text-align: center;
    border-left: 1px solid #bababa;
    padding: 4px 0;
}

.contact.smi {
    font-size: 0;
}

.contact.smi a {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 33, 61, .65);
    font-size: 20px;
    margin: 0 5px;
}

.contact.smi a:first-child {
    margin-left: 0;
}

.contact.smi a:last-child {
    margin-right: 0;
}

.contact.smi a:hover {
    background: rgba(0, 33, 61, 1);
    color: #fff;
}

.header-bottom {
    border-top: 1px solid #bababa;
}

#nav {
    font-size: 0;
    text-align: center;
}

#nav li,
#nav_ li {
    position: relative;
}

#nav li a,
#nav_ li a {
    display: block;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: color .3s, background .3s;
}

#nav>li {
    display: inline-block;
    margin: 0 27px;
}

#nav>li:first-child,
#nav_>li:first-child {
    margin-left: 0;
}

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

#nav>li>a {
    color: #00213d;
    padding: 13.5px 0;
}

#nav>li>a:hover {
    opacity: .6;
}

#nav .sub-menu,
#nav_ .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0, 33, 61, 0.95);
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 218px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s;
}

#nav>li>.sub-menu,
#nav_>li>.sub-menu {
    left: calc(50% - 109px);
}

#nav .sub-menu a,
#nav_ .sub-menu a {
    color: #cccccc;
    display: block;
    padding: 14px 10px;
}

#nav .sub-menu li:hover>a,
#nav_ .sub-menu li:hover>a {
    background: #fff;
    color: #0c2c46;
    text-decoration: none;
}

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

#nav li:hover>.sub-menu,
#nav_ li:hover>.sub-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}


/*section 1*/

section.section-1 {
    position: relative;
}

#slideshow {
    position: relative;
}

#quick-search {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.qs-form {
    margin: 0;
    background: rgba(255, 255, 255, .9);
    padding: 23px 24px 25px 41px;
}

.qs-form h2 {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .075em;
    line-height: 1;
    color: #00213d;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.qs-fields {
    font-size: 0;
    margin: 0 -5px;
}

.qs-field {
    padding: 0 5px;
}

.qs-lg {
    /*width: 195px;*/
    width: 17.973%;
}

.qs-sm {
    /*width: 115px;*/
    width: 10.6%;
}

.qs-field select {
    width: 100%;
    height: 27px;
    border: none;
    border-bottom: 1px solid rgba(0, 33, 61, .69);
    font-size: 10px;
    letter-spacing: .1em;
    color: #323232;
    text-transform: uppercase;
    background: transparent;
    margin-top: 5px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.qs-field select::-ms-expand {
    display: none;
}

.qs-btn {
    width: 21.654%;
}

.qs-btn input,
.qs-btn a {
    font-size: 12px;
    letter-spacing: .075em;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity .3s, color .3s, background .3s, border .3s;
    outline: none;
}

.qs-btn input {
    width: 50%;
    height: 32px;
    background: #00213d;
    border: 1px solid #00213d;
    color: #fff;
}

.qs-btn input:hover {
    /*color: #00213d;
                            border-color: #fff;
                            background: #fff;*/
    opacity: .8;
}

.qs-btn a {
    width: 50%;
    display: block;
    color: #00213d;
    text-align: center;
    font-weight: 600;
}

.qs-btn a:hover {
    opacity: .8;
}

.qs-form button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 27px;
    border: none;
    border-bottom: 1px solid rgba(0, 33, 61, .69);
    font-size: 10px;
    letter-spacing: .1em;
    color: #323232;
    text-transform: uppercase;
    background: transparent;
    margin-top: 5px;
    outline: none;
    -webkit-appearance: none;
    border-radius: unset;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.qs-form .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 280px !important;
}

.sidebar .qs-form .bootstrap-select.btn-group.dropup .dropdown-menu.inner {
    max-height: 170px !important;
}

.qs-form span.filter-option.pull-left {
    font-size: 10px !important;
}


/*section 2*/

section.section-2 {
    position: relative;
    background: url(images/bg-cta.jpg) center/cover no-repeat;
    /* z-index: -1; */
}

#call-to-action {
    padding: 34px 0 14px;
    background: rgba(255, 255, 255, .93);
}

.cta-list {
    margin: 0 -147px;
}

.cta {
    width: 25%;
    padding: 0 29px 29px;
}

.cta-inner {
    position: relative;
    font-size: 0;
}

.cta-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    /*left: -39px;
                        right: -39px;
                        bottom: -37px;*/
    left: -14.5%;
    right: -14.5%;
    bottom: -14.86%;
    background: url(images/shadow-cta.png) center/cover no-repeat;
    z-index: 1;
    pointer-events: none;
}

.cta-img {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-img img {
    display: block;
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.cta-img:before,
.cta-img:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    transition: all .3s;
}

.cta-img:before {
    top: 0;
    bottom: 8px;
    background: rgba(0, 33, 61, .75);
}

.cta-img:after {
    top: calc(100% - 8px);
    bottom: 0;
    background: #fff;
}

.cta-inner:hover .cta-img:before {
    bottom: calc(100% - 8px);
    background: rgba(0, 33, 61, 1);
}

.cta-inner:hover .cta-img:after {
    top: 8px;
    background: rgba(255, 255, 255, .75);
}

.cta-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .075em;
    color: #fff;
    text-transform: uppercase;
    z-index: 3;
    transition: color .3s;
}

.cta-inner:hover .cta-title {
    color: #00213d;
}


/*section 3*/

section.section-3 {
    position: relative;
    font-size: 0;
}

.welcome-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 53.125%;
    background-position: center;
    background-size: cover;
}

#welcome {
    width: 46.875%;
    margin-left: 53.125%;
    background: #00213d url(images/bg-welcome-text.jpg) center/cover no-repeat;
    padding: 80px 0 83px;
    position: relative;
}

#welcome:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 38px;
    height: 78px;
    margin: auto;
    background: url(images/welcome-accent.png) center/cover no-repeat;
}

.welcome-text {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .015em;
    color: #fff;
    width: 530px;
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
}

.welcome-text h1 {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: .075em;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 36px;
}


/*section 4*/

section.section-4 {
    position: relative;
}

#featured-properties {
    padding: 116px 0 110px;
}

#featured-properties h2 {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: .075em;
    line-height: 1.2;
    color: #00213d;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 54px;
}

.fp-list {
    font-size: 0;
    text-align: center;
}

.fp-list .slick-list {
    /*padding: 0 24.375%;*/
}

.fp {
    display: inline-block;
    width: 51.24999999999999%;
    padding: 0 10px;
}

.fp~.fp {
    display: none;
}

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

.fp-img {
    position: relative;
}

.slick-slide .fp-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    transition: all .3s;
}

.fp-img:before {
    background: rgba(0, 33, 61, .77);
    opacity: 1;
}

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

.fp-img .btn-a {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 1;
    background: #fff;
    border-color: #fff;
    color: #00213d;
    opacity: 0;
}

.fp-details {
    color: #333333;
    text-transform: uppercase;
    text-align: left;
    padding: 16px 15px 0;
    opacity: 0;
    transition: all .3s;
}

.fp-details>div {
    display: inline-block;
    letter-spacing: .05em;
}

.fp-details .address {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.1;
    border-right: 1px solid #00213d;
    padding-right: 17px;
    margin-right: 16px;
    max-width: 300px;
}

.fp-details .beds-baths {
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
}

.fp-details .beds-baths span {
    margin-right: 10px;
}

.fp-details .price {
    font-size: 20px;
    line-height: 1;
    margin-left: auto;
    font-weight: 600;
}

.fp-list .slick-prev {
    left: calc(24.375% - 60px);
}

.fp-list .slick-next {
    right: calc(24.375% - 60px);
}

.fp-list .slick-arrow {
    position: absolute;
    top: 40.2%;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, .8);
    font-size: 0;
    z-index: 1;
    outline: none;
    transition: background .3s;
}

.fp-list .slick-arrow:hover {
    background-color: #fff;
}

.fp-list .slick-arrow:before {
    position: relative;
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 21px;
}

.fp-list .slick-prev:before {
    content: "\b0205";
}

.fp-list .slick-next:before {
    content: "\b0206";
}


/* slide when not active/center*/

.fp-list .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] .fp-img:before {
    background: rgba(0, 33, 61, .77);
    opacity: 1;
}

.fp-list .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] .fp-details {
    opacity: 0;
}


/* slide when active/center */

.slick-center .fp-img:before,
.fp-list .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] .fp-img:before {
    background: rgba(255, 255, 255, .2);
    opacity: 0;
}

.slick-center a:hover .fp-img:before,
.slick-center a:hover .fp-img .btn-a,
.slick-center .fp-details,
.fp-list .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] .fp-details {
    opacity: 1;
}

.fp-list .slick-track .slick-slide {
    pointer-events: none;
}

.fp-list .slick-track .slick-slide.slick-active {
    pointer-events: auto;
}


/*footer*/

footer.footer-wrapper {
    position: relative;
    background: rgba(0, 33, 61, 1);
    color: #fff;
}

.footer-top {
    background: url(images/bg-footer.jpg) center/cover no-repeat;
    position: relative;
    z-index: 1;
    padding: 43px 0 26px;
}

.footer-top:before,
.footer-top:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 50%;
}

.footer-top:before {
    left: 0;
    background: rgba(0, 33, 61, .85);
}

.footer-top:after {
    right: 0;
    background: rgba(0, 33, 61, .9);
}

.footer-contact-info {
    text-align: center;
    padding: 30px 15px;
}

.footer-contact-info .site-logo {
    position: relative;
}

.footer-contact-info .site-logo img {
    max-width: 100%;
}

.footer-contact-info .site-logo:after {
    content: '';
    display: block;
    margin: 38px auto 36px;
    width: 117px;
    height: 1px;
    background: #d8f2ff;
}

.footer-contact-info .address,
.footer-contact-info .phone {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .075em;
    text-transform: uppercase;
    padding-bottom: 17px;
}

.footer-contact-info .phone a {
    transition: color .3s, opacity .3s;
}

.footer-contact-info .phone a:hover {
    opacity: .6;
}

.footer-contact-info .smi {
    font-size: 0;
    padding-top: 17px;
}

.footer-contact-info .smi a {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    margin: 0 5px;
    transition: background .3s, border .3s, color .3s;
}

.footer-contact-info .smi a:hover {
    background: #fff;
    color: #00213d;
}

.footer-contact-form {
    padding: 30px 15px;
}

.f-form {
    margin-left: 74px;
    margin-right: -20px;
}

.f-form h2 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 26px;
}

.f-form form {
    margin-left: -10px;
    margin-right: -10px;
    font-size: 0;
    position: relative;
}

.f-form-field {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 0 10px;
}

.f-form-half {
    width: 50%;
    margin-bottom: 23px;
}

.f-form-field input[type="text"],
.f-form-field input[type="email"],
.f-form-field input[type="tel"],
.f-form-field textarea {
    width: 100%;
    background: transparent;
    outline: none;
    height: 27px;
    border: none;
    border-bottom: 1px solid #d8f2ff;
    font-size: 10px;
    letter-spacing: .1em;
    color: #f5fcff;
    text-transform: uppercase;
}

.f-form-field textarea {
    resize: none;
    height: 67px;
}

.f-form input[type="submit"] {
    display: block;
    width: 101px;
    height: 32px;
    background: transparent;
    border: 1px solid #d8f2ff;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .075em;
    color: #fff;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: 10px;
    margin-top: 18px;
    outline: none;
    transition: all .3s;
}

.f-form input[type="submit"]:hover {
    background: #ffff;
    border-color: #fff;
    color: #00213d;
}

.f-form form .ajax-loader {
    position: absolute;
    right: 10px;
    bottom: -20px;
}

.f-form form div.wpcf7-response-output {
    position: absolute;
    top: calc(100% + 18px);
    left: 10px;
    right: 10px;
    font-size: 12px;
    letter-spacing: .075em;
    text-align: center;
    color: #fff !important;
    margin: 0 auto;
}

.f-form form span.wpcf7-not-valid-tip {
    font-size: 12px;
    top: 10%;
}

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

.footer-bottom {
    background: #00213d;
    min-height: 100px;
    text-align: center;
    padding: 18px 0 15px;
}

.footer-bottom a {
    color: #fff;
    transition: color .3s, opacity .3s;
}

.footer-bottom a:hover {
    opacity: .8;
}

.footernav {
    font-size: 0;
    margin-bottom: 5px;
}

.footernav li {
    display: inline-block;
    vertical-align: top;
    padding: 0 17px;
    position: relative;
}

.footernav li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background: #fff;
}

.footernav li:last-child:after {
    display: none;
}

.footernav li a {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .075em;
    text-transform: uppercase;
    display: block;
    line-height: 1.4;
}

.footernav li a:hover {
    opacity: .6;
}

.footer-copyright {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.4;
}

.footer-icons {
    display: block;
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 10px;
}


/*******************************************************
 *
 * 2. IP Styles
 *
 *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
}

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

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

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

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

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


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}


/** Adjust width of content columns **/

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

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


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* fullwidth template */

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

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


/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7
}


/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */

#content .entry-title,
#content .archive-title {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: .075em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #00213d;
}


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

#content .archive-subtitle {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: .075em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sidebar .qs-form {
    padding: 0;
}

.sidebar .qs-form h2 {
    text-align: center;
    margin: 10px 0;
    font-size: 20px;
}

.sidebar .qs-lg,
.sidebar .qs-btn {
    width: 100%;
}

.sidebar .qs-sm {
    width: 50%;
}

.sidebar .qs-btn {
    justify-content: center;
}

.sidebar .qs-btn input {
    width: 100%;
    margin-top: 15px;
}

.sidebar .qs-btn a {
    display: inline-block;
    margin-top: 10px;
}

.sidebar .cta-list {
    width: 100%;
    margin: 0;
}

.sidebar .cta {
    width: 100%;
    padding: 0;
    margin: 15px auto;
}

.sidebar .cta-title {
    margin: 0;
    padding: 0 15px;
}

#content .entry {
    line-height: 1.54;
    letter-spacing: .015em;
}


/*AGENTS INDIVIDUAL PAGE*/

.single-aios_agent .header-wrapper {
    position: relative;
}


/* Property Alert Page */

.pa-form-wrapper {
    display: block;
    position: relative;
}

#content .pa-form-wrapper h3 {
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: initial;
    color: #333;
    margin: 0 0 10px;
    min-height: 30px;
    min-height: 60px;
}

.pa-form-wrapper span.pa-form-label {
    display: block;
    line-height: 1;
    /*font-size: 21px;
        font-weight: 700;*/
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}

.pa-form-wrapper label {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.pa-form-wrapper em.required-mark {
    color: red;
}

.pa-form-wrapper .pa-form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pa-form-wrapper .pa-form-group label {
    width: calc(50% - 10px);
}

.pa-form-wrapper .pa-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

#content .pa-form-wrapper .pa-form-bottom h3 {
    min-height: initial;
}

.pa-form-wrapper span.ajax-loader {
    position: absolute;
    top: 100%;
    right: 0;
}

.pa-form-wrapper .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
}

.pa-form-wrapper span.wpcf7-form-control-wrap {
    display: block;
}

#content .pa-form-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    display: block;
}

#content .pa-form-wrapper .pa-form-bottom h3 {
    font-size: 13px;
    font-weight: 400;
}

.pa-form-wrapper select,
.pa-form-wrapper input[type="text"],
.pa-form-wrapper input[type="tel"],
.pa-form-wrapper input[type="email"] {
    width: 100%;
    border: 1px solid #969696;
    margin: 5px 0;
    height: 28px;
    padding: 5px 9px !important;
    font-family: Verdana;
    font-size: 11px;
    line-height: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    margin: 0;
}

.pa-form-wrapper input[type="submit"] {
    background: #00213d;
    height: 28px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    width: calc(50% - 15px);
    border: none;
    color: #fff;
    text-transform: uppercase;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding-top: 0;
    padding-bottom: 0;
}

.pa-form-wrapper input[type="submit"]:hover {}

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

.page-id-64 div#IDX-main ul {
    margin-left: 0;
}

.qs-form .bootstrap-select.btn-group .dropdown-menu {
    top: 100%;
    min-width: 100%;
}


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


/* 
.page-id-64.ip-container #main-wrapper {
    z-index: initial !important;
}

.page-id-64 .select2-drop{
    z-index: 10 !important;
} */

div#select2-drop-mask {
    z-index: 10;
}

.ip-container #main-wrapper {
    position: relative;
    z-index: unset !important;
}

div#select2-drop {
    z-index: 99;
}

section.section-2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

section.section-2.sticky .cta {
    padding: 0 14px 14px;
    width: 22%;
}

section.section-2.sticky .cta-title {
    font-size: 16px;
}

section.section-2.sticky .cta-img img {
    height: 112px;
}

section.section-2.sticky .cta-inner:before {
    bottom: 0.14%;
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232 !important;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900 !important;
}

.page-id-64 .ip-banner canvas {
    /* background-image: url(https://www.clardyrealestate.com/wp-content/uploads/2022/05/IMG_9409-2.jpeg) !important; */
}

.post-page-get-a-free-home-valuation nav.header-bottom.site-navigation {
    display: none;
}

#content .ai-minimalist-conceirge-content {
    margin-top: 50px !important;
}

#content .ai-minimalist-conceirge-lists .ai-minimalist-conceirge-text li a {
    word-break: break-all;
}

#content .ai-minimalist-conceirge-lists .ai-minimalist-conceirge-text a._ai-minimalis-button {
    display: none !important;
}

.page-template-template-about .ip-banner canvas,
.page-id-42 .ip-banner canvas,
.page-id-49 .ip-banner canvas,
.category-blog .ip-banner canvas,
.page-id-8030 .ip-banner canvas,
.page-id-8029 .ip-banner canvas {
    /* background-image: none !important; */
}

body #aios-home-valuation-wrap {
    padding: 130px 0 100px;
}


/* .ip-banner canvas {
    background-image: url(https://www.clardyrealestate.com/wp-content/uploads/2023/01/clardy-2-1.png) !important;
} */

.hp-sm {
    max-width: 1600px;
    margin: 0 auto;
}

.hp-sm-inner {
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 54px;
}

.hp-sm-inner>div {
    width: 50%;
    padding: 18px 100px 0;
    position: relative;
}

.hp-sm-inner>div.sm-fb::after {
    content: '';
    width: 2px;
    height: 100%;
    background: #efefef;
    position: absolute;
    top: 0;
    right: -1px;
}

.hp-sm-inner h2 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.054em;
    color: #00213d;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.sm-profile {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.sm-profile>div:nth-child(1) {
    flex-grow: 1;
}

.hp-sm-inner>div.sm-fb .sm-profile>div:nth-child(1) {
    width: 100%;
    margin-bottom: 48px;
}

.sm-profile a {
    display: block;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.054em;
    color: #000;
}

.sm-profile>div:nth-child(2) {
    max-width: 99px;
    border: 1px solid #efefef;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
}

.sm-profile img {}

.sm-profile>div:nth-child(3) {
    flex-grow: 1;
    max-width: calc(100% - 99px);
    padding-left: 30px;
}

.sm-profile p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.467;
    color: #000;
}

.sm-items {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -9px;
}

.sm-item {
    width: 100%;
    padding: 0 9px;
    margin-bottom: 18px;
}

.sm-ig .sm-item {
    width: 33.33%;
}

.sm-photo {
    position: relative;
}

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

.sm-photo img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

a {
    transition: all .5s;
}

.post-page-aios-custom-idx-broker-details-page .ui-dialog[aria-labelledby="ui-dialog-title-IDX-registration"] #IDX-registration .IDX-btn:hover {
    color: #fff;
}

section.section-1 {
    position: relative;
    z-index: 4;
}