/*
Theme Name: Key Associates of Linton - AIOS Starter Theme (Child)
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.8
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. Navigation
 *
 *******************************************************/


/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:180px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
#nav li:hover > .sub-menu {
    display: block;
}
#nav .sub-menu li {
    position: relative;
}


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

/* Global */

body{
	font-family: 'Oxygen', Helvetica, Georgia, Sans-serif;
	font-size: 14px;
	background: #FFF;
	color: #000000;
	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:hover, a:focus {
    color: #004aad;
}

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

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

#main-wrapper {
    overflow: hidden;
}

.hp-btn {
    width: 100%;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfcfcf;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.hp-btn:hover {
    background: #d1b000;
    border: 1px solid #d1b000;
    color: #fff;
}

.hp-btn .border-tl:after {
    content: '';
    width: 50px;
    height: 2px;
    background: #d1b000;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 10;
}

.hp-btn .border-tl:before {
    content: '';
    width: 2px;
    height: 57.53%;
    background: #d1b000;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 10;
}

.hp-btn .border-br:before {
    content: '';
    width: 2px;
    height: 57.53%;
    background: #d1b000;
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 10;
}

.hp-btn .border-br:after {
    content: '';
    width: 50px;
    height: 2px;
    background: #d1b000;
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 10;
}

.section-title {
    width: auto;
}

.section-title .small {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: 72px;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* Mobile Logo */
.mobile-logo {
    background: #222222;
    padding: 15px 20px;
    text-align: center;
    display: none;
}

.mobile-logo a {
    display: block;
    max-width: 150px;
    margin: 0 auto;
}

.mobile-logo img {
    width: 100%;
}

/* Header */
#main-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#main-header.active {
    padding: 15px 0;
    background: #222222;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-logo {
    max-width: 159px;
    width: 14%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-logo a {
    display: block;
}

.main-logo img {
    width: 100%;
}

#main-header.active .main-logo {
    max-width: 116px;
}

.main-navigation {
    width: auto;
}

#nav {
    width: 100%;
}

#nav > li {
    margin-left: 30px;
}

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

#nav > li > a {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.075em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#nav > li:hover > a {
    opacity: 0.7;
}

#nav .sub-menu {
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
    background: transparent;
    width: max-content;
    text-align: center;
    min-width: 205px;
}

#main-header.active #nav .sub-menu {
    padding-top: 45px;
}

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

#nav .sub-menu li a {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.075em;
    background: #222222;
    padding: 15px 10px;
    border-top: 1px solid rgba(184,184,184,0.09);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

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

#nav .sub-menu li:first-child a {
    border-top: none;
}

/* Slideshow */
#main-slideshow {
    width: 100%;
    position: relative;
}

#main-slideshow .cycloneslider-slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.52);
}

.slideshow-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.slideshow-content h2 {
    font-family: 'Oleo Script Swash Caps';
    color: #fff;
    font-size: 97.8px;
    line-height: 1.2;
}

.slide-btn {
    max-width: 265px;
    margin: 40px auto 0;
    width: 100%;
}

.slide-btn .hp-btn {
    color: #fff;
}

/* Get Started */
#main-gs {
    padding: 85px 0 120px;
    background: url(images/gs-bg.jpg) no-repeat center center/ cover;
}

.gs-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gs-title {
    margin-right: 10px;
}

.gs-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    width: 100%;
}

.gs-item {
    max-width: 241px;
    width: 33.33%;
    height: 241px;
    text-align: center;
    margin-left: 10px;
    border-left: 1px solid #cececf;
    border-bottom: 1px solid #cececf;
}

.gs-item:first-child {
    margin-left: 0;
}

.gs-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #222222;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.gs-desc {
    width: 100%;
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.gs-desc span {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
}

.gs-desc h3 {
    font-size: 48px;
    font-family: 'Oleo Script Swash Caps';
}

.gs-item a:hover {
    background: #1b2549;
}

.gs-item:nth-child(2) a:hover {
    background: #fff;
}

.gs-item:nth-child(2) a:hover .gs-desc {
    color: #000;
}

.gs-item:nth-child(3) a:hover {
    background: #d1b000;
}

