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

/*

TABLE OF CONTENTS

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

*/

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

:root {
    /** Font default */
    --font-family-default: 'Raleway', sans-serif;
    --font-family-title: 'Lato', sans-serif;
    --font-family-title-outline: 'Cormorant Garamond', 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: #043120;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4,0,.2,1);
}

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

/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}

#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 var(--light);
    color: var(--font-color-default);
    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;
}


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

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

.custom-container {
    /* max-width: 87.5vw; */
    max-width: 1283px;
    width: 100%;
    margin: auto;
}

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

.home video {
    cursor: pointer;
}

.rel {
    position: relative;
}

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

.w-bg {
    background: #fff;
}

.img-wrapper {
    position: relative;
}

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

.img-wrapper img {
    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;
}

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

.border-canvas-top {
    background-position: top;
}

.border-canvas-bot {
    background-position: bottom;
}


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

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

.txt-up {
    text-transform: uppercase;
}

.zi-100 {
    z-index: 100;
}

.rel-z {
    position: relative;
    z-index: 100;
}

.no-margin {
    margin: 0 !important;
}

/* Flex */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.ai-fs {
    align-items: flex-start;
}

.ai-fe {
    align-items: flex-end;
}

.ai-c {
    align-items: center;
}


.jc-fs {
    justify-content: flex-start;
}

.jc-fe {
    justify-content: flex-end;
}

.jc-c {
    justify-content: center;
}

.jc-sb {
    justify-content: space-between;
}

.fd-c{
    flex-direction: column;
}

/* Section Btn */
.section-btn {
    max-width: 219px;
    width: 100%;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    border-radius: 24px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.section-btn:hover {
    background: #fff;
    color: var(--primary);
}


.section-btn-w {
    border-color: #fff;
    background: #fff;
    color: var(--primary);
}

.section-btn-w:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}


.section-btn-g {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}


.section-btn.sm {
    max-width: 198px;
}

.section-btn.lg {
    max-width: 439px;
}

.section-btn.xl {
    height: 122px;
    max-width: 698px;
    border-radius: 60px;
    font-size: 30px;
    letter-spacing: 13.5px;
}






/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-title-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title-sm {
    text-transform: uppercase;
    color: #000000;
    font-family: var(--font-family-title);
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 10px;
    line-height: 1;
    position: relative;
    margin: 0 0 -100px 24px;
}

.section-title-img.reset {
    transform: translateY(0) !important;
}



/* Section Border */
.section-border {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
}

.section-border img {
    width: 100%;
}


/*Intro Video*/

.intro-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    background-color: #000;
    overflow: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

body.ip-container .intro-video{
    display: none;
}

body.intro-ended .intro-video {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
}

body.intro-ended {
    overflow: hidden auto!important;
}

.intro-inner, .intro-inner .textwidget {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.intro-video video {
    min-width: 100%;
    min-height: 100%;
    max-width: 150%;
    max-height: 150%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 1;
}

.user-navigated-from-a-page-on-the-site .intro-video {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
}

.skip-video {
    position: absolute;
    bottom: 30px;
    right: 110px;
    color: #fff;
    text-shadow: 0 2px 2px rgba(0,0,0,.90);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    z-index: 19;
    pointer-events: auto;
}


body.home.user-navigated-from-a-page-on-the-site {
    overflow: auto !important;
}

/* Header */
.header {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #fff;
    padding: 0 61px;
}

/* Header Logo */
.header-logo {
    opacity: 0;
    visibility: hidden;
}

/* Header Btn */
.header-btn {
    max-width: 219px;
    width: 100%;
    margin-left: auto;
}

/* Header Sep */
.header-sep {
    height: 93px;
    width: 1px;
    background: #fff;
    margin: 0 53px 0 48px;
}

.header-bm-icon {
    position: relative;
    height: 21px;
    width: 33px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-bm-icon:hover {
    opacity: 0.6;
}

.header-bm-icon::before,
.header-bm-icon::after,
.header-bm-icon i {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-bm-icon i {
    bottom: 0;
    margin: auto;
}

.header-bm-icon::after {
    top: auto;
    bottom: 0;
}

/* Fixed Header */
.fh.header {
    background: #fff;
    border: 0;
}

.fh .header-logo {
    opacity: 1;
    visibility: visible;
}

.fh .header-btn .section-btn {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.fh .header-btn .section-btn:hover {
    background: #fff;
    color: var(--primary);
}

.fh .header-bm-icon::before,
.fh .header-bm-icon::after,
.fh .header-bm-icon i,
.fh .header-sep {
    background: var(--primary);
}

/* Slide */
.slide-menu-bd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1050;
    pointer-events: none;
    display: none;
}
  
.slide-menu-bd.active {
    pointer-events: auto;
    display: block;
}

.sm-close {
    position: absolute;
    top: 31px;
    left: 33px;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
}

.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 463px;
    height: 100vh;
    background: #fff;
    z-index: 1060;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.slide-menu.active {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.slide-menu .sm-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-menu .sm-content {
    width: 100%;
    text-align: initial;
    padding: 18px 0 0;
}

.sm-content-logo {
    margin: 0 0 89px;
}

.sm-content-logo img {
    margin: auto;
}

/* Slidenav */
#slide-nav {
    text-align: center;
}
    
#slide-nav li {
    position: relative;
    padding: 15px 0;
}
    
#slide-nav a {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

#slide-nav a:hover {
    opacity: 0.5;
}

#slide-nav .sub-menu {
    display: none;
}


    



