/*
Theme Name: Nelson Home Group
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/


/*

TABLE OF CONTENTS

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

*/


/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-title: 'Playfair Display', serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;

    --aios-ihf-template-global-page-primary-color: #1c6b73 !important;
}


/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/


/* Sub Menu */

#nav li,
#nav2 li {
    position: relative;
    display: inline-block;
}

#nav .sub-menu,
#nav2 .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    display: none;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 220px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding-top: 54px;
}

#nav .sub-menu a,
#nav2 .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 13px 10px;
    font-size: 14px;
    text-transform: uppercase;
    background: rgb(26 106 114 / 80%);
}

#nav .sub-menu a:hover,
#nav2 .sub-menu a:hover {
    background: rgb(26 106 114 / 100%);
    color: #fff;
    text-decoration: none;
}

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

#nav li:hover > .sub-menu,
#nav2 li:hover > .sub-menu {
    display: block;
}

#nav .sub-menu li,
#nav2 .sub-menu li {
    position: relative;
    display: block;
    padding: 0 0 1px;
}


/* Global */

.site-canvas {
    display: block;
    width: 100%;
}

.custom-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.relative {
    position: relative;
}

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

.bg-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ease {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#main-wrapper {
    overflow: hidden;
}


/* Flex */

.flex {
    display: flex;
}


/* Section title */

.section-title-inner {
    text-transform: uppercase;
    padding: 9px 0 14px 27px;
}

.section-title-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1a6a72;
}

.section-title-sm {
    font-size: 18px;
    color: #343434;
    letter-spacing: 17px;
    padding-left: 14px;
}

.section-title-lg {
    font-size: 90px;
    font-family: var(--font-family-title);
    letter-spacing: 1.5px;
    padding: 16px 0 8px;
}

.section-title-md {
    font-size: 60px;
    font-family: var(--font-family-title);
    letter-spacing: 1px;
}

.section-title-accent {
    position: absolute;
    left: -44px;
    top: 39%;
    width: 11px;
    height: 11px;
    background: #02233f;
    border-radius: 11px;
}

.section-title-accent::before {
    content: '';
    position: absolute;
    right: calc(100% + 7px);
    height: 1px;
    width: 100vw;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #cecece;
}

.section-title-invert .section-title-accent {
    background: #fff;
}

.section-title-invert .section-title-sm {
    color: #858585;
}

.section-title-invert .section-title-md,
.section-title-invert .section-title-lg {
    color: #fff;
}


/* Site Btn */

.site-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 66px;
    color: #032440;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #1a6a72;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.site-btn.site-btn-sm {
    width: 159px;
}

.site-btn.site-btn-md {
    width: 204px;
}

.site-btn:hover {
    background: #1a6a72;
    color: #fff;
}


/* Header */

.header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 15px !important;
}

.header.fixed {
    position: fixed;
    top: -120px;
}
.header.fixed.fh {
    top: 0;
}

.header-container {
    max-width: 1482px;
    width: 100%;
    margin: auto;
}

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


/* Header Nav */

.header-nav {
    flex-grow: 1;
}
.header-nav #nav,
.header-nav #nav2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*
.header-nav #nav > li {
    padding: 0 10px;
}
*/


/* .header-nav #nav > li:first-child {
    padding-left: 0;
} */

/*
.header-nav #nav > li:last-child {
    padding-right: 0;
}
*/

.header-nav #nav > li > a,
.header-nav #nav2 > li > a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}


/* .header-nav #nav > li > a span {
    position: relative;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    display: block;
    width: 103%;
} */


/* .header-nav #nav > li > a span::before {
    position: absolute;
    top: 103%;
    content: attr(data-title);
    font-weight: 500;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
} */


/* 
.header-nav #nav > li:hover > a span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
} */

.header-nav #nav > li > a::after,
.header-nav #nav2 > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    height: 3px;
    width: 0;
    margin: auto;
    background: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header-nav #nav > li:hover > a::after,
.header-nav #nav2 > li:hover > a::after {
    width: 62px;
}


/* Fixed Header */

.header.fixed {
    background: rgba(26, 107, 114, 0.57);
    padding: 6px 15px !important;
}

.fixed .default-logo {
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.fixed .fh-logo {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.fh-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    opacity: 0;
    visibility: hidden;
    padding-left: 50px;
}

.fh-sep {
    height: 24px;
    width: 1px;
    margin: 0 45px 0 39px;
    background: #fff;
}


/* Slideshow */

.slider-wrap {
    position: relative;
}

.slider-main {
    position: relative;
}

.slider-main .cycloneslider-template-video .cycloneslider-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}

.slider-main::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30%;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 11;
}