/* Meet The Team */
#main-mtt {
    padding: 0 0 95px;
    position: relative;
}

.mtt-lbg {
    width: 50.75%;
    height: 289px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(images/mtt-left.jpg) no-repeat center center / cover;
    z-index: 1;
}

.mtt-lbg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.89);
}

.mtt-rbg {
    position: absolute;
    right: 0;
    top: 0;
    width: 85.4375%;
    height: 100%;
    background: url(images/mtt-right.jpg) no-repeat center center / cover;
    background-attachment: fixed;
}
    .safari-true .mtt-rbg,
    .mobile .mtt-rbg {
        background-attachment: scroll;
    }

.safari .mtt-rbg {
    background-attachment: unset;
}

.mtt-rbg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(28,37,76,0.66);
}

#main-mtt .inner-container {
    max-width: 1280px;
}

.mtt-flex {
    background: #fff;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 115px;
}
.mtt-left {
    position: relative;
    z-index: 10;
    min-width: 635px;
    max-width: 636px;
    padding-bottom: 32px;
}

.mtt-photo-bottom-logo {
    background: #d1b000;
    width: 100%;
    max-width: 188px;
    padding: 44px 19px;
    position: absolute;
    right: 0;
}
.mtt-photo-bottom-logo img {
    max-width: 100%;
}

.mtt-title {
    margin-bottom: 135px;
}

.mtt-content {
    margin-bottom: 40px;
}
.mtt-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 24px;
}
.mtt-btn {
    max-width: 265px;
}
.mtt-right {
    position: relative;
    z-index: 10;
    padding-top: 38px;
    margin-right: -12px;
    width: 57.421875%;
    padding-bottom: 10px;
    /* margin-left: 68px; */
    padding-left: 7%;
}
.mtt-photo-floating-bg {
    background: #d1b000;
    position: absolute;
    height: 65%;
    width: 66%;
    top: 0px;
    left: 8%;
    z-index: -1;
}


.mtt-flex:before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 1000%;
    height: 100%;
    background: #fff;
    z-index: 0;
}

.mtt-rbg:after {
    content: '';
    width: 263px;
    height: 100%;
    background: #d1b000;
    left: 0;
    bottom: 0;
    position: absolute;
    display: none;
}

.mtt-photo {
    width: 100%;
    font-size: 0;
}

.mtt-photo img {
    width: 100%;
}

/* Featured Listings */
#main-fl {
    padding: 115px 0 120px;
}

.fl-title {
    margin-bottom: 65px;
}

.fl-btn {
    max-width: 265px;
}

.fl-slider-wrap {
    margin-top: 105px;
    position: relative;
}

.fl-bg {
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
    height: 795px;
    background: url(images/fl-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    z-index: 0;
}
    .safari-true .fl-bg,
    .mobile .fl-bg {
        background-attachment: scroll;
    }

.mtt-photo-floating-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://www.keyoflinton.com/wp-content/uploads/2021/11/floatingbg.jpg);
    background-size: contain;
    opacity: .10;
}

.safari .fl-bg {
    background-attachment: unset;
}

.fl-bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.91);
}

.fl-flex {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.fl-item {
    position: relative;
    transform: translateZ(0);
}

.fl-item a {
    display: block;
    position: relative;
}

.fl-img {
    font-size: 0;
}

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

.fl-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0.4;
}

.fl-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 45px 30px;
    z-index: 10;
    color: #fff;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-desc-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(34,34,34,0.9);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.fl-desc-hover span {
    font-size: 30px;
    display: block;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
}

.fl-item a:hover .fl-desc-hover {
    opacity: 1;
}

.fl-desc span {
    display: block;
}

.fl-desc .address {
    font-size: 36px;
    margin-bottom: 10px;
}