/* Slideshow */
.slider-main .aios-slider {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

.slider-border {
    bottom: -3px;
}

.ip-container .slider-border {
    left: -1px;
}

.ip-container .slider-border img {
    width: calc(100% + 1px);
}



/* Welcome */
.wc-wrap {
    background: #f4f4f4;
    padding: 170px 15px 249px;
}

.wc-border {
    bottom: 0;
    background: #fff;
}

.wc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 116px 0 0;
}

.wc-content-txt {
    font-size: 21px;
    color: var(--primary);
    line-height: 1.7;
    max-width: 840px;
    width: 100%;
    letter-spacing: 0.5px;
    margin: 10px 0 135px;
}

.wc-content-link {
    max-width: 219px;
    width: 100%;
}

/* Services */
.services-wrap {
    background: #fff;
    min-height: 500px;
    padding: 145px 0 164px;
}

.services-title {
    padding: 0 15px;
}


.services-title .section-title-sm {
    margin: 0px 0 -72px 13px;
}

.services-list {
    margin: 103px 0 0;
}

.services-li-box-main {
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    width: 100%;
    border-radius: 20px;
    line-height: 1.3;
    padding: 35px 41px;
    position: relative;
    z-index: 10;
}

.services-li-box-main.box-sm {
    max-width: 277px;
}

.services-li-box-main.box-lg {
    max-width: 438px;
}

.services-li-box-main.box-md {
    max-width: 388px;
}



.services-li-box-main ul li:not(:last-child) {
    margin: 0 0 13px;
}

.services-li-col1,
.services-li:nth-child(even) .services-li-col3 {
    width: 42.8071%;
}

.services-li-col2 {
    width: 22.9825%;
}

.services-li-col3,
.services-li:nth-child(even) .services-li-col1 {
    width: 34.2104%;
}

.services-li-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 0 18px;
}

.services-li:nth-child(even) .services-li-inner {
    flex-direction: row-reverse;
}

.services-li-box-img img.reset {
    transform: translateY(0) !important;
}

html:not(.no-js) .services-lib[data-aos=fade-up] {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}


/* List Number */
.services-li-no,
.services-li-content span {
    text-align: center;
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    font-family: var(--font-family-title);
    line-height: 1;
    padding: 6px 5px;
}

.services-li-content span {
    text-align: left;
}

.services-li-no span {
    display: inline-block;
    margin-left: -41px;
}

/* Services Content */
.services-li-content-title {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    font-family: var(--font-family-title);
    letter-spacing: 0.7px;
    line-height: 1.2;
    margin: 16px 0 16px;
}

.services-li-content-txt {
    font-size: 21px;
    color: #000;
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 389px;
    width: 100%;
}

.services-li-content-txt p:not(:last-child) {
    margin: 0 0 34px;
}