.slider-wrap .cycloneslider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slider-wrap .aios-slider{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slider-logo {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 20;
}
.slider-main .cycloneslider-template-video .cycloneslider-volume{
    position: absolute;
    right: 65px;
    bottom: 62px;
    z-index: 100;
    top: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.slider-main .cycloneslider-template-video .cycloneslider-volume.off{}
.f-sound {
    position: absolute;
    right: 65px;
    bottom: 62px;
    z-index: 100;
    display: none;
}

.f-sound-inner img {
    margin: 69px auto 0;
    display: block;
}


/* Floating SMI */

.f-smi {
    position: fixed;
    right: 59px;
    top: 36.5%;
    z-index: 1001;
}

.f-smi.fh a,
.f-smi.fh .f-smi-social a {
    color: #1c6b73;
    border-color: #1c6b73;
}

.fh .f-smi-contact::before {
    background: #1c6b73;
}

.f-smi-contact {
    padding: 0 0 26px;
}

.f-smi-contact::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #fff;
    z-index: 0;
    margin: auto;
}

.f-smi a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    border-radius: 46px;
    text-align: center;
    font-size: 17px;
    margin: 0 0 14px;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.f-smi a i {
    display: block;
}

.f-smi .f-smi-social a {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 17px;
}

.f-smi a:hover,
.f-smi.fh a:hover {
    background: #1a6a72;
    color: #fff;
}

.f-smi .f-smi-social a:hover,
.f-smi.fh .f-smi-social a:hover {
    background: #1a6a72;
    border: 1px solid #1a6a72;
}


/* As seen on */

.seen-wrap {
    padding: 78px 60px 0;
	z-index: 2;
    margin-bottom: -100px;
    position: relative;
}

.seen-container {
    max-width: 1316px;
    width: 100%;
    margin: auto;
}

.seen-main {
    align-items: center;
}

.seen-label {
    color: #343434;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2.8px;
    width: 150px;
}

.seen-logos-slick {
    width: calc(100% - 150px);
}

.seen-logos-item {
    padding: 0 5px;
    width: calc(100% / 5);
}

.seen-logos-item img {
    margin-left: auto;
    margin-right: auto;
    height: 55px;
    object-fit: scale-down;
}

.seen-logos-slick-holder {
    max-width: 1193px;
    width: 100%;
    margin-left: auto;
    margin-right: -58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.seen-logos-slick-holder:not(.slick-initialized) .seen-logos-item:nth-child(n+5) ~ div {
    display: none;
}


/* Welcome */

.wc-wrap {
    padding: 25px 0 110px;
    padding: 210px 0 110px;
}

.wc-container {
    max-width: 1600px;
    width: 100%;
    padding: 0 59px;
    margin: auto;
}

.wc-main {
    align-items: flex-end;
    justify-content: center;
}

.wc-content {
    min-height: 620px;
    width: 64.171%;
    box-shadow: -13px 39px 30px rgb(0 0 0 / 5%);
}

.wc-img {
    min-height: 620px;
    width: 35.829%;
}

.wc-img-inner::before {
    content: '';
    position: absolute;
    right: -59px;
    top: 69px;
    width: 100%;
    height: 100%;
    background: #1c6b73;
    z-index: 0;
}

.wc-img-inner::after {
    content: '';
    position: absolute;
    right: -33px;
    left: -34px;
    top: 36px;
    width: 100%;
    height: 100%;
    border: 3px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(to left, #ececec, #202020);
    z-index: 20;
}

.wc-img-inner img {
    z-index: 10;
}

.wc-content-bg img {
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: none;
    object-position: left 2px bottom 0px;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wc-content-inner {
    z-index: 10;
    padding: 42px 49px 30px 139px;
}

.wc-text {
    padding: 0 0 0 28px;
}

.wc-text p {
    max-width: 550px;
    letter-spacing: 0.3px;
    font-size: 15px;
    color: #565654;
    line-height: 1.9;
    margin: 46px 0 86px;
}


/* Areas */

.areas-wrap {
    /* background: #404040; */
}


/* Map */

.aoe-map-container {
    display: block;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.aoe-map-wrapper {
    display: block;
    position: relative;
}

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

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

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

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

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

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

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

.aoe-map-pin span {
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    width: 100%;
    display: inline-block;
    text-shadow: -1px 1px 1px #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.aoe-map-hovers > div.active .aoe-map-pin span {
    color: #fff;
    text-shadow: none;
}

.aoe-map-content-mobile {
    display: none;
}


/* Map Hovers */

.aoe-map-hovers > div.clay-county .aoe-map-img {
    right: 334px;
    top: 234px;
}

.aoe-map-hovers > div.johnson-county .aoe-map-img {
    right: 499px;
    top: 448px;
}

.aoe-map-hovers > div.clinton-county .aoe-map-img {
    right: 331px;
    top: 79px;
}

.aoe-map-hovers > div.buchanan-county .aoe-map-img {
    right: 494px;
    top: 40px;
}

.aoe-map-hovers > div.cass-county .aoe-map-img {
    right: 272px;
    top: 555px;
}

.aoe-map-hovers > div.platte-county .aoe-map-img {
    right: 494px;
    top: 196px;
}

.aoe-map-hovers > div.jackson-county .aoe-map-img {
    right: 291px;
    top: 352px;
}

.aoe-map-hovers > div.ray-county .aoe-map-img {
    right: 144px;
    top: 194px;
}

.aoe-map-hovers > div.leavenworth-county .aoe-map-img {
    right: 565px;
    top: 254px;
}

.aoe-map-hovers > div.wyandotte-county .aoe-map-img {
    right: 490px;
    top: 373px;
}


/* Labels */

.aoe-map-hovers > div.clay-county .aoe-map-pin {
    top: 291px;
    right: 411px;
}

.aoe-map-hovers > div.johnson-county .aoe-map-pin {
    top: 575px;
    right: 545px;
}

.aoe-map-hovers > div.clinton-county .aoe-map-pin {
    top: 138px;
    right: 371px;
}

.aoe-map-hovers > div.buchanan-county .aoe-map-pin {
    top: 104px;
    right: 524px;
}

.aoe-map-hovers > div.cass-county .aoe-map-pin {
    top: 690px;
    right: 372px;
}

.aoe-map-hovers > div.platte-county .aoe-map-pin {
    top: 257px;
    right: 518px;
}

.aoe-map-hovers > div.jackson-county .aoe-map-pin {
    top: 476px;
    right: 393px;
}

.aoe-map-hovers > div.ray-county .aoe-map-pin {
    top: 234px;
    right: 205px;
}

.aoe-map-hovers > div.leavenworth-county .aoe-map-pin {
    top: 340px;
    right: 597px;
}

.aoe-map-hovers > div.wyandotte-county .aoe-map-pin {
    top: 390px;
    right: 501px;
    transform: rotate(16deg);
}

.kansas a {
    text-transform: uppercase;
    text-align: center;
    color: #2c2c2c;
    font-size: 12px;
    position: absolute;
    right: 446px;
    top: 423px;
    font-weight: 500;
}

.kansas a i {
    height: 7px;
    width: 7px;
    display: block;
    background: #1a6a72;
    border-radius: 6px;
    position: absolute;
    left: -5px;
    top: -9px;
}

.kansas a i::before {
    content: '';
    position: absolute;
    border: 1px solid #1a6a72;
    width: 11px;
    height: 11px;
    border-radius: 11px;
    left: -2px;
    top: -2px;
}

.kansas.active a {
    color: #fff;
}

.kansas.active a i {
    background: #fff;
}

.kansas.active a i::before {
    border-color: #fff;
}

.kansas {
    z-index: 100 !important;
}


/* Map Text */

.map-text {}

.map-text div {
    position: absolute;
    z-index: 7;
    pointer-events: none;
}

.map-text div.elem-active {}

.map-text a {
    display: block;
    pointer-events: auto;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.map-text a:hover {
    transform: scale(1.2);
}

.map-text i {
    display: block;
    font-size: 24px;
    color: #333333;
    margin-bottom: 1px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.map-text div.elem-active i {
    color: #5b5b5b;
}

.map-text span {
    display: inline-block;
    vertical-align: middle;
    font-size: 10px !important;
    font-weight: 600;
    color: #5b5b5b;
    line-height: 0.9;
    text-shadow: -1px 1px 1px #fff;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.map-text div.elem-active span {
    color: #5b5b5b;
    text-shadow: none;
}

.map-text a.map-dot-left i,
.map-text a.map-dot-right i,
.map-text a.map-dot-top i,
.map-text a.map-dot-top-center i,
.map-text a.map-dot-bottom i,
.map-text a.map-dot-top-right i,
.map-text a.map-dot-bottom-left i,
.map-text a.map-dot-bottom-right i {
    height: 7px;
	width: 7px;
	display: block;
	/* background: #1a6a72; */
	border-radius: 6px;
	position: absolute;
	/* left: -5px;
	top: -9px; */
}

.map-text a.map-dot-left i::before,
.map-text a.map-dot-right i::after,
.map-text a.map-dot-top i::before,
.map-text a.map-dot-top-center i::before,
.map-text a.map-dot-bottom i::after,
.map-text a.map-dot-top-right i::before,
.map-text a.map-dot-bottom-left i::after,
.map-text a.map-dot-bottom-right i::after {
    content: '';
    background: #898989;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.map-text a.map-dot-left i::before {
    display: inline-block;
    vertical-align: middle;
    /* margin-right: 5px; */
    margin-bottom: 2px;
}

.map-text a.map-dot-right i::after {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
    margin-bottom: 2px;
}

.map-text a.map-dot-top i::before {
    display: block;
    margin-bottom: 1px;
}

.map-text a.map-dot-top-center i::before {
    display: block;
    margin: 0 auto 1px;
}

.map-text a.map-dot-bottom i::after {
    display: block;
    margin: 1px auto 0;
}

.map-text a.map-dot-bottom-left i::after {
    display: block;
    margin: 1px 0 0;
}

.map-text a.map-dot-bottom-right i::after {
    display: block;
    margin: 1px 0 0 auto;
}

.map-text a.map-dot-top-right i::before {
    display: block;
    margin: 0 6px 4px auto;
}

.map-text div.elem-active a.map-dot-left i::before,
.map-text div.elem-active a.map-dot-right i::after,
.map-text div.elem-active a.map-dot-top i::before,
.map-text div.elem-active a.map-dot-top-center i::before,	
.map-text div.elem-active a.map-dot-bottom i::after,
.map-text div.elem-active a.map-dot-top-right i::before,
.map-text div.elem-active a.map-dot-bottom-left i::after,
.map-text div.elem-active a.map-dot-bottom-right i::after {
    background: #1a6a72;
}

.map-text span.map-text-sm {
    font-size: 8px !important;
    line-height: 1.2;
}

.map-text a.map-dot-top i {
	top: -5px;
}

.map-text a.map-dot-top-center i {
	left: 50%;
	top: -5px;
	transform: translate(-50%);
}

.map-text a.map-dot-bottom i {
	bottom: -10px;
	left: 50%;
}

.map-text a.map-dot-right i {
	right: -5px;
	top: -5px;
}

.map-text a.map-dot-top-right i {
	top: -5px;
	right: 0;
}

.map-text a.map-dot-left i {
	left: -10px;
	top: -5px;
}

.map-text a.map-dot-right span {
  margin-right: 5px;
}

.map-text a.map-dot-bottom-right i {
	right: 0;
	bottom: -10px;
}

.map-text [data-map-target="platte-county"].map-text-47 a.map-dot-left i {
	top: 0px;
	left: 0px;
}

.map-text a.map-dot-bottom-left i {
  bottom: -10px;
  left: 5px;
}

.map-text [data-map-target="johnson-county"].map-text-10 {
	margin-top: 8px;
}

.map-text [data-map-target="johnson-county"].map-text-10 i {
	left: 5px;
}


.map-text a:hover i::after,
.map-text a:hover i::before {	
	margin-left: 2px;
	margin-bottom: 2px;
	outline: 1px solid #1a6a72;
	outline-offset: 1px;
}

.map-text div.elem-active a i::before,
.map-text div.elem-active a i::after {
    margin-left: 2px;
	margin-bottom: 2px;
	outline: 1px solid #1a6a72;
	outline-offset: 1px;
}

[data-map-target="johnson-county"].map-text-13
.map-text a.map-dot-right span {
	margin-right: 5px;
}

[data-map-target="platte-county"].map-text-47 span.map-text-sm {
    display: block;
}




/* Clay */

[data-map-target="clay-county"].map-text-01 {
    top: 240px;
    right: 423px;
}

[data-map-target="clay-county"].map-text-02 {
    top: 237px;
    right: 340px;
}

[data-map-target="clay-county"].map-text-03 {
    top: 251px;
    right: 378px;
}

[data-map-target="clay-county"].map-text-04 {
    top: 263px;
    right: 340px;
}

[data-map-target="clay-county"].map-text-05 {
    top: 323px;
    right: 395px;
}

[data-map-target="clay-county"].map-text-06 {
    top: 381px;
    right: 427px;
}

[data-map-target="clay-county"].map-text-07 {
    top: 337px;
    right: 449px;
    transform: rotate(90deg);
}

[data-map-target="clay-county"].map-text-08 {
    top: 366px;
    right: 402px;
}

[data-map-target="clay-county"].map-text-09 {
    top: 344px;
    right: 429px;
}

.map-text [data-map-target="clay-county"].map-text-09 a.map-dot-bottom::after {
    margin: -7px -2px 0 auto;
}


/* Johnson */

[data-map-target="johnson-county"].map-text-10 {
    top: 449px;
    right: 561px;
}

.map-text [data-map-target="johnson-county"].map-text-10 a.map-dot-top::before {
    margin: 4px 0 0 7px;
}

[data-map-target="johnson-county"].map-text-11 {
    top: 470px;
    right: 525px;
}

[data-map-target="johnson-county"].map-text-12 {
    top: 490px;
    right: 538px;
}

[data-map-target="johnson-county"].map-text-13 {
    top: 503px;
    right: 517px;
}

.map-text [data-map-target="johnson-county"].map-text-13 a.map-dot-top-right::before {
    margin: 7px 4px 0 auto;
}

[data-map-target="johnson-county"].map-text-14 {
    top: 517px;
    right: 530px;
}

[data-map-target="johnson-county"].map-text-15 {
    top: 536px;
    right: 556px;
}

[data-map-target="johnson-county"].map-text-16 {
    top: 557px;
    right: 594px;
}

[data-map-target="johnson-county"].map-text-17 {
    top: 551px;
    right: 509px;
}

[data-map-target="johnson-county"].map-text-18 {
    top: 500px;
    right: 466px;
    transform: rotate(90deg);
}

[data-map-target="johnson-county"].map-text-19 {
    top: 593px;
    right: 629px;
}

.map-text [data-map-target="johnson-county"].map-text-19 a.map-dot-bottom::after {
    margin: 1px 15px 0 auto;
}

[data-map-target="johnson-county"].map-text-20 {
    top: 597px;
    right: 560px;
}

[data-map-target="johnson-county"].map-text-21 {
    top: 599px;
    right: 505px;
}


/* Clinton */

[data-map-target="clinton-county"].map-text-22 {
    top: 82px;
    right: 337px;
}

[data-map-target="clinton-county"].map-text-23 {
    top: 159px;
    right: 448px;
}

[data-map-target="clinton-county"].map-text-24 {
    top: 181px;
    right: 405px;
}

[data-map-target="clinton-county"].map-text-25 {
    top: 202px;
    right: 345px;
}

[data-map-target="clinton-county"].map-text-26 {
    top: 218px;
    right: 438px;
}


/* Buchanan */

[data-map-target="buchanan-county"].map-text-27 {
    top: 55px;
    right: 544px;
}

[data-map-target="buchanan-county"].map-text-28 {
    top: 69px;
    right: 505px;
}

[data-map-target="buchanan-county"].map-text-29 {
    top: 135px;
    right: 523px;
}

[data-map-target="buchanan-county"].map-text-30 {
    top: 153px;
    right: 602px;
}

[data-map-target="buchanan-county"].map-text-31 {
    top: 163px;
    right: 552px;
}

[data-map-target="buchanan-county"].map-text-32 {
    top: 169px;
    right: 650px;
}


/* Cass */

[data-map-target="cass-county"].map-text-33 {
    top: 564px;
    right: 436px;
}

[data-map-target="cass-county"].map-text-34 {
    top: 587px;
    right: 431px;
}

[data-map-target="cass-county"].map-text-35 {
    top: 583px;
    right: 386px;
}

[data-map-target="cass-county"].map-text-36 {
    top: 573px;
    right: 303px;
}

[data-map-target="cass-county"].map-text-37 {
    top: 616px;
    right: 407px;
}

[data-map-target="cass-county"].map-text-38 {
    top: 658px;
    right: 359px;
}


/* Platte */

[data-map-target="platte-county"].map-text-39 {
    top: 203px;
    right: 547px;
}

[data-map-target="platte-county"].map-text-40 {
    top: 242px;
    right: 602px;
}

[data-map-target="platte-county"].map-text-41 {
    top: 272px;
    right: 536px;
}

[data-map-target="platte-county"].map-text-42 {
    top: 310px;
    right: 537px;
    transform: rotate(56deg);
}

[data-map-target="platte-county"].map-text-43 {
    top: 357px;
    right: 541px;
    transform: rotate(56deg);
}

[data-map-target="platte-county"].map-text-44 {
    top: 365px;
    right: 499px;
    transform: rotate(56deg);
}

[data-map-target="platte-county"].map-text-45 {
    top: 345px;
    right: 486px;
    transform: rotate(56deg);
}

[data-map-target="platte-county"].map-text-47 {
    top: 295px;
    right: 473px;
    transform: rotate(56deg);
}

[data-map-target="platte-county"].map-text-47 {
    top: 307px;
    right: 480px;
    transform: rotate(56deg);
}

.map-text [data-map-target="platte-county"].map-text-47 a.map-dot-left::before {
    margin: 15px -7px 0 0;
}

[data-map-target="platte-county"].map-text-47 a::before {
    position: relative;
    top: 16px;
    left: -3px;
}


/* Jackson */

[data-map-target="jackson-county"].map-text-48 {
    top: 403px;
    right: 362px;
}

[data-map-target="jackson-county"].map-text-49 {
    top: 406px;
    right: 297px;
}

[data-map-target="jackson-county"].map-text-50 {
    top: 446px;
    right: 398px;
}

[data-map-target="jackson-county"].map-text-51 {
    top: 446px;
    right: 303px;
}

[data-map-target="jackson-county"].map-text-52 {
    top: 467px;
    right: 303px
}

[data-map-target="jackson-county"].map-text-53 {
    top: 496px;
    right: 307px;
}

[data-map-target="jackson-county"].map-text-54 {
    top: 515px;
    right: 374px;
}

[data-map-target="jackson-county"].map-text-55 {
    top: 524px;
    right: 436px;
}

[data-map-target="jackson-county"].map-text-56 {
    top: 539px;
    right: 356px;
}

[data-map-target="jackson-county"].map-text-57 {
    top: 541px;
    right: 306px;
}


/* Ray */

[data-map-target="ray-county"].map-text-58 {
    top: 244px;
    right: 278px;
}

[data-map-target="ray-county"].map-text-59 {
    top: 273px;
    right: 245px;
}

[data-map-target="ray-county"].map-text-60 {
    top: 302px;
    right: 235px;
}

[data-map-target="ray-county"].map-text-61 {
    top: 315px;
    right: 228px;
}

[data-map-target="ray-county"].map-text-62 {
    top: 349px;
    right: 283px;
}

[data-map-target="ray-county"].map-text-63 {
    top: 343px;
    right: 168px;
}


/* Leavenworth */

[data-map-target="leavenworth-county"].map-text-64 {
    top: 274px;
    right: 619px;
}

.map-text [data-map-target="leavenworth-county"].map-text-64 a.map-dot-right::after {
    margin: -6px 0 0 0;
}

[data-map-target="leavenworth-county"].map-text-65 {
    top: 292px;
    right: 628px;
}

.map-text [data-map-target="leavenworth-county"].map-text-65 a.map-dot-right::after {
    margin: -6px 0 0 0;
}

[data-map-target="leavenworth-county"].map-text-66 {
    top: 382px;
    right: 633px;
}

[data-map-target="leavenworth-county"].map-text-67 {
    top: 419px;
    right: 664px;
}


/* Wyandotte */

[data-map-target="wyandotte-county"].map-text-68 {
    top: 406px;
    right: 568px;
}

[data-map-target="wyandotte-county"].map-text-69 {
    top: 425px;
    right: 530px;
}

[data-map-target="wyandotte-county"].map-text-70 {
    top: 440px;
    right: 507px;
}


/* Map List */

.aoe-map-content {
    position: absolute;
    left: 126px;
    top: 108px;
    z-index: 100;
    max-width: 536px;
    width: 100%;
}

.aoe-comm-areas ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 32px 5px 0 15px;
}

.aoe-comm-areas ul li {
    width: calc(100% / 3 - 10px);
    margin: 0 10px 10px 0;
}

.aoe-comm-areas ul li a {
	height: 45px;
	color: #fff;
	font-family: var(--font-family-title);
	text-transform: uppercase;
	font-size: 12px;
	background: #2c2c2c;
	align-items: center;
	justify-content: flex-start;
	padding-left: 15px;
}

.aoe-comm-areas ul li:nth-child(odd) {
    padding-right: 0;
}

.aoe-comm-areas ul li:nth-child(even) {
    padding-left: 0;
}

.aoe-comm-areas ul li a::after {
    content: '';
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 100%;
    height: 100%;
    background: #ccc;
    z-index: -1;
}

.aoe-comm-areas ul li a:hover,
.aoe-comm-areas ul li.active a {
    background: rgb(71, 136, 138);
    background: linear-gradient(90deg, rgba(71, 136, 138, 1) 0%, rgba(26, 106, 114, 1) 100%);
}

.aoe-comm-areas ul li a:hover::after,
.aoe-comm-areas ul li.active a::after {
    background: #0d3f44;
}


/* Team */

.team-wrap {
    /* min-height: 1093px; */
    padding: 160px 50px 129px;
}

.team-container {
    max-width: 1248px;
    width: 100%;
    margin: 0 auto;
}

.team-slick-holder {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.team-item {
    width: calc(100% / 4);
    padding: 30px 10px 10px;
}

.team-item a {
    display: block;
}

.team-img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 115, 120, 0.77);
    opacity: 0;
    z-index: 10;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.team-img::after {
    content: '';
    width: calc(100% - 44px);
    height: 100%;
    margin: auto;
    border: 3px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(4deg, #ffffff, #202020);
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 15;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.team-details {
    text-align: center;
}

.team-pos {
    margin: 0 -15px;
    color: #989898;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 26px 0 7px;
}

.team-name {
    text-transform: uppercase;
    font-family: var(--font-family-title);
    font-size: 26px;
    letter-spacing: 2.3px;
}

.team-top {
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0 38px;
}

.team-title {
    padding: 0 0 0 24px;
}

.team-top-link {
    padding: 0 61px 41px 15px;
}

.team-bottom-link {
    display: none;
}

.team-slick-holder:not(.slick-initialized) .team-item:nth-child(n+4) ~ div {
    display: none;
}


/* Hover */

.team-item a:hover .team-img::before,
.team-item a:hover .team-img::after {
    opacity: 1;
}


/* Testimonials */

.test-wrap {
    min-height: 900px;	
	padding-bottom: 200px;	
}

.test-bg canvas {
    filter: grayscale(1);
}

.test-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: transparent;
    z-index: 2;
}

.test-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    top: 42px;
}

.test-container {
    z-index: 100;
}

.test-main {
    align-items: flex-start;
}

.test-img {
    width: 38%;
}

.test-img img {
    z-index: 20;
}

.test-img canvas {
    min-height: 685px;
}

.test-content {
    width: 62%;
    padding: 0 59px 0 0;
}

.test-title {
	padding: 28px 0 29px 128px;
	min-height: 303px;
	left: 28vw;
	position: relative;
	top: 150px;
}

.test-desc {
    color: #267278;
    font-size: 12px;
    text-decoration: underline;
    letter-spacing: 1.2px;
    padding: 19px 0 0 37px;
}

.test-slick-wrap {
    min-height: 463px;
    background: #fff;
    margin-left: -235px;
    z-index: 30;
    box-shadow: 0 28px 23px rgb(0 0 0 / 10%);
}

.test-slick-bg img {
    object-fit: contain;
    opacity: 0.05;
}

.test-quote img {
    margin: auto;
}

.test-slick-inner {
    padding: 53px 15px 45px;
    z-index: 30;
}

.test-item {
    text-align: center;
}

.test-item p {
    color: #565654;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.test-item span {
    display: block;
    color: #565654;
    font-size: 18px;
    font-family: var(--font-family-title);
    margin: 24px 0 0;
}

.test-item-inner {
    max-width: 722px;
    width: 100%;
    margin: auto;
    padding: 27px 0 0;
}

.test-site-btn {
    margin: 47px auto 0;
}

.test-slick-holder:not(.slick-initialized) .test-item ~ div {
    display: none;
}

.test-slick-nav.global-slick-nav button {
    top: 41px;
}


/* Social */

.social-wrap {
    padding: 126px 59px;
}

.social-imgs {
    /* max-width: 807px; */
    width: 54.454%;
    z-index: 20;
}

.social-imgs-holder {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.social-item {
    width: calc(100% / 3);
    padding: 3px;
}

.social-item:nth-child(2),
.social-item:nth-child(5),
.social-item:nth-child(8) {
    transform: translateY(36px);
}

.social-item:nth-child(n + 6) ~ div canvas,
.social-item canvas {
    background: rgb(71, 136, 138);
    background: linear-gradient(90deg, rgba(71, 136, 138, 1) 0%, rgba(26, 106, 114, 1) 100%);
}

.social-item i.si-icon {
    font-size: 31px;
    color: #fff;
    position: absolute;
    left: 25px;
    bottom: 26px;
}

.social-item i.si-big-icon {
    font-size: 47px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.social-item i.si-big-icon.ai-font-youtube {
    font-size: 57px;
}

.social-item i.si-big-icon.ai-font-zillow {
    font-size: 55px;
}

.social-img {
    overflow: hidden;
}

.social-content {
    width: 45.546%;
    padding: 134px 0 0 88px;
}

.social-content .section-title-accent::before {
    width: 45vw;
}

.social-text {
    padding: 0 0 0 28px;
}

.social-text p {
    color: #565654;
    font-size: 15px;
    line-height: 1.9;
    max-width: 475px;
    letter-spacing: 0.3px;
    margin: 68px 0 36px;
}

.social-text a {
    color: #565654;
    font-size: 24px;
    font-family: var(--font-family-title);
    letter-spacing: 0.4px;
}

.social-item-links a:hover canvas {
    background: #9cddff;
}

.test-slick {
    max-width: 1002px;
    width: 100%;
    margin: auto;
    padding: 0 70px;
}


/* Slick Nav */

.global-slick-nav button {
    height: 41px;
    width: 41px;
    background: #2b757b;
    border-radius: 41px;
    border: 0;
    color: #fff;
    position: absolute;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.global-slick-nav button:hover {
    transform: scale(1.1);
}

.global-slick-prev {
    left: 0;
}

.global-slick-next {
    right: 0;
}

.global-slick-nav button i {
    display: block;
}

.global-slick-prev i {
    margin-right: -10px;
}

.global-slick-next i {
    margin-left: -10px;
}

.global-slick-nav button::before {
    content: '';
    position: absolute;
    width: 19px;
    top: 20px;
    height: 2px;
    background: #000;
}

.global-slick-prev::before {
    left: 35px;
}

.global-slick-next::before {
    right: 35px;
}


/* Hover */

.social-item a:hover img {
    transform: scale(1.1);
}


/* FP */

.fp-wrap {
    /* min-height: 1093px; */
    padding: 45px 27px 60px;
}

.fp-container {
    /* max-width: 1248px;
    width: 100%;
    margin: 0 auto; */
}

.fp-top {
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0 40px;
    max-width: 1243px;
    width: 100%;
    margin: auto;
}

.fp-title {
    padding: 0 0 0 24px;
}

.fp-top-link {
    padding: 0 54px 40px 15px;
}

.fp-bottom-link {
    display: none;
}

.fp-slick {
    padding: 0 32px;
}

.fp-slick::before {
    content: '';
    position: absolute;
    right: -59px;
    top: 60px;
    width: 100%;
    height: calc(100% - 3px);
    background: #1c6b73;
    z-index: 0;
}

.fp-slick::after {
    content: '';
    position: absolute;
    right: -33px;
    left: 0;
    top: 23px;
    width: 100%;
    height: calc(100% + 5px);
    border: 3px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(to left, #ececec, #202020);
    z-index: 5;
}

.fp-slick-holder {
    z-index: 10;
}

.fp-img {
    overflow: hidden;
}

.fp-img img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.fp-img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

.fp-details {
    position: absolute;
    left: 69px;
    bottom: 73px;
    color: #fff;
    z-index: 10;
}

.fp-price {
    font-size: 26px;
    font-family: var(--font-family-title);
    letter-spacing: 11.3px;
}

.fp-address {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1.8px;
    margin: 23px 0 0;
}

.fp-price i {
    font-style: normal;
    bottom: -3px;
    display: inline-block;
    position: relative;
}

.fp-slick-nav.global-slick-nav button {
    top: calc(50% - 21px);
    z-index: 100;
}

.fp-slick-prev {
    left: 65px;
}

.fp-slick-next {
    right: 65px;
}

.fp-slick-holder:not(.slick-initialized) .fp-item ~ div {
    display: none;
}

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

.fp-item a:hover .fp-img img {
    transform: scale(1.2);
}


/* Contact */

.contact-wrap {
    padding: 150px 15px 0;
}

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

.contact-title .section-title-accent {
    width: 0;
}

.contact-title .section-title-sm {
    color: #b7b7b7;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    font-size: 15px;
    color: #4d4d4d;
    border-bottom: 1px solid #666666;
    padding: 14px 3px;
}

.contact-form textarea {
    resize: none;
    height: 97px;
}

.contact-form {
    max-width: 780px;
    width: 100%;
    margin: 57px auto 0;
}

.cf-field-2 .cf-field {
    width: 50%;
}

.cf-field-2 .cf-field:nth-child(odd) {
    padding-right: 12px;
}

.cf-field-2 .cf-field:nth-child(even) {
    padding-left: 12px;
}

.contact-form input[type="submit"] {
    width: 100%;
    color: #032440;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #1a6a72;
    background: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background: #1a6a72;
    color: #fff;
}

.cf-field.cf-field-submit {
    position: relative;
    max-width: 159px;
    width: 100%;
    margin: 44px auto 0;
}

.cf-field.cf-field-submit .wpcf7-spinner,
.cf-field.cf-field-submit .ajax-loader {
    position: absolute;
    right: 3px;
    bottom: 3px;
    margin: 0;
}

.contact-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    left: auto;
    width: auto;
    top: -3px;
}

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


/* Footer */

.footer {
    min-height: 836px;
}

.footer-bg canvas {
    z-index: 0;
}

.footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.footer-container {
    padding: 110px 15px 78px;
}

.footer-main {
    background: rgb(26 106 114 / 86%);
    max-width: 1332px;
    width: 100%;
    margin: auto;
    /* min-height: 648px; */
    position: relative;
    z-index: 100;
    padding: 58px 15px 39px;
}

.footer-contact-inner {
    justify-content: center;
    align-items: flex-start;
}

.footer-cont-item a {
    display: flex;
}

.footer-cont-item {
    padding: 0 49px;
    width: calc(100% / 3);
}

.footer-cont-item span {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.4px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer-cont-item a:hover span,
.footer-disclaimer a:hover,
.footernav li a:hover,
.footer-copyright a:hover {
    color: #9cddff;
}

.footer-cont-item i {
    color: #9cddff;
    display: block;
    margin-right: 14px;
}

.footer-cont-item i.ai-font-phone {
    font-size: 16px;
}

.footer-cont-item i.ai-font-location-c {
    font-size: 17px;
    display: inline;
    bottom: -3px;
}

.footer-cont-item i.ai-font-envelope-f {
    font-size: 13px;
}

.footer-cont-item.footer-cont-item-address a {
    /*display: block;*/
    line-height: 2;
}

.footer-cont-item.footer-cont-item-address {
    max-width: 346px;
}

.footer-cont-item.footer-cont-item-tel a {
    justify-content: flex-end;
}

.footer-cont-item.footer-cont-item-tel,
.footer-cont-item.footer-cont-item-email {
    padding-top: 7px;
}


/* Footer Logos */

.footer-logos {
    align-items: center;
    justify-content: space-between;
    max-width: 523px;
    width: 100%;
    margin: 0 auto 69px;
}


/* Disclaimer */

.footer-disclaimer {
    text-align: center;
    color: #fff;
    font-size: 14px;
    max-width: 1140px;
    width: 100%;
    margin: 25px auto 0;
    letter-spacing: 1px;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 48px 0 0;
}

.footer-disclaimer a,
.footer-copyright a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


/* Footer Nav */

.footernav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0;
}

.footernav li {
    padding: 0 29px;
}

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


/* Footer Copyright */

.footer-copyright {
    font-size: 14px;
    color: #e5e5e5;
    text-align: center;
    margin: 20px 0 35px;
    letter-spacing: 1.4px;
}


/* Realtor */

.footer-realtor {
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
}

.footer-realtor i {
    font-size: 21px;
    margin: 0 10px;
}

.footer-realtor i.ai-font-realtor-mls {
    font-size: 30px;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/


/* Global */

body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/

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

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

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

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

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

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

.ip-banner .entry-title {
    font-size: 70px;
    font-family: var(--font-family-title);
    letter-spacing: 1.5px;
    color: #fff;
}

.ip-banner .container {
    position: absolute;
    z-index: 100;
    bottom: 0;
    height: auto;
    top: auto;
}

.ip-banner::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 250px;
    height: 250px;
    background-image: url(images/site-logo.png);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 100;
}


/* 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 {
    display: none;
}


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

#content .archive-subtitle {}

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

html #agents-results .agents-name {
    color: #1c6b73;
}

html #agents-results .agents-name a:hover {
    color: #1c6b73;
}

html #agents-results .agents-button,
html #agents-single .agents-button {
    border-color: #1c6b73;
    color: #1c6b73;
}

html #agents-results .agents-button:hover,
html #agents-single .agents-button:hover {
    border-color: #1c6b73;
    background: #1c6b73;
}

html #agents-single .agents-right .agents-description-line,
html #agents-results .agents-contact {
    background: #1c6b73;
}

html #agents-single ul.agents-contact li > div,
html #agents-single .agents-contact li > div > span {
    color: #1c6b73;
}

#inner-page-wrapper .entry-title {
    display: none;
}

#breadcrumbs {
    padding: 30px 0;
}

#agents-results .agent-top {
    display: none;
}

#content .entry h1,
#content .entry h2,
#content .entry h3,
#content .entry h4,
#content .entry h5,
#content .entry h6 {
    color: #1c6b73;
}



.center-form {
    text-align: center;
}

.center-form .aidefcf-wrapper .wpcf7 {
    margin: 0 auto;
    display: block;
}

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

.aios-custom-ihomefinder-printable-template #breadcrumbs,
.aios-custom-ihomefinder-printable-template #content .listings-printable-photo div strong,
.aios-custom-ihomefinder-printable-template .aios-mobile-header-1,
.aios-custom-ihomefinder-printable-template #content .listings-printable-header span,
.aios-custom-ihomefinder-details-template #ihfsaveListing .ihf-modal-form-response-output:nth-child(2) {
    display: none !important;
}


/* Testimonials */
body #aios-testimonials.aios-testimonials-page .aios-testimonials-content {
    padding-top: 0;
    padding-bottom: 10px;
}

/* Agents */
body #agents-results .agents-contact {
    justify-content: center;
}

body #agents-single .agents-contact li {
    margin: 0 0 20px !important;
    height: auto !important;
}

body #agents-single ul.agents-contact li > div {
    display: flex;
    justify-content: center;
    margin: 0 !important;
}

body #agents-single .agents-smi {
    display: none;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: #1c6b73;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    font-size: 10px;
    width: auto;
    left: auto;
    padding: 2px;
    top: 0;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form .wpcf7-spinner {
    position: absolute;
}

/* Contact Page */
body .ai-contact-wrap span a:hover {
    color: #1c6b73 !important;
}

/* Results Page */
.ihf-results-template .ip-banner .container {
    width: 100%;
}

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

/* Listings Splide */
body #listings-details .listings-slideshow-splide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgba(14, 14, 14, 0)), to(rgba(14, 14, 14, 1)));
    background: linear-gradient(to top, rgba(14, 14, 14, 0) 35%, rgba(14, 14, 14, 1) 100%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 10;
}

body #listings-details .listings-slideshow-splide.splide-default .listings-slideshow-splide-text span {
    text-shadow: 0px 1px 3px rgb(0 0 0 / 90%);
}

body.aios-custom-ihomefinder-details-template .listings-contact .wpcf7-not-valid-tip {
    left: auto;
    padding: 2px;
    top: 13px;
    font-size: 11px;
}

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

.aios-custom-ihomefinder-printable-template #breadcrumbs,
.aios-custom-ihomefinder-printable-template #content .listings-printable-photo div strong,
.aios-custom-ihomefinder-printable-template .aios-mobile-header-1,
.aios-custom-ihomefinder-printable-template #content .listings-printable-header span,
.aios-custom-ihomefinder-details-template #ihfsaveListing .ihf-modal-form-response-output:nth-child(2),
.ihf-results-template #ihf-save-search-form .ihf-modal-form-response-output:nth-child(2) {
    display: none !important;
}

#nav .sub-menu.show-menu,
#nav2 .sub-menu.show-menu {
    display: block;
    opacity: 1;
}

body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
/*#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}*/

.ihf-results-template #listings-results .listings-table .listings-table-body .listings-table-label {
    color: #fff;
}

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    top: 6%;
}