.fl-desc .address2 {
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.fl-desc .price {
    font-size: 36px;
}

.fl-item a:hover .fl-desc {
    opacity: 0;
}

.fl-flex:first-child .fl-item:first-child {
    width: 59.625%;
}

.fl-flex:first-child .fl-item:nth-child(2) {
    position: absolute;
    right: 0;
    top: -200px;
    width: 42.75%;
}

.fl-slider .slick-list {
    overflow: visible;
}

.fl-flex:first-child {
    margin-bottom: 40px;
}

.fl-flex:first-child .fl-item:nth-child(2):before {
    content: '';
    width: calc(100% + 30px);
    height: calc(100% - 95px);
    position: absolute;
    right: 0;
    bottom: -30px;
    background: url(images/fl-bg1.jpg) no-repeat left center/ cover;
}

.fl-flex:nth-child(2) .fl-item:nth-child(2) {
    width: 59.6875%;
}

.fl-flex:nth-child(2) .fl-item:first-child {
    width: 42.75%;
    position: absolute;
    left: 0;
    z-index: 10;
    margin-top: 75px;
}

.fl-flex:nth-child(2) {
    justify-content: flex-end;
}

.fl-flex:nth-child(2) .fl-item:first-child:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -30px;
    width: calc(100% + 30px);
    height: calc(100% - 60px);
    background: url(images/fl-bg2.jpg) no-repeat center center/ cover;
    z-index: 0;
}

.fl-flex:nth-child(2) .fl-item:nth-child(2) .fl-desc {
    padding-left: 115px;
}

.fl-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 35px;
    padding-right: 35px;
    position: relative;
}

.fl-buttons .view-more {
    width: 148px;
    height: 133px;
    background: #666666;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 20px 15px;
    font-size: 17px;
    letter-spacing: 0.05em;
    margin-left: 80px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-buttons .view-more:hover {
    background: #1b2548;
}

.fl-buttons button {
    background: transparent;
    border: none;
    font-size: 17px;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: 0;
}

.fl-buttons button span {
    width: 30px;
    height: 12px;
    display: block;
}

.fl-buttons button .prev {
    background: url(images/prev.png) no-repeat center center/ contain;
    margin-right: 13px;
}

.fl-buttons button .next {
    background: url(images/next.png) no-repeat center center/ contain;
    margin-left: 5px;
}

.fl-buttons .next-slick {
    flex-direction: row-reverse;
}

.fl-buttons button:hover {
    opacity: 0.7;
}

.fl-buttons .btn-line {
    margin: 0 30px 0 25px;
    background: #d9d8d9;
    width: 1px;
    height: 19px;
}

/* Quick Search */
#main-qs {
    position: relative;
}

.qs-box {
    background: #fff;
    padding: 80px 30px;
    position: relative;
    z-index: 10;
    top: -70px;
}

.qs-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 225px;
    background: url(images/qs-bg.jpg) no-repeat center center/ cover;
}

.qs-bottom:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
}

.qs-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
}

.qs-title {
    width: max-content;
}

.qs-form {
    width: 100%;
    margin-left: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.qs-form label {
    display: none;
}

.qs-form select {
    width: 100%;
    padding: 18px 10px;
    border: none;
    border-bottom: 1px solid #555555;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
    background: url(images/arrow.png) no-repeat right 5px center;
    font-size: 14.65px;
    color: #4a4a4a;
    max-height: 61px;
    overflow: unset;
}

.qs-form > .area {
    width: 50%;
    margin-bottom: 35px;
    padding-right: 15px;
}

.qs-form .filter-option {
    max-width: 85% !important;
}

.qs-form > .area > .btn-group {
    max-width: 359px;
}

.qs-form > .qs-prices {
    width: 50%;
    padding-left: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.qs-form .beds {
    padding-right: 8px;
}

.qs-form .baths {
    padding-left: 8px;
    padding-right: 15px;
}

.qs-form > div {
    width: 25%;
}

.qs-submit {
    padding-left: 15px;
    padding-right: 6px;
}

.qs-advanced {
    padding-left: 6px;
}

.qs-submit input {
    width: 100%;
    height: 52px;
    background: transparent;
    border: 1px solid #555454;
    font-size: 12.5px;
    color: #4a4a4a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.qs-submit input:hover {
    background: #4a4a4a;
    color: #fff;
}

.qs-advanced a {
    width: 100%;
    height: 52px;
    background: #1b2549;
    border: 1px solid #1b2549;
    font-size: 12.5px;
    color: #fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qs-advanced a:hover {
    background: transparent;
    color: #1b2549;
}

.qs-prices > span {
    font-size: 14.6px;
    color: #4a4a4a;
}

.qs-prices .qs-pricerange {
    background: #1b2549;
    width: 100%;
    margin-top: 15px;
    border: none;
    padding: 0;
    height: 1px;
    margin-bottom: 16px;
}

.qs-pricerange.ui-slider .ui-slider-handle {
    width: 10px;
    height: 10px;
    background: #d1b000;
    border: none;
    border-radius: 50px;
    outline: 0;
}

.qs-pricerange.ui-slider-horizontal .ui-slider-range {
    background: #555555;
}

/* Featured Areas */
#main-fa {
    padding: 135px 0 70px;
}

.fa-title {
    margin-bottom: 115px;
    display: flex;
    justify-content: center;
}

.fa-title .section-title {
    padding-left: 45px;
    border-left: 1px solid #d1d0cf;
}

.fa-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 75px;
}