.services-lib-bot span {
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    font-family: var(--font-family-title);
    line-height: 1;
    padding: 6px 5px;
}

/* Box 1 */
.services-li-1 .services-li-box-inner {
    max-width: 398px;
    width: 100%;
}

.services-li-1 .services-li-box-img img{
    margin: 0 0 -29px auto;
}

/* Box 2 */ 
.services-li-2 .services-li-box-img img {
    margin: 0 0 44px 24px;
}

.services-li-2 .services-li-content {
    padding-top: 58px;
}

.services-li-2 .services-li-no {
    padding-top: 64px;
}

.services-li-2 .services-li-inner {
    padding: 0 0 6px;
}

/* Box 3 */
.services-li-3 .services-li-box-img img {
    margin: 0 0 58px 81px;
}

.services-li-3 .services-li-content {
    padding-top: 71px;
}

.services-li-3 .services-li-no {
    padding-top: 77px;
}

.services-li-3 .services-li-inner {
    padding: 0 0 26px;
}

/* Box 4 */
.services-li-4 .services-li-box-img img {
    margin: 0 0 17px 36px;
}

.services-li-4 .services-li-no {
    padding-top: 73px;
}

.services-li-4 .services-li-content {
    padding-top: 51px;
}

.services-li-4 .services-li-inner {
    padding: 0 0 31px;
}

/* Box 5 */
.services-li-5 .services-li-box-img img {
    margin: 0 0 18px 74px;
}

.services-li-5 .services-li-no {
    padding-top: 73px;
}

.services-li-5 .services-li-content {
    padding-top: 54px;
}

/* Services Bottom */
.services-list-bot {
    padding: 114px 15px 0;
}

.services-list-bot-inner {
    max-width: 1450px;
    width: 100%;
    margin: auto;
    border-radius: 20px;
    min-height: 621px;
    background: #f4f4f4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 85px 69px 91px;
}

.services-lib .services-li-no span {
    margin-left: 0;
}

.services-lib .services-li-no {
    padding: 2px 35px 0 0;
}

.services-lib-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 130px;
    
    margin: 0 0 23px;
}

.services-lib .services-li-content-txt {
    font-size: 18px;
}

.services-lib {
    width: calc(100% / 3);
    max-width: 385px;
    padding: 0 15px;
}

.services-lib .services-li-content-title {
    min-height: 72px;
    margin: 16px 0 16px;
}

/* Box 7 */
/* .services-li-7 .services-li-content-txt {
    max-width: 404px;
} */

.services-border {
    bottom: 0;
    background: #f4f4f4;
}

/* About */
.about-wrap {
    padding: 127px 15px 107px;
    background: #f4f4f4;
}

.about-img {
    width: 48.714%;
    padding: 0 56px;
}

.about-img-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.about-img-bg canvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-img-main {
    max-width: 512px;
    width: 100%;
    margin: auto;
    z-index: 5;
}

.about-content {
    width: 51.286%;
    padding: 49px 0 0 15px;
}

.about-content-inner {
    max-width: 544px;
    width: 100%;
    margin: 0 0 0 auto;
}

.about-title .section-title {
    justify-content: flex-start;
}

.about-title .section-title-img {
    /* padding: 0 0 0 43px; */
    margin: 0 0 0 -9px;
}

.about-title .section-title-sm {
    margin: 0 0 -72px 0;
}

.about-txt {
    font-size: 21px;
    line-height: 1.7;
    max-width: 544px;
    width: 100%;
    letter-spacing: 0.5px;
    margin: 123px 0 121px;
}

.about-txt p:not(:last-child) {
    margin: 0 0 36px;
}

.about-border {
    bottom: -2px;
}

.about-link {
    max-width: 198px;
    width: 100%;
}

/* Opportunities */
.opp-wrap {
    padding: 151px 0 201px;
    background: #fff;
}

.opp-title .section-title-sm {
    margin: 0 0 -69px 22px;
}

.opp-title img {
    margin: auto;
}

.opp-txt {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 119px 0 49px;
}

.opp-link a {
    margin: auto;
}

.opp-border {
    bottom: -3px;
}