.single-post .ip-banner .entry-title {
    display: none;
}
.single-post #content .entry h3 {
    font-size: 24px;
    line-height: 1.1;
}

.aso-wrap {
	text-align: center;
}

.aso-wrap p {
	font-size: 30px;
	font-family: var(--font-family-title);
}

.aso-wrap p img {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}

.aso-wrap a {
	margin: 20px auto 0;
	font-weight: 400;
	font-family: var(--font-family-default);
	font-size: 16px;
}

.help-block span {
	display: block;
	margin-bottom: 20px;
}

.agent-gall img {
	width: 100%;
	height: auto;
}

.home .footer,
.home .contact-wrap,
.home .fp-wrap,
.home .social-wrap,
.home .team-wrap,
.home .areas-wrap,
.home .wc-wrap,
.home .test-wrap,
.home .seen-wrap{
    display: none;
}

body .uwy.userway_p7 .userway_buttons_wrapper {
    top: auto !important;
    bottom: 13px !important;
}

.aiosp-ref-popup {
    padding: 0 15px !important;
}

.aiosp-ref-popup .aios-popup-body {
    width: 100% !important;
    max-width: 800px;
    padding: 60px !important;
    min-height: auto !important;
    overflow: hidden;
}

.aiosp-close {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.amh-header-buttons .amh-phone-text-hide, .amh-header-buttons .amh-email-text-hide {
    font-size: 0 !important;
}

.trusted-map {
	max-width: 950px;
	margin: 0 auto 50px;
	width: 100%;
}

.trusted-map h2 {
	font-size: 30px;
	text-align: center;
	font-family: var(--font-family-title);
	margin-bottom: 50px;
}

.trusted-map img {
	width: 100%;
}

.testi-wrap {	
	position: relative;	
}

.testi-item {
  display: inline-block;
  width: calc(100% / 3 - 40px);
  background: #fff;
  padding: 25px;
  margin: 0 0 30px;
  box-shadow: 0 10px 23px rgba(0,0,0,0.1);
}

.testi-header {
	display: flex;
	align-items: center;
}

.testi-header-title h2 {
	font-size: 26px;
	font-family: var(--font-family-title);
	margin-bottom: 10px;
}

.testi-header-title > span {
	font-size: 16px;
	color: #cecece;
	margin-bottom: 10px;
	display: block;
}

.testi-header-title .testi-rating span {
	font-size: 28px;
	margin-right: 5px;
	color: #fcbf02;
}

.testi-thumbnail {
	position: relative;
	width: 120px;
	margin-right: 10px;
}

.test-content {
	width: 100%;
	padding: 0;
}

.testi-content {
	margin-top: 30px;
	line-height: 24px;
}

.testi-items {
	max-width: 1390px;
	margin: 0 auto 0;
	position: relative;
	bottom: -180px;
	text-align: center;
}

.test-slick-nav.global-slick-nav {
	position: absolute;
	width: 100%;
	max-width: 1600px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	margin-top: 150px;
}

.testi-content p {
	text-align: left;
}

.testi-header-title {
	text-align: left;
}

.testi-items .slick-slide {	
	padding: 0 10px;
}

.testi-thumbnail::after {
  content: url('https://nelsonhomegroupkc.com/wp-content/uploads/2026/02/google-icon.png');
  position: absolute;
  right: 0;
  bottom: 0;
}

.aoe-viewall-btn {
	border: 1px solid #fff;
	max-width: 165px;
	text-align: center;
	display: flex;
	margin: 20px auto 30px;
	justify-content: center;
	align-items: center;
}

.aoe-viewall-btn a {
	text-align: center;
	display: flex;
	align-items: center;
	height: 45px;
	justify-content: center;
	color: #fff;
}

.aoe-viewall-btn a:hover {
	background: #fff;
	color: #1A6B72;
}

.test-wrap .slick-slide img {
	display: block;
	width: 100px;
	height: 100px;
	object-fit: cover;
	object-position: top;
	border-radius: 50%;
}

.menu-item-28:hover a {
    padding-bottom: 50px;
}

.header-nav #nav > li.menu-item-28:hover >  a {
    padding-bottom: 50px;
    background-color: transparent !important;
}