.fa-item-wrap {
    margin-left: 20px;
    width: 33.33%;
}

.fa-item-wrap:first-child {
    margin-left: 0;
}

.fa-item {
    margin-top: 20px;
    position: relative;
}

.fa-item:first-child {
    margin-top: 0;
}

.fa-item a {
    display: block;
    position: relative;
}

.fa-img {
    font-size: 0;
    position: relative;
}

.fa-img canvas {
    width: 100%;
    background-size: cover;
    background-position: center center;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fa-desc {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 40px 10px;
    z-index: 10;
}

.fa-desc h3 {
    font-size: 36px;
    color: #fff;
}

.fa-desc:after {
    content: '';
    width: 60.57%;
    height: 11px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #14327f;
}

.fa-item:nth-child(even) .fa-desc:after {
    background: #d1b000;
}

.fa-item-wrap:nth-child(2) .fa-item:nth-child(odd) .fa-desc:after {
    background: #d1b000;
}

.fa-item-wrap:nth-child(2) .fa-item:nth-child(even) .fa-desc:after {
    background: #14327f;
}

.fa-item a:hover .fa-img canvas {
    filter: none;
}

.fa-btn {
    max-width: 215px;
    margin: 0 auto;
}

/* Testimonials */
#main-testimonials {
    padding: 65px 0 100px;
}

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

.testi-left {
    width: 50%;
}

.testi-right {
    width: 50%;
    padding-top: 80px;
}

.testi-title {
    margin-bottom: 65px;
}

.testi-content {
    margin-bottom: 30px;
}

.testi-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.05em;
}

.testi-btn {
    max-width: 265px;
    margin-bottom: 70px;
}

.testi-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.testi-buttons button {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: transparent;
    outline: 0;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.testi-buttons button span {
    width: 72px;
    height: 9px;
    display: block;
}

.testi-buttons .prev-half {
    background: url(images/prev-half.png) no-repeat center center/ contain;
    margin-right: 20px;
}

.testi-buttons button.prev-slick {
    margin-bottom: 50px;
}

.testi-buttons button.next-slick {
    flex-direction: row-reverse;
}

.testi-buttons .next-half {
    background: url(images/next-half.png) no-repeat center center/ contain;
    margin-left: 10px;
}

.testi-slider .slick-slide {
    margin: 0 15px;
}

.testi-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
}

.testi-item .author {
    display: block;
    margin-top: 20px;
    font-family: 'Oleo Script Swash Caps';
    font-size: 24px;
}

.testi-buttons button:hover {
    opacity: 0.7;
}

/* Social */
#main-social {
    position: relative;
    padding: 0 0 110px;
}

.social-bottom {
    width: 100%;
    height: 455px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(images/social-bg.png) no-repeat bottom center/ cover;
    z-index: 0;
}

.social-flex {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-item {
    width: 25%;
    margin-left: 6px;
    position: relative;
}

.social-item:first-child {
    margin-left: 0;
}

.social-item a {
    display: block;
    position: relative;
}

.social-img {
    font-size: 0;
    position: relative;
}

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

.social-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.social-item a:hover .social-img:before {
    opacity: 1;
}

.social-desc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f3f3f3;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.social-desc .social-sub {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #1b2548;
}

.social-desc h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: #bfa35a;
    font-weight: 700;
    margin: 12px 0;
}

.social-desc .fb-link {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: #1b2548;
}