/* Reviews */
.reviews-wrap {
    background: #f4f4f4;
    padding: 125px 15px 186px;
}

.reviews-container {
    max-width: 1480px;
    width: 100%;
    margin: auto;
}

.reviews-title {
    margin: 0 0 111px;
}

.reviews-title .section-title-sm {
    letter-spacing: 0;
    margin: 0 0 -72px 0;
}

.reviews-item {
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.reviews-item span {
    display: block;
    margin: 36px 0 0;
}

.reviews-nav button {
    padding: 0;
    margin: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0;
    position: absolute;
    top: 29px;
    z-index: 100;
    background: transparent;
}

.reviews-nav .prev {
    left: 0;
}

.reviews-nav .next {
    right: 0;
}

.reviews-holder-wrap {
    padding: 10px 145px 50px;
}

.reviews-item-inner {
    max-width: 870px;
    width: 100%;
    margin: auto;
}

.reviews-border {
    bottom: -3px;
}

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

/* Team */
.team-wrap {
    padding: 194px 0 298px;
    background: #fff;
}

.team-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1380px;
    width: 100%;
    margin: 0 auto 60px;
}

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

.team-item a {
    max-width: 361px;
    width: 100%;
    margin: auto;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.team-item .img-wrapper {
    overflow: hidden;
}

.team-item img {
    transition: all 0.3s ease;
}

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

.team-title .section-title-sm {
    margin: 0 0 -77px 9px;
}


.team-content {
    max-width: 1313px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto 109px;
}

.team-title {
    width: 35.9315%;
    padding: 0 15px 0 0;
}

.team-desc {
    width: 64.0685%;
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    padding: 0 0 11px;
}

.team-title .section-title {
    justify-content: flex-start;
}

.team-holder-wrap {
    padding: 0 0 17px;
}

.team-bg canvas {
    background-size: contain;
    opacity: 0.95;
    top: 34px;
}

.team-border {
    bottom: 0;
    background: #f4f4f4;
}

/* FAQ */
.faq-wrap {
    background: #f4f4f4; 
    padding: 182px 0 251px;
}

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

.faq-title .section-title-sm {
    margin: 0px 0 -85px 17px;
}

.faq-panel-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-panel-title a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    width: 63px;
    border-radius: 63px;
    background: var(--primary);
    color: #fff;
    font-size: 24px;
    transform: rotate(45deg);
}


.faq-panel-title a i::before {
    transition: all 0.3s ease;
}