.menu-item-28 ul.sub-menu {
    max-height: 700px;
    overflow: overlay;
    scrollbar-width: thin;
    padding-top: 0 !important;
    transform: translate(-60%, 52px) !important;
}

.main-footer .cf-field .opt-txt input {
	width: 20px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	float: left;
	margin-right: 10px;
	margin-left: 0;
	appearance: auto;
}

.opt-txt {
	font-size: 12px;
	padding: 15px 0;
	text-align: left;
	line-height: 18px;
}

.hp-form-wrap .opt-txt p {
	color: #fff;
}

.footer-contact-info {	
	margin-top: 80px;
}

.footer-gt-form .opt-txt {
	color: #fff;
}

#content .cu-fields.cu-textarea {
	height: 160px;	
}

#content .about-fields.about-textarea {
	height: 160px;	
}

.opt-txt .wpcf7-list-item-label {
	display: none;
}

.opt-txt p > span {
	float: left;
}

.opt-txt > p > span .wpcf7-list-item {
	margin-left: 0 !important;
	margin-right: 10px;
}

.opt-txt input {
	margin-right: 10px;
}

.ft-contact-form .ft-form .field-input span.wpcf7-list-item-label {
    display: none;
}

.ihf-modal-more-info-replace, .ihf-schedule-replace, #ihfsaveListing .modal-body > div:first-child {
    display: grid;
}

.ihf-modal-more-info-replace > div:first-child, .ihf-schedule-replace > div:first-child, #ihfsaveListing .modal-body > div:first-child > div:first-child{
    order: 1;
}