.social-desc:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 22px);
    height: calc(100% - 22px);
    border: 1px solid #d3d3d3;
    transform: translate(-50%, -50%);
}

.social-item a:hover .social-desc {
    background: #1b2548;
}

.social-item a:hover .social-desc span {
    color: #fff;
}

.social-desc span {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* Contact */
#main-contact {
    padding: 70px 0 60px;
    position: relative;
    background: url(images/contact-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}
    .safari-true #main-contact,
    .mobile #main-contact {
        background-attachment: scroll;
    }

.safari #main-contact {
    background-attachment: unset;
}

#main-contact:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.contact-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.contact-left {
    width: 50%;
}

.contact-right {
    width: calc(50% - 20px);
}

.cl-box {
    background: #1b2548;
    padding: 25px;
    height: 528px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clb-inner {
    max-width: 385px;
    margin: 0 auto;
    color: #fff;
}

.clb-lt:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 25px;
    width: 1px;
    height: 50%;
    background: #bfa35a;
}

.clb-rb:before {
    content: '';
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 1px;
    height: 50%;
    background: #bfa35a;
}

.clb-lt:after {
    content: '';
    position: absolute;
    left: 25px;
    top: 25px;
    width: 50%;
    height: 1px;
    background: #bfa35a;
}

.clb-rb:after {
    content: '';
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 50%;
    height: 1px;
    background: #bfa35a;
}

.cl-title {
    text-align: center;
    margin-bottom: 40px;
}

.cl-title h2 {
    font-size: 48px;
    font-family: 'Oleo Script Swash Caps';
}

.cl-content p {
    font-size: 14px;
    color: #fff;
    line-height: 30px;
}

.cr-box {
    height: 413px;
    border: 3px solid #ffffff;
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.crb-inner {
    max-width: 417px;
    width: 100%;
    text-align: center;
}

.cr-title {
    margin-bottom: 25px;
}

.cr-title h2 {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.2em;
}

.cr-content {
    margin-bottom: 25px;
}

.cr-content p {
    font-size: 14px;
    color: #fff;
}

.git-form {
    position: relative;
    width: 100%;
}

.git-form input {
    width: 100%;
    height: 48px;
    background: #fff;
    border: none;
    outline: 0;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 300;
    padding-right: 45px;
}

.git-send {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
}

.git-send input {
    width: 20px;
    height: 20px;
    font-size: 0;
    background: url(images/plane.png) no-repeat center center/ contain;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.git-send input:hover {
    opacity: 0.7;
}

.wpcf7 form .wpcf7-response-output {
    padding: 20px;
    text-align: center;
}

.cr-form .wpcf7 form .wpcf7-response-output {
    color: #fff;
}

/* Footer */
#main-footer {
    padding: 65px 0 80px;
    text-align: center;
    background: url(images/footer-bg.jpg) no-repeat center center/ cover;
    position: relative;
    z-index: 0;
}

#main-footer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(27,37,72,0.93);
    z-index: 0;
}

.footer-top {
    position: relative;
    z-index: 10;
    padding-bottom: 55px;
}

.footer-logo {
    max-width: 159px;
    margin: 0 auto 55px;
}

.footer-logo a {
    display: block;
}

.footer-logo img {
    width: 100%;
}

.footer-contact {
    width: 100%;
}

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

.fc-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 35px;
    font-family: 'Montserrat';
    font-size: 14px;
    color: #fff;
}

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

.fc-contact i {
    margin-right: 12px;
    color: #d1b000;
}

.fc-contact .ai-font-location-c {
    font-size: 18px;
}

.fc-contact .ai-envelope-f {
    font-size: 12px;
}

.fc-contact a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fc-contact a:hover {
    color: #d1b000;
}

.footer-bottom {
    padding-top: 45px;
    border-top: 1px solid rgba(167,171,180,0.24);
    position: relative;
}

.footer-navigation {
    margin-bottom: 50px;
}

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

.footernav li {
    margin: 0 15px;
}

.footernav li a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.075em;
}

.footernav li a:hover {
    color: #d1b000;
}

.footer-copyright {
    margin-bottom: 25px;
    line-height: 1.3;
    font-size: 14px;
    color: #b9b9b9;
}