.faq-panel-title a i::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 4px;
    background: var(--primary);
    margin: auto;
    transform: rotate(135deg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.faq-panel-title a span {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    display: block;
    max-width: 485px;
    width: 80%;
    padding: 0 15px 0 0;
    transition: all 0.3s ease;
}

.faq-panel-title a:hover span {
    color: var(--primary);
}

.faq-item {
    width: 50%;
    padding: 15px;
}

.faq-panel {
    background: #fff;
    min-height: 207px;
    border-radius: 50px;
    padding: 72px 60px;
    transition: all 0.3s ease;
}

.faq-panel-body u a:hover {
    color: #fff;
}

.faq-item .panel-collapse {
    padding: 0 65px 0 0;
}

.faq-panel-body {
    font-size: 18px;
    color: #fff;
    max-width: 485px;
    width: 100%;
    line-height: 1.7;
    /* margin: -10px 0 0; */
}

/* Open */
.faq-panel.open {
    background: var(--primary);
}

.open .faq-panel-title a i {
    background: #fff;
    color: var(--primary);
}

.open .faq-panel-title a span {
    color: #fff;
}

.open .faq-panel-title a i::before {
    opacity: 0;
}

.open .faq-panel-title a i::after {
    opacity: 1;
    visibility: visible;
}

.faq-list {
    padding: 61px 0 29px;
}

.faq-border {
    background: #fff;
    bottom: 0;
}

/* Social */
.social-wrap {
    padding: 43px 0 226px;
    background: #fff;
}

.social-title .section-title-sm {
    margin: 0 0 -76px 15px;
}

.social-desc {
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    max-width: 865px;
    width: 100%;
    margin: 44px auto 61px;
    padding: 0 15px;
    text-align: center;
}

.social-item {
    width: calc(100% / 7);
}

.social-brand {
    text-align: center;
    padding: 0 15px;
    margin: 59px 0 56px;
}

.social-brand-txt {
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 3px;
}

.social-brand-icon i {
    font-size: 38px;
    margin: 0 9px;
}

.social-brand-icon::before,
.social-brand-icon::after {
    content: '';
    height: 1px;
    width: 109px;
    background: #000;
    display: block;
}

.social-border {
    background: #f4f4f4;
    bottom: 0;
}

.social-item .img-wrapper {
    overflow: hidden;
}

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



/* Featured Listings */
.fl-wrap {
    background: #f4f4f4;
    padding: 133px 0 304px;
}

.fl-content-inner {
    max-width: 1313px;
    width: 100%;
    margin: 0 auto 102px;
    padding: 0 15px;
}

.fl-title {
    width: 47.156%;
    padding: 0 15px 0 17px;
}

.fl-title .section-title {
    justify-content: flex-start;
}

.fl-desc {
    width: 52.844%;
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: flex-end;
    /* padding: 32px 0 11px; */
}

.fl-title .section-title-sm {
    margin: 0 0 -69px 11px;
}

.fl-desc-inner {
    max-width: 553px;
    width: 100%;
}

.fl-holder-wrap {
    max-width: 1326px;
    width: 100%;
    margin: 0 auto 50px;
}

.fl-holder:not(.slick-initialize) .fl-item:nth-child(n + 3) ~ div {
    display: none;
}

.fl-item {
    width: calc(100% / 3);
    padding: 0 calc(41px / 2);
    text-align: center;
}

.fl-content-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.fl-content-desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.4px;
    margin: 20px 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-content-desc i {
    font-style: normal;
    display: block;
    margin: 0 10px;
}

.fl-content-price {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 31px;
}

.fl-content-txt {
    padding: 47px 23px 54px;
    border: 1px solid var(--primary);
    border-top: 0;
    border-radius: 0px 0px 4px 4px;
}

.fl-img {
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.fl-border {
    background: #fff;
    bottom: 0;
}

.fl-item a:hover {
    color: #000;
}


.fl-item a:hover .section-btn-g {
    background: var(--primary);
    color: #fff;
}


/* Contact */
.contact-wrap {
    padding: 140px 15px 0;
    background: #fff;
}

.contact-container {
    max-width: 1480px;
    width: 100%;
    margin: auto;
}

.contact-main {
    border: 3px solid var(--primary);
    border-bottom: 0;
    border-radius: 60px 60px 0 0;
}

.contact-img {
    width: 43.5811%;
    padding: 0 0 0 8px;

}

.contact-img .img-wrapper {
    max-width: 624px;
    width: 100%;
}

.contact-img-inner {
    margin-top: -66px;
    background: #fff;
}

.contact-content {
    width: 56.4189%;
    padding: 103px 15px 106px;
    display: flex;
    align-items: center;
}

.contact-content-inner {
    max-width: 725px;
    width: 100%;
}

.contact-desc {
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin: 91px auto 43px;
    max-width: 650px;
    width: 100%;
}

.contact-form-box {
    min-height: 235px;
    width: 100%;
    max-width: 725px;
    border-radius: 50px;
    background: #f4f4f4;
    padding: 40px 37px;
}

.contact-title .section-title-sm {
    margin: 0 0 -72px 7px;
}

.contact-form-box input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
    color: #838383;
    font-size: 18px;
    font-weight: 500;
    padding: 0 0 11px;
    background: transparent;
}

.contact-form-box .cf-field-4 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-box .cf-field {
    width: 50%;
    padding: 0 0 21px;
}

.contact-form-box .cf-field:nth-child(odd) {
    padding-right: 9px;
}

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

.contact-form-box .cf-field:nth-child(even) {
    padding-left: 9px;
}

.cf-field-submit input {
    max-width: 299px;
    width: 100%;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    border-radius: 24px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
}

.cf-field-submit .wpcf7-spinner {
    margin: 0;
    position: absolute;
}

.contact-form-box .wpcf7 form .wpcf7-response-output {
    position: absolute;
    left: 0;
    bottom: -31px;
    width: 100%;
    margin: 0;
    font-size: 11px;
    text-align: center;
}


/* 

.contact-content {
    width: 59.875%;
    padding: 52px 0 30px 15px;
}

.contact-content-inner {
    max-width: 801px;
    width: 100%;
}



.contact-img {
    width: 40.125%;
    padding: 0 0 0 15px;
}

.contact-img-inner {
    max-width: 554px;
    width: 100%;
    margin: 0 0 0 auto;
}

.contact-img-main {
    max-width: 398px;
    width: 100%;
    z-index: 10;
}

.contact-img-bg {
    max-width: 399px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-img-bg canvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
} */




/* Footer */
.footer {
    background: #f7f7f7;
    padding: 124px 15px 96px;
    min-height: 771px;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    opacity: 0.7;
    color: #000;
}

.footer-container {
    max-width: 1480px;
    width: 100%;
    margin: auto;
}

.footer-top {

}

/* Footer Contact */
.footer-col-label {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    letter-spacing: 5px;
    margin: 43px 0 8px;
}

.footer-col-value {
    font-size: 20px;
    color: #000;
    letter-spacing: 3.2px;
}


.footer-smi a {
    font-size: 22px;
    color: #000;
   
}

.footer-smi a:not(:last-child) {
    margin: 0 32px 0 0;
}

.footer-smi a .ai-font-youtube {
    font-size: 28px;
}

.footer-bot {
    border-top: 1px solid #000000;
    padding: 118px 0 0;
    margin: 119px 0 0;
}

/* Footer Nav */
.footernav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footernav > li > a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
}

.footernav > li {
    padding: 5px 23px;
    padding: 5px 14px;
    position: relative;
}

/* .footernav > li:not(:last-of-type)::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 14px;
    width: 1px;
    background: #000000;
    opacity: 0.16;
    margin: auto;
} */

/* Disclaimer */
.footer-disclaimer {
    font-size: 12px;
    color: #000000;
    letter-spacing: 0.6px;
    line-height: 1.5;
    margin: 29px 0 29px;
}

/* Copyright */
.footer-copyright {
    font-size: 14px;
    color: #000000;
    letter-spacing: 0.8px;
    line-height: 1.5;
}

.footer-copyright a {
    color: #000000;
}

.footer-copyright span {
    text-transform: uppercase;
}

/* Footer Realtors */
.footer-realtors {
    font-size: 28px;
    color: #000000;
    margin: 15px 0 0;
}

.footer-realtors .ai-font-realtor-mls {
    font-size: 37px;
    margin-left: 13px;
}



/*******************************************************
 *
 * 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: 250px;
        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;
            }
/* 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 {
    color: #000;
    font-family: var(--font-family-title);
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 10px;
    line-height: 1;
    text-transform: uppercase;
}

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

}

/* POJO */
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;
}

.page-id-20 #content .entry p {
    font-size: 21px;
    color: var(--primary);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

#agents-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    right: 5px;
    left: auto;
    width: auto;
    font-size: 11px;
    top: 0;
}

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

body.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100%;
    padding: 0;
}


body #listings-details .listings-link-navigation-main {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 326px;
    max-width: 100%;
    height: 58px;
    margin: 0 auto;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background: var(--aios-ihf-template-global-page-primary-color);
    transition: all 0.3s ease;
}

.page-id-21 #agents-results .agents-list .agents-box .agent-box-hover > .agent-box-hover-info span {
    margin-right: 10px;
    margin-left: 0;
}

.page-id-21 #agents-results .agents-list .agents-box-col > .agents-box > div .agent-image-photo .agent-box-hover .agent-box-hover-info > div a {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: all;
    transition-property: all;
}

.page-id-21 #agents-results .agents-list .agents-box-col > .agents-box > div .agent-image-photo .agent-box-hover .agent-box-hover-info > div a:hover {
    color: #fff;
    opacity: 0.75;
}

.page-id-20 #content #breadcrumbs {
    margin: 1.12em auto;
    padding: 0 15px;
}

.page-id-15 #content #breadcrumbs {
    padding: 0 60px;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