.footer-copyright a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-copyright a:hover {
    color: #d1b000;
}

.footer-mls {
    font-size: 26px;
    color: #9197a3;
}

/* Sidebar */
.sidebar-qs {
    /*padding: 20px;*/
    /*padding: 20px 0 20px 10px;*/
    padding: 20px 0;
}

.sidebar-qs .section-title h2 {
    font-size: 40px;
    margin: 0;
    line-height: 1;
}

.sidebar-qs .section-title .small {
    font-size: 20px;
}

.sidebar-qs .qs-title {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.sidebar-qs .qs-form {
    margin-left: 0;
}

.sidebar-qs .qs-form > .area {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
}

.sidebar-qs .qs-form > .qs-prices {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0 !important;
}

.sidebar-qs .qs-form > div {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 10px;
}
/*******************************************************
 *
 * 3. 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 { 

}

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

}

.bootstrap-select.btn-group {
    /*select width, display and position are set here and set to !important
    no height attribute. padding in .bootstrap-select.btn-group .dropdown-toggle sets the height*/
    width: 100%;
}

.bootstrap-select.btn-group .dropdown-toggle {
    /*form appearance should be set here
    no height attribute. set the height by setting the padding*/
    border-radius: 0;
    width: 100%;
    padding: 18px 10px;
    border: none;
    border-bottom: 1px solid #555555;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
    background: url(images/arrow.png) no-repeat right 5px center;
    font-size: 14.65px;
    color: #4a4a4a;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    /*font size, family, etc. should be set here*/
    font-size: 14.65px;
    color: #4a4a4a;
}

#listings-results .listings-grid .listings-img {
    display: block;
}
	
.grecaptcha-badge{
    z-index: 999999 !important;
} 

.page-id-108 #breadcrumbs,
.single-aios-agents #breadcrumbs{
    margin: 1.12em 0;
    line-height: 1.7;
}

.qs-form .filter-option {
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.qs-form ul.dropdown-menu.inner {
    max-height: 200px !important;
}

.ihf-printable-template p#breadcrumbs, 
#content .listings-printable-photo div strong {
    display: none !important;
}

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

    body.ihf-results-template #content-sidebar aside,
    body.ihf-results-template #content-full aside{
        display: none;
    }
.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=text], 
.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=email], 
.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=tel], 
.aiosp-wrap .aiosp-ref-\#agents-popup-form textarea {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.areaPickerExpandAllTopBar #areaPickerClearAll .glyphicon-remove-circle {
    color: #fff !important;
}

#ihf-main-container .chosen-results {
    padding-left: 0;
    margin-left: 0;
}

/* #content-sidebar #listings-results .listings-table .listings-table-body .listings-price {
    min-width: 131px;
}

#content-sidebar #listings-results .listings-table .listings-table-body .listings-sqft,
#content-sidebar #listings-results .listings-table .listings-table-body .listings-num {
    min-width: 95px;
}

#content-sidebar #listings-results .listings-table .listings-table-body .listings-item {
    overflow-x: auto;
} */

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

.sort-dropdown #error-message{
    color: #a94442;
    text-align: center;
}

#listings-details .listings-form .listings-field.submit {
    right: 27px !important;
}


#ihf-main-container .nav-tabs {
    margin: 0;
}
#ihf-main-container ul.chosen-results {
    margin: 0;
    padding: 0;
}


/* IHF RESULTS PAGE */
.page-id-0.ihf-results-template #content-sidebar #content {
    width: 100%;
}
.page-id-0.ihf-results-template .sidebar {
    display: none;
}
#listings-details .listings-slideshow-text span {
    text-shadow: 0px 1px 3px #000000 !important;
}
#listings-details .listings-form input[type=text], #listings-details .listings-form input[type=email],
#listings-details .listings-form input[type=tel] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
#listings-details .listings-form textarea {
    padding-left: 5px !important;
}

#cityzip option{
    display: none;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

/*.glyphicon-ok:before {
  content: "\e013" !important;
}*/

select#ihf-select-property-type {
    display: block !important;
}

div#ihf_select_property_type_chosen {
    display: none;
}

.wpcf7-spinner {
    position: absolute;
}