/*
Theme Name: The Ville Team
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: 'Montserrat', sans-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;
}

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

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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: none;
    display: none;
    padding: 24px 0 0;
    position: absolute;
 	width:100%;
 	min-width:185px;
    left: 50%;
    transform: translateX(-50%);
}
#nav .sub-menu a {
    background: #515760;
    color: #FFFFFF;
    display: block;
    padding: 0 10px;
    height: 47px;
    line-height: 47px;
}
#nav .sub-menu a:hover {
    background: #11367e;
    color: #fff;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
#nav li:hover > .sub-menu,
#nav li:focus-within > .sub-menu {
    display: block;
}
#nav .sub-menu li {
    position: relative;
    display: block;
    text-align: center;
}


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

body.body-overflow {
    overflow: hidden;
}

/* Header */
.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1020;
    /*padding: 52px 0;*/
    padding: 15px 0;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

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

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

    /* Header Logo */
    .logo {
        max-width: 332px;
        width: 100%;
        position: relative;
    }

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

    .logo img.fh-logo-img {
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: auto;
        height: 100%;
    }

    /* Header Nav */
    .navigation {
        width: calc(100% - 369px);
        text-align: right;
        padding: 0 113px 0 0;
    }

    .navigation .menu li a {
        font-size: 15px;
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        position: relative;
        display: block;
    }

    .navigation .menu > li > a::after {
        content: '';
        position: absolute;
        left: calc(50% + 8px);
        right: 0;
        transform: translateX(calc(-50% - 8px));
        bottom: -16px;
        height: 4px;
        width: 0;
        background: #11367e;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
    }

    .navigation .menu > li {
        padding: 0 12.5px;
    }

        /* Hover */
        .navigation .menu > li:hover > a::after {
            width: calc(100% + 16px);
        }

    /* Header Button */
    .header-btn {
        width: 37px;
    }

    .hc-menu {
        height: 31px;
        border: 0;
        border-top: 5px solid #fff;
        border-bottom: 5px solid #fff;
        width: 100%;
        appearance: none;
        -webkit-appearance: none;
        background: none;
        position: relative;
    }

    .hc-menu i{
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 5px;
        width: 24px;
        background: #fff;
        transition: inherit;
        -webkit-transition: inherit;
        -moz-transition: inherit;
        -o-transition: inherit;
    }

        /* Hover */
        .hc-menu:hover i {
            width: 100%;
        }

    /* Menu */
    .hb-main {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
    }

    .hb-bd {
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hb-container {
        position: fixed;
        right: -1000px;
        top: 0;
        width: 100%;
        max-width: 980px;
        height: 100%;
        background: #464b54;
        z-index: 2005;
        padding: 0 15px 0 97px;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;

    padding-left: 40px;
    }

    .hb-container::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #464b54 url(images/hb-bg.jpg) no-repeat center / cover;
        filter: grayscale(1);
        z-index: 1;
        opacity: 0.05;
    }

    .hb-inner {
        position: relative;
        z-index: 100;
        height: 100vh;
        overflow-x: auto;
    }

    .hb-icon-close {
        position: fixed;
        right: 72px;
        top: 66px;
        cursor: pointer;
    }

    .hb-icon-close i {
        font-size: 46px;
        color: #fff;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .hb-icon-close:hover i {
            color: #c5c5c5;
        }


    .hb-logo {
        max-width: 333px;
        width: 100%;
        padding: 71px 0 77px;
    }

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

    #hb-nav {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        height: 505px;
    }

    #hb-nav > li {
        width: 33.3333333%;
        margin: 0 0 40px;
    }

    #hb-nav > li > a {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        color: #fff;
        line-height: 1;
        display: inline-block;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    #hb-nav .sub-menu {
        margin: 24px 0 0;
    }

    #hb-nav .sub-menu li {
        margin: 0 0 16px;
    }

    #hb-nav .sub-menu li:last-of-type {
        margin: 0;
    }

    #hb-nav .sub-menu li a {
        color: #c5c5c5;
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Show Menu */
        .hb-main.show-menu {
            opacity: 1;
            visibility: visible;
        }

        .hb-main.show-menu .hb-container {
            visibility: visible;
            opacity: 1;
            right: 0;
        }

        #hb-nav > li > a:hover {
            transform: translateX(15px);
        }

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

/* Fixed Header */
.header.fh {
    position: fixed;
    background: #fff;
    padding: 11px 0 ;
}

    .fh .logo img {
        max-width: 265px;
    }

    .fh #nav .sub-menu {
        padding: 42px 0 0;
    }

    .fh .navigation .menu li a {
        color: #464b54;
    }

    .fh .hc-menu {
        border-top: 5px solid #11367e;
        border-bottom: 5px solid #11367e;
    }

    .fh .hc-menu i {
        background: #11367e;
    }

    .fh .logo img.fh-logo-img {
        opacity: 1;
    }

    .fh .logo img.h-logo-img {
        opacity: 0;
    }


/* Fixed SMI */
.fixed-smi {
    position: fixed;
    right: 16px;
    top: 27.8%;
    z-index: 1000;

}

    .fixed-smi-inner {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 58px 0 61px;
        position: relative;
    }

    .fixed-smi-inner::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
        height: 43px;
        width: 1px;
        background: #fff;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
    }

    .fixed-smi-inner::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: 43px;
        width: 1px;
        background: #fff;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
    }

    .fixed-smi a {
        font-size: 22px;
        color: #fff;
        margin: 10px 0;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
    }

    .fixed-smi.fx-blue a{
        color: #11367e;
    }

    .fixed-smi.fx-blue .fixed-smi-inner::before,
    .fixed-smi.fx-blue .fixed-smi-inner::after {
        background: #11367e;
    }

    .fixed-smi a.ai-instagram {
        font-size: 23px;
    }

    .fixed-smi a.ai-youtube {
        font-size: 18px;
    }

    .fixed-smi a.ai-twitter {
        font-size: 18px;
    }

    .fixed-smi a.ai-font-tiktok {
        font-size: 25px;
    }


/* Slideshow */
.slider-wrap {
    position: relative;
    font-size: 0;
}

    .slider-main {
        position: relative;
        font-size: 0;
    }

    .slider-main canvas {
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .slider-main .cycloneslider {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
    }

    .slider-main::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 5;
    }

    .slider-main::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 322px;
        z-index: 7;
        /* background: url(images/slider-fade.png) no-repeat center top / cover; */
        background: rgb(253,253,253);
        background: linear-gradient(0deg, rgba(253,253,253,0) 0%, rgba(253,253,253,0.5046393557422969) 30%, rgba(253,253,253,1) 100%);
        display: none;
    }


    /* SLider Logo */
    .slider-logo {
        position: absolute;
        z-index: 10;
        top: 42%;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 552px;
        width: 100%;
    }

    .slider-logo h1 {
        display: none;
    }

    /* Slider Arrow */
    .slider-arrow {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 3px;
        font-size: 10px;
        z-index: 20;
        color: #fff;
        text-align: center;
        max-width: 150px;
        width: 100%;
        cursor: pointer;
    }

    .slider-arrow span {
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 2px;
        position: relative;
        display: block;
        margin: 11px 0;
        transition: all 0.3s ease-out;
    }

        /* Hover */
        .slider-arrow:hover span {
            transform: scale(1.2);
        }

    .sa-top {
        height: 30px;
        width: 1px;
        background: #fff;
        display: block;
        margin: auto;
    }

    .sa-arrow{
        height: 12px;
        width: 12px;
        background: url(images/slider-arrow.png) no-repeat center / contain;
        display: block;
        margin: auto;
    }

    .sa-line-w {
        height: 25px;
        width: 1px;
        background: #fff;
        display: block;
        margin: auto;
    }

    .sa-line-b {
        height: 40px;
        width: 1px;
        background: #11367e;
        display: block;
        margin: auto;
    }

/* QS */
.qs-wrap {
    padding: 0 15px 0;
    position: relative;
    z-index: 10;
}

    .qs-main {
        /* min-height: 408px; */
        position: relative;
        max-width: 1480px;
        width: 100%;
        margin: -43px auto 0;
        padding: 97px 15px 72px;
    }

    .qs-main::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/qs-bg-min.jpg) no-repeat center / cover;
        z-index: 1;
        filter: grayscale(1);
    }

    .qs-main::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.9);
        z-index: 2;
    }

    .qs-inner {
        position: relative;
        z-index: 10;
    }

    .qs-form form {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .qs-label {
        text-align: center;
    }

    .qs-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 78px;
    }

    .qs-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.5px;
        margin: 3px 0 0;
    }

    /* QS Form */
    .qs-form {
        max-width: 1140px;
        width: 100%;
        margin: auto;
    }

    .qs-field-long {
        width: 20.26%;
        padding: 0 7px 0 0;
    }

    .qs-field-short {
        width: 16.05%;
        padding: 0 7px 0 0;
    }

    .qs-form input {
        width: 100%;
        border: 0;
        background: none;
        text-transform: uppercase;
        border-bottom: 1px solid #a8a8a8;
        padding: 0 0 17px 10px;
        font-size: 15px;
        font-weight: 300;
        color: #383838;
        outline: none;
        border-radius: 0;
    }

    .qs-form .bootstrap-select>.dropdown-toggle {
        width: 100%;
        border: 0;
        background: none;
        text-transform: uppercase;
        border-bottom: 1px solid #a8a8a8;
        padding: 0 0 17px 10px;
        font-size: 15px;
        font-weight: 300;
        color: #383838;
        outline: none;
        border-radius: 0;
    }

    .qs-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
        font-size: 15px;
        color: #383838;
    }

    .qs-form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #383838;
        opacity: 1; /* Firefox */
    }

    .qs-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #383838;
    }

    .qs-form input::-ms-input-placeholder { /* Microsoft Edge */
        color: #383838;
    }

    .qs-field-btn {
        width: 15.78%;
        padding: 0 0 0 15px;
    }

    .qs-field-btn button {
        width: 100%;
        border: 1px solid #757575;
        border-bottom: 4px solid #11367e;
        height: 49px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .qs-text {
        font-size: 14px;
        font-weight: 300;
        color: #616161;
        z-index: 20;
        position: relative;
        max-width: 1140px;
        width: 100%;
        margin: 23px auto 0;
        text-align: right;
    }

    /* Hover */
    .qs-field-btn button:hover {
        background: #11367e;
        color: #fff;
    }


/* FP */
.fp-wrap {
    padding: 106px 0 121px;
}

    .fp-label {
        text-align: center;
    }

    .fp-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 78px;
    }

    .fp-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.5px;
        margin: 3px 0 0;
    }

    .fp-item {
        padding: 0 41.5px;
        position: relative;
        /* max-width: 1087px; */
        /* width: 100%; */
        margin: auto;
    }

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

    .fp-img {
        position: relative;
    background: rgba(17, 53, 126, 0.9);
    }

    .fp-img::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 53, 126, 0.9);
        z-index: 7;
        opacity: 1;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fp-img::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/fp-hover-min.png) no-repeat center;
        z-index: 10;
        opacity: 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fp-img canvas {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .fp-img img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    object-fit: contain;
        z-index: 5;
        filter: grayscale(1);
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fp-details {
        padding: 73px 0 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fp-details-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .fp-d-left {
        width: 45%;
    }

    .fp-d-left h2 {
        color: #11367e;
        font-size: 42px;
        font-family: 'Playfair Display', sans-serif;
        font-weight: 700;
        line-height: 1;
    }

    .fp-d-left p {
        font-size: 18px;
        color: #747474;
        margin: 13px 0 0;
    }

    .fp-d-right {
        width: 55%;
        text-align: right;
    }

    .fp-d-right a {
        width: 100%;
        max-width: 214px;
        border: 1px solid #757575;
        border-bottom: 4px solid #11367e;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: inline-block;
        line-height: 65px;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fp-d-right a:first-of-type {
        margin-right: 8px;
    }

    .fp-slick-holder .slick-list {
        padding: 0 256.5px !important;
    }

    .fp-item.slick-center .fp-details {
        opacity: 1;
        visibility: visible;
    }

    .fp-item.slick-center .fp-img::before{
        opacity: 0;
    }

    .fp-item.slick-center .fp-img img {
        filter: grayscale(0);
    }

    .fp-slick-holder .slick-arrow {
        height: 122px;
        width: 122px;
        position: absolute;
        z-index: 20;
        border: 0;
        font-size: 0;
        top: calc(39% - 61px);
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fp-slick-holder .slick-prev {
        background: #fff url(images/prev-icon.png) no-repeat center;
        left: 189px;
    }

    .fp-slick-holder .slick-next {
        background: #fff url(images/next-icon.png) no-repeat center;
        right: 189px;
    }

    .fp-slick-holder {
        display: none;
    }

    .fp-slick-holder.slick-initialized.slick-slider {
        display: block;
    }

        /* Hover */
        .fp-d-right a:hover {
            background: #11367e;
            color: #fff;
        }

        .fp-item:hover .fp-img::after {
            opacity: 0.8;
        }

        .fp-slick-holder .slick-arrow:hover {
            transform: scale(1.1);
        }

/* Welcome */
.welcome-wrap {
    position: relative;
    padding: 0 0 0;
}

    .welcome-wrap::after {
        content: '';
        position: absolute;
        bottom: -104px;
        width: 100%;
        height: 408px;
        background: url(images/welcome-bg.jpg) no-repeat center bottom / cover;
        z-index: 1;
    }

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

    .welcome-img-panel {
        width: 50%;
        padding: 0 33px 0 0;
        overflow: hidden;
    }

    .welcome-img-main {
        position: relative;
        max-width: 767px;
        width: 100%;
        padding: 0 22px 41px 0;
        margin: 0 0 0 auto;
    }

    .welcome-img {
        max-width: 745px;
        width: 100%;
        position: relative;
        z-index: 5;
    }

    .welcome-img canvas {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .welcome-img img {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        object-fit: cover;
        z-index: 5;
    }

    .welcome-img-bg {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 0 0 0 81px;
        z-index: 1;
    }

    .welcome-img-bg img{
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .welcome-img-bg::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: calc(100% - 81px);
        height: 100%;
        background: rgba(105, 112, 124, 0.9);
        z-index: 5;
    }

    .welcome-content-panel {
        width: 50%;
        padding: 38px 15px 0 64px;
    }

    .welcome-content {
        max-width: 620px;
        width: 100%;
    }

    .welcome-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 50px;
    }

    .welcome-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 5px;
        line-height: 1.2;
    }

    .welcome-text p {
        font-size: 14px;
        font-weight: 400;
        line-height: 2;
        color: #484848;
        margin: 0 0 28px;
    }

    .welcome-text p:last-of-type {
        margin: 0;
    }

    .welcome-logo {
        width: 42px;
        position: relative;
    }

    .welcome-logo::after {
        content: '';
        position: absolute;
        width: 3px;
        height: calc(100% - 66px);
        background: #11367e;
        margin: auto;
        display: block;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .welcome-text-main {
        display: flex;
        justify-content: flex-start;
        max-width: 563px;
        width: 100%;
    }

    .welcome-text {
        width: calc(100% - 42px);
        position: relative;
        margin: -10px 0 0;
        padding: 0 0 0 25px;
    }

    .welcome-link a {
        width: 100%;
        max-width: 214px;
        border: 1px solid #757575;
        border-bottom: 4px solid #11367e;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 68px 0 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .welcome-link a:hover {
            background: #11367e;
            color: #fff;
        }

/* Team */
.team-wrap {
    padding: 104px 0 162px;
    overflow: hidden;
}


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

    .team-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 50px;
    }

    .team-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .team-content-panel {
        width: 44.8125%;
        padding: 91px 102px 0 15px;
    }

    .team-img-panel {
        width: 55.1875%;
        margin: -36px 0 0;
        position: relative;
    }

    .team-text p {
        font-size: 14px;
        font-weight: 400;
        line-height: 2;
        color: #484848;
        margin: 0 0 28px;
        letter-spacing: 0.1px;
    }

    .team-text p:last-of-type {
        margin: 0;
    }

    .team-logo {
        width: 42px;
        position: relative;
    }

    .team-logo::after {
        content: '';
        position: absolute;
        width: 3px;
        height: calc(100% - 74px);
        background: #11367e;
        margin: auto;
        display: block;
        left: 0;
        right: 0;
        bottom: 8px;
    }

    .team-text-main {
        display: flex;
        justify-content: flex-start;
        max-width: 492px;
        width: 100%;
    }

    .team-text {
        width: calc(100% - 42px);
        position: relative;
        margin: -10px 0 0;
        padding: 0 0 0 25px;
    }

    .team-link a {
        width: 100%;
        max-width: 214px;
        border: 1px solid #757575;
        border-bottom: 4px solid #11367e;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 54px 0 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .team-img-main {
        position: relative;
        /* max-width: 767px;s */
        width: 100%;
        padding: 0 22px 50px 0;
        margin: 0 0 0 auto;
    }

    .team-img {
        /* max-width: 745px; */
        width: 100%;
        position: relative;
        z-index: 5;
    }

    .team-img canvas {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .team-img img {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        object-fit: cover;
        z-index: 5;
    }

    .team-img-bg {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 0 0 0 199px;
        z-index: 1;
    }

    .team-img-bg img{
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .team-img-bg::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: calc(100% - 199px);
        height: 100%;
        background: rgba(105, 112, 124, 0.9);
        z-index: 5;
    }

    .team-content {
        max-width: 492px;
        width: 100%;
        margin: 0 0 0 auto;
    }

        /* Hover */
        .team-link a:hover {
            background: #11367e;
            color: #fff;
        }

/* Divisions */
.division-wrap {
    padding: 0 15px 95px;
}

    .division-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 50px;
        text-align: center;
    }

    .division-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .division-list {
        max-width: 1322px;
        width: 100%;
        margin: 91px auto 0;
    }

    .division-list ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .division-list ul li {
        width: 25%;
    }

    .division-list ul img {
        display: block;
        margin: auto;
        filter: grayscale(1);
        opacity: 0.4;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .division-list ul img:hover {
        opacity: 1;
        filter: grayscale(0);
    }

/* Statistics */
.stat-wrap {
    /* min-height: 800px; */
    position: relative;
    padding: 107px 15px;
}

    .stat-wrap::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/stat-bg.jpg) no-repeat center / cover;
        z-index: 1;
        filter: grayscale(1);
    }

    .stat-wrap::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(70, 75, 84, 0.95);
        z-index: 3;
    }

    .stat-main {
        position: relative;
        z-index: 10;
        max-width: 1140px;
        width: 100%;
        margin: auto;
        padding: 0 0 0 97px;
    }

    .stat-inner {
        min-height: 568px;
        border: 5px solid #fff;
        border-left: 0;
        width: 100%;
        position: relative;
    }

    .stat-inner::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 116px;
        background: #fff;
    }

    .stat-inner::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 5px;
        height: 120px;
        background: #fff;
    }

    .stat-content {
        margin-left: -97px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-label h2{
        font-size: 20px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 50px;
    }

    .stat-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #fff;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .stat-text {
        width: 41.59%;
        padding: 165px 0 123px;
    }

    .stat-list {
        width: 58.41%;
        padding: 0 15px;
    }

    .stat-desc {
        font-size: 14px;
        font-weight: 300;
        line-height: 2;
        color: #fff;
        margin: 0 0 28px;
        letter-spacing: 0.2px;
    }

    .statistics-list {
        max-width: 600px;
        width: 100%;
        font-size: 0;
        margin: auto;
    }

    .statistics-list li {
        width: 50%;
        height: 204px;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        padding: 0 15px;
    }

    .statistics-list li:nth-child(1) {
        border-bottom: 1px solid #6d7380;
    }

    .statistics-list li:nth-child(2) {
        border-left: 1px solid #6d7380;
        border-bottom: 1px solid #6d7380;
    }

    .statistics-list li:nth-child(4) {
        border-left: 1px solid #6d7380;
    }

    .statistics-list li span {
        display: block;
        font-family: 'Playfair Display', serif;
        color: #fff;
        text-transform: uppercase;
        font-size: 40px;
        font-weight: 700;
        margin: 0 0 21px;
    }

    .statistics-list li span em {
        font-style: normal;
    }

    .statistics-list li p {
        font-size: 18px;
        color: #fff;
        text-transform: uppercase;
        line-height: 1.3;
    }

    .statistics-list li div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }

/* FC */
.fc-wrap {
    /* min-height: 1120px; */
    padding: 106px 0 85px;
}

    .fc-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 85px;
        text-align: center;
    }

    .fc-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .fc-item {
        /* max-width: 400px; */
        /*width: 100%;*/
        width: 25%;
        display: inline-block;
        vertical-align: top;
        position: relative;
    }

    .fc-img {
        position: relative;
        font-size: 0;
        z-index: 1;
    }

    .fc-img canvas {
        display: block;
        position: relative;
        width: 100%;
        z-index: 1;
    }

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

    .fc-img:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 7;
        background: rgba(0, 0, 0, 0.3);
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
    }

    .fc-img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 202px;
        height: 242px;
        z-index: 8;
        background-image: url(images/fc-hover.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        opacity: 0;
    }

    .fc-details {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .fc-details > div {
        width: 100%;
        position: relative;
        transform: translateY(42px);
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
    }

    .fc-name {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.1;
        color: #FFF;
        text-align: center;
        background: rgba(0,0,0,0.01);
    }

    .fc-btns {
        width: 100%;
        max-width: 352px;
        margin: 32px auto 0;
        opacity: 0;
        /* pointer-events: none; */
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-btn a {
        display: inline-flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        max-width: 162px;
        height: 52px;
        font-size: 15px;
        font-weight: 300;
        padding: 4px 20px 0;
        text-transform: uppercase;
        color: #403b41;
        line-height: 1;
        background: transparent;
        outline: 0;
        border: 1px solid rgba(64,59,65,0.3);
        border-bottom: 3px solid rgba(64,59,65,1);
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
    }

    .site-btn.white-btn a {
        color: #ffffff;
        border: 1px solid #ffffff;
        border-bottom: 3px solid #ffffff;
    }

    .site-btn.fc-btns > a {
        margin: 0 5px;
        padding: 0 5px;
        width: calc(50% - 12px);
        border: 1px solid rgba(255,255,255,0.3);
        border-bottom: 3px solid #ffffff;
    }

    .fc-slick-holder {
        /*display: none;*/
        font-size: 0;
    }

    .fc-slick-holder.slick-initialized.slick-slider {
        display: block;
    }

    .fc-link a {
        width: 100%;
        max-width: 264px;
        border: 1px solid #757575;
        border-bottom: 4px solid #11367e;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 72px auto 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .fc-link a:hover {
            background: #11367e;
            color: #fff;
        }

        .fc-item:hover .fc-details > div {
            transform: translateY(0);
        }

        .fc-item:hover .fc-btns {
            opacity: 1;
        }

        .fc-item:hover .fc-img:after {
            opacity: 0.2;
        }

        .fc-item:hover .fc-img:before {
            background: rgba(70, 75, 84, 0.9);
        }

        .site-btn.white-btn a:hover {
            background: #fff;
            color: #11367e;
        }

/* Testi */
.testi-wrap {
    /* min-height: 741px; */
    position: relative;
    padding: 134px 15px 144px;
}

    .testi-wrap::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/testi-bg-min.jpg) no-repeat center / cover;
        z-index: 1;
        filter: grayscale(1);
    }

    .testi-wrap::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        background: rgba(70, 75, 84, 0.95);
    }

    .testi-main {
        position: relative;
        z-index: 10;
    }

    .testi-label h2{
        font-size: 20px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 42px;
        text-align: center;
    }

    .testi-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #fff;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .testi-item {
        padding: 0 43px;
    }

    .testi-item p {
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        text-align: center;
        line-height: 2.3;
        letter-spacing: 0.3px;
    }

    .testi-item span {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin: 41px 0 0;
    }

    .testi-item-inner {
        /* max-width: 540px; */
        width: 100%;
        margin: auto;
        position: relative;
        padding: 58px 30px 0;
    }

    .testi-item-inner::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 83px;
        width: 68px;
        z-index: -1;
        background: url(images/quote-icon-min.png) no-repeat center / contain;
        opacity: 0.2;
    }

    .testi-slick-wrap {
        max-width: 1400px;
        width: 100%;
        margin: auto;
        position: relative;
        padding: 0 52px;
    }

    .testi-slick-holder .slick-arrow{
        position: absolute;
        top: 96px;
        height: 38px;
        width: 20px;
        border: 0;
        border-radius: 0;
        outline: none;
        font-size: 0;
        opacity: 0.5;
        z-index: 100;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .testi-slick-holder .slick-prev {
        left: -21px;
        background: rgba(255, 255, 255, 0) url(images/testi-prev.png) no-repeat center / contain;
    }

    .testi-slick-holder .slick-next {
        right: -21px;
        background: rgba(255, 255, 255, 0) url(images/testi-next.png) no-repeat center / contain;
    }

    .testi-slick-holder {
        display: none;
        padding: 0;
    }

    .testi-slick-holder.slick-initialized.slick-slider {
        display: block;
    }

    .testi-link a {
        width: 100%;
        max-width: 264px;
        border: 1px solid #fff;
        border-bottom: 4px solid #fff;
        color: #fff;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 72px auto 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .testi-link a:hover {
        color: #11367e;
        background: #fff;
    }



        /* Hover */
        .testi-slick-holder .slick-arrow:hover {
            transform: scale(1.2);
        }
/* Reconition */
.rec-wrap {
    /* min-height: 758px; */
    padding: 95px 15px 71px;
}

    .rec-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 71px;
        text-align: center;
    }

    .rec-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .rec-list ul {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1069px;
        width: 100%;
        margin: auto;
        flex-wrap: wrap;
    }

    .rec-list ul li {
        /*width: 25%;
        padding: 28px 10px;*/
        width: 20%;
        padding: 28px 20px;
    }

    .rec-list ul li img {
        margin: auto;
        /* filter: grayscale(1); */
        opacity: 0;
        transition: all 0.6s ease;
    }

    .rec-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 71px;
        text-align: center;
    }

    .rec-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.9px;
        margin: -2px 0 0 2px;
        line-height: 1.2;
    }

    .rec-list ul li div {
        position: relative;
    }


    .rec-list ul li img + img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .rec-list ul li:hover img {
        opacity: 1;
    }

    .rec-list ul li:hover img + img{
        opacity: 0;
    }

/* Featured Videos */
.fv-wrap {
    position: relative;
    padding: 105px 0 98px;
}

    .fv-wrap::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 408px;
        left: 0;
        top: 0;
        background: url(images/fv-bg.jpg) no-repeat center / cover;
        z-index: 1;
        opacity: 0.1;
        filter: grayscale(1);
    }

    .fv-main {
        position: relative;
        z-index: 10;
    }

    .fv-label {
        text-align: center;
    }

    .fv-label h2{
        font-size: 20px;
        color: #464b54;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin: 0 0 83px;
    }

    .fv-label span {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        font-weight: 700;
        color: #11367e;
        display: block;
        letter-spacing: 1.5px;
        margin: 3px 0 0;
    }

    .fv-item {
        padding: 0 41.5px;
        position: relative;
        /* max-width: 1087px; */
        /* width: 100%; */
        margin: auto;
    }

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

    .fv-img {
        position: relative;
    }

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

    .fv-img canvas {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .fv-img > img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 5;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fv-img a {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: block;
        margin: auto;
        width: 153px;
        height: 153px;
        z-index: 9;
        opacity: 1;
        border-radius: 50%;
        overflow: hidden;
        outline: none;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fv-img a img {

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

    .fv-slick-holder .slick-list {
        padding: 0 256.5px 63px !important;
    }

    .fv-slick-holder .slick-arrow {
        height: 122px;
        width: 122px;
        position: absolute;
        z-index: 20;
        border: 0;
        font-size: 0;
        top: calc(44.5% - 61px);
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fv-slick-holder .slick-prev {
        background: #fff url(images/prev-icon.png) no-repeat center;
        left: 189px;
    }

    .fv-slick-holder .slick-next {
        background: #fff url(images/next-icon.png) no-repeat center;
        right: 189px;
    }

    .fv-slick-holder {
        display: none;
    }

    .fv-slick-holder.slick-initialized.slick-slider {
        display: block;
    }

    .fv-slick-holder .nextdiv .fv-img::before,
    .fv-slick-holder .prevdiv .fv-img::before {
        opacity: 0;
    }

    .fv-details {
        position: absolute;
        left: 96.5px;
        bottom: -62px;
        min-height: 177px;
        max-width: 509px;
        width: 100%;
        background: #11367e;
        z-index: 20;
        padding: 43px 38px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fv-details span {
        display: block;
        font-size: 15px;
        color: #fff;
        text-transform: uppercase;
    }

    .fv-details h2 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
    }

    .fv-details span {
        display: block;
        font-size: 15px;
        color: #fff;
        text-transform: uppercase;
        margin: 0 0 15px;
    }

    .fv-btn a {
        width: 100%;
        max-width: 164px;
        border: 1px solid #fff;
        border-bottom: 4px solid #fff;
        color: #fff;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .fv-btn {
        width: 164px;
    }

    .fv-d-text {
        width: calc(100% - 64px);
        padding: 0 10px 0 0;
    }

    .slick-center .fv-details {
        opacity: 1;
        visibility: visible;
    }

    .fv-link a {
        width: 100%;
        max-width: 264px;
        border: 1px solid #757575;
        border-bottom: 4px solid #11367e;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 91px auto 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        .fv-link a:hover {
            background: #11367e;
            color: #fff;
        }

        .fv-btn a:hover {
            background: #fff;
            color: #11367e;
        }

        .fv-slick-holder .slick-arrow:hover {
            transform: scale(1.1);
        }

        .fv-item:hover .fv-img a {
            background: #11367e;
        }

/* Footer */
.footer {
    position: relative;
    min-height: 1192px;
    padding: 97px 15px 68px;
}

    .footer::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/footer-bg-min.jpg) no-repeat center / cover;
        z-index: 1;
        filter: grayscale(1);
    }

    .footer::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(70, 75, 84, 0.95);
        z-index: 2;
    }

    .footer-main {
        position: relative;
        z-index: 10;
    }

    .footer-top-cont {
        position: relative;
        max-width: 1283px;
        width: 100%;
        margin: 0 auto 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;

    }

    .footer-contact {
        width: 41.387%;
        text-align: center;
        margin: 16px 0 0;
        padding: 0 15px;
    }

    .footer-contact h2 {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 9px;
        text-transform: uppercase;
    }

    .footer-contact span {
        font-size: 16px;
        font-style: italic;
        font-weight: 300;
        color: #fff;
        display: block;
        margin: 0 0 10px;
    }

    .footer-contact img {
        margin: 0 auto 35px;
    }

    .fcont-tel a,
    .fcont-email a {
        font-size: 16px;
        font-weight: 300;
        color: #fff !important;
        display: block;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .fcont-tel a:hover,
        .fcont-email a:hover {
            color: #c5c5c5 !important;
        }

    .fcont-tel {
        margin: 0 0 3px;
    }

    .footer-contact .address {
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        display: block;
        max-width: 300px;
        width: 100%;
        line-height: 1.2;
        margin: 9px auto 0;
    }

    .fcont-items {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: 57px 0 0;
    }

    .fcont1, .fcont2 {
        width: 50%;
    }

    .fcf {
        width: 58.613%;
    }

    /* Contact Form */
    .contact-form {
        border: 1px solid #7f8389;
        min-height: 484px;
        max-width: 682px;
        width: 100%;
        margin: 0;
        padding: 73px 47px 50px;
        position: relative;
    }

    .cf-label h2{
        font-size: 20px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 4.5px;
        margin: 0 0 46px;
        text-align: center;
    }

    .cf-label span {
        font-family: 'Playfair Display', serif;
        font-size: 45px;
        font-weight: 700;
        color: #fff;
        display: block;
        letter-spacing: 1.9px;
        margin: -12px 0 0 0;
        line-height: 1.2;
        /*text-transform: initial;*/
    }

    .cf-row.cf-field-2 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        margin: 0 0 27px;
    }

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

    .cf-field-2 .cf-field:first-of-type {
        padding-right: 5px;
    }

    .cf-field-2 .cf-field:last-of-type {
        padding-left: 5px;
    }

    .cf-form input,
    .cf-form textarea {
        background: none;
        border: 0;
        border-bottom: 1px solid #b1b3b7;
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        padding: 0 6px 39px;
        outline: none;
        border-radius: 0;
        width: 100%;
    }

    .cf-form textarea {
        padding: 6px;
        height: 66px;
        resize: none;
    }

    .cf-form input[type="submit"] {
        width: 100%;
        max-width: 201px;
        border: 1px solid #fff;
        border-bottom: 4px solid #fff;
        color: #fff;
        height: 65px;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        font-weight: 300;
        background: none;
        border-radius: 0;
        outline: none;
        display: block;
        line-height: 65px;
        margin: 38px auto 0;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .contact-form .wpcf7-not-valid-tip {
        display: inline;
        position: absolute;
        top: 21px;
        width: auto;
    }

    .contact-form .wpcf7 form .wpcf7-response-output {
        text-align: center;
        color: #fff;
        margin: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 25px;
        width: calc(100% - 30px);
    }

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

    .cf-field-submit .wpcf7-spinner {
        position: absolute;
        right: 0;
        bottom: -30px;
        margin: 0;
    }

        /* Hover */
        .cf-form input[type="submit"]:hover {
            background: #fff;
            color: #11367e;
        }


    .footer-bot-cont {
        text-align: center;
    }

    .footer-bot-logo img {
        margin: auto;
    }

    .footer-bot-logo {
        margin: 82px 0 0;
        border-bottom: 1px solid #6a6d75;
        padding: 0 0 25px;
    }

    .footernav {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 44px 0 25px;
    }

    .footernav li a {
        text-transform: uppercase;
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        display: block;
        margin: 0 14px;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .footernav li a:hover {
            color: #c5c5c5;
        }

    .footer-copyright {
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.4px;
    }

    .footer-copyright a {
        color: #fff;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .footer-copyright a:hover {
            color: #c5c5c5;
        }

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

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

    .footer-realtor i {
        font-size: 35px;
        color: #fff;
    }

    .footer-realtor i.ai-font-eho {
        font-size: 27px;
        margin-right: 12px;
    }

    .disclaimer {
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.2px;
        line-height: 1.8;
    }

    .disclaimer a {
        color: #fff !important;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        /* Hover */
        .disclaimer a:hover {
            color: #c5c5c5 !important;
        }

/*******************************************************
 *
 * 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: rgb(253,253,253);
        background: linear-gradient(0deg, rgba(253,253,253,0) 0%, rgb(0 0 0 / 50%) 30%, rgb(0 0 0 / 64%) 100%);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: var(--dark);
        background-position: center bottom -230px;
        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 {

}

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

/* Testimonials */
body #aios-testimonials .aios-testimonials-lists {
    width: 100%;
}

body #aios-testimonials .aios-testimonials-lists .star_rating_display {
    text-align: left;
}

body #aios-testimonials .aios-testimonials-lists .aios-testimonials-content {
    text-align: left;
    border-left: 5px solid #eee;
    padding: 10px 20px 30px 20px;
    margin-left: 50px;
}

body #aios-testimonials .aios-testimonials-lists h3 {
    text-align: left;
}

body #aios-testimonials .aios-testimonials-lists a {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px dotted var(--aios-testimonials-primary);
    padding: 10px 0;
}

/** Single Default Layout (Post Content) */
#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/** End of Single Default Layout (Post Content) */

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
    width: 190px !important;
}

/** End of Archive Default Layout (Archive Page) */

/** Button */
.site-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 248px;
    height: 54px;
    max-width: 100%;
    border: 2px solid #000000;
}

.site-button::before {
    content: '';
    width: 13px;
    height: 1px;
    background: #868686;
}

.site-button,
.site-button::before {
    -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;
}

.site-button:hover {
    background: #000000;
}

.site-button:hover::before {
    background: #ffffff;
}

.site-button span {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 12px 0 16px;
}

.site-button i {
    font-size: 10px;
    font-style: normal !important;
}

.site-button:hover span,
.site-button:hover i {
    color: #ffffff;
}
/** End of Button */


/* Media Page */
.media-btns a {
    width: 100%;
    max-width: 500px;
    border: 1px solid #757575;
    border-bottom: 4px solid #11367e;
    height: 65px;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    font-weight: 300;
    background: none;
    border-radius: 0;
    outline: none;
    display: block;
    line-height: 65px;
    margin: 68px auto 0;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.media-btns a:hover {
    background: #11367e;
    color: #fff;
}

/* Blog Page */
body #content .archive-more {
    font-style: normal;
    text-decoration: none;
    width: 100% !important;
    max-width: 214px;
    border: 1px solid #757575;
    border-bottom: 4px solid #11367e;
    height: 65px;
    text-transform: uppercase;

    text-align: center;
    font-weight: 300;
    background: none;
    border-radius: 0;
    outline: none;
    display: inline-block;
    line-height: 58px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

body #content .archive-more span {
    font-size: 15px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0;
}

body #content .archive-more:hover {
    background: #11367e;
}

.welcome-wrap, .team-wrap, .division-wrap, .stat-wrap, .fc-wrap, .rec-wrap, .fv-wrap {
    display: none;
}
.grecaptcha-badge {
    z-index: 999999999 !important;
}

/* Meet The team */
.page-id-33 #breadcrumbs,
.single-aios-agents #breadcrumbs  {
    margin-top: 24px;
}

/* Videos */
body .aios-smf-theme-three .aios-smf-group .aios-smf-group-items li .aios-smf-group-item .filter-view-img::before {
    opacity: 0.2;
}

body .aios-smf-theme-three .aios-smf-header #theme-title h2 {
    letter-spacing: 1px;
}

body .aios-smf-theme-three .aios-smf-group {
    margin-top: 0;
}

body .aios-smf-theme-three .aios-smf-header #theme-title {
    padding: 0 0 30px;
}


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

.single-post .category-blog .entry-thumbnail {
    display:none;
}

.page-id-45 #inner-page-wrapper > .container {
    width: 100%;
}
/* Meet The Team - Single */
.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: auto;
    font-size: 11px;
    top: 15px;
}

/* Contact */
body .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form span.wpcf7-not-valid-tip {
    position: absolute;
    width: auto;
    font-size: 11px;
    top: 15px;
}

/* Global Forms */
.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

/* IHF */
#ihf-main-container #ihf-map-canvas {
    z-index: 10;
}
ul#ihf-search-location-tabs {
    margin-left: 0 !important;
}

#ihf-main-search-form .chosen-results,
#ihf-valuation-request-form .chosen-results {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

#ihf-main-container .glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

#ihf-agent-sellers-rep {
    padding-left: 15px;
    padding-right: 15px;
}


.home .testi-item span,
body #aios-testimonials .aios-testimonials-lists h3,
.aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content h2 {
    display: none;
}

.dropdown-menu.inner{
    max-height: 250px !important;
}

.qs-form .bootstrap-select.btn-group .dropdown-menu{
    min-width: 225px;
}

li.selected {
    margin-left: -15px;
}

.listing-module-page .container.container-theme-filter {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

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

body #listings-details .listings-form span.wpcf7-not-valid-tip {
    font-size: 12px;
    top: 32px;
    left: 12px;
}

.liv-h {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0px auto;
}

.liv-h {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0px auto;
}


.att span.att-tl {
    font-size: 12px;
    padding-left: 10px;
}

.att span.wpcf7-list-item label span {
    font-size: 12px;
    position: relative;
    top: -2px;
}

.att .wpcf7-checkbox {
    margin-top: -10px;
    display: block;
}

.page-id-6577 .media-btns a {
    margin: 30px auto 0;
}


.rdbtn {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    align-items: center;
}

.rdbtn a {
    margin: 0 5px;
}

.bbb {
    max-width: 116px;
    margin: 0px auto;
    height: auto;
}

form.post-password-form {
    margin: 60px;
}















.page-id-52 #content .wpcf7-submit {
    width: 100%;
    border: 1px solid #757575;
    border-bottom: 4px solid #11367e;
    height: 49px;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    font-weight: 300;
    background: transparent !important;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    color: #757575 !important;
}

.page-id-52 #content .wpcf7-submit:hover {
    background: #11367e !important;
    color: #fff !important;
}



















.aiosp-ref-\#first-responder-benefits .aios-popup-body {
    width: 100% !important;
    max-width: 500px;
    min-height: 400px !important;
    padding: 50px 30px 40px 30px !important;
}

.aiosp-ref-\#first-responder-benefits .aios-popup-body .aidefcf-cl3 span {
    display: inline-block !important;
}

.aiosp-ref-\#first-responder-benefits .aios-popup-body .hdy {
    display: block !important;
    margin-top: 40px;
}



.aiosp-ref-\#first-responder-benefits .outside-content {
    pointer-events: none !important;
}

.aiosp-ref-\#first-responder-benefits .aios-popup-body .aiosp-close {
 display: none !important;
}

.page-id-19792 #content .entry{
  opacity: 0;
}


.page-id-15 .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields.cu-large{
    width: 100%;
}

.cf-row.cf-field-1.margin-bottom {
    margin: 0 0 27px;
}

#ihf-main-container .mc-total-payment-subline {
    color: #666 !important;
}


.page-id-16984 #content .entry {
    opacity: 0;
}

















.aiosp-ref-\#Instantestimate .aios-popup-body {
    width: 100% !important;
    max-width: 500px;
    min-height: 400px !important;
    padding: 50px 30px 40px 30px !important;
}

.aiosp-ref-\#Instantestimate .aios-popup-body .aidefcf-cl3 span {
    display: inline-block !important;
}

.aiosp-ref-\#Instantestimate .aios-popup-body .hdy {
    display: block !important;
    margin-top: 40px;
}

.aiosp-ref-\#Instantestimate .outside-content {
    pointer-events: none !important;
}

.aiosp-ref-\#Instantestimate .aios-popup-body .aiosp-close {
 display: none !important;
}










.consent span.wpcf7-list-item-label {
    font-size: 14px;
    line-height: 1.3;
}

.consent {
    display: block;
    margin-top: -12px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 12px;
    font-style: italic;
}
a.conslink {
    margin-left: 14px;
    margin-bottom: 20px;
    display: block;
}


.consent a {
    margin-left: 13px;
    margin-bottom: 14px;
    display: block;
}

.aidefcf-title-one {
    width: 100%;
    margin-bottom: 30px;
    display: inline-block;
    line-height: 25px;
}

.aidefcf-title-one span{
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: block;
    text-align: center;
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#hlt .aios-popup-body {
    width: 100%;
    max-width: 500px;
    min-height: auto;
    padding: 40px 1%;
    padding-bottom: 0;
}



























.header-container {
    position: relative;
}

.header-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translatey(-50%);
}

.logo img.fh-logo-img {
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    margin-left: auto;
    margin-right: auto;
}




.hb-container {
    max-width: 100%;
}

#hb-nav > li#menu-item-89 .sub-menu {
    display: flex;
    flex-flow: row wrap;
}

#hb-nav > li#menu-item-89 > .sub-menu > li {
    width: calc(100% / 2);
}

#hb-nav .sub-menu .sub-menu {
    padding-left: 10px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}


#hb-nav .sub-menu .sub-menu li {
    width: 100%;
}


#hb-nav > .sub-menu > li {
    margin-bottom: 30px;
}

#hb-nav > li > .sub-menu > li {
    margin-bottom: 20px;
    padding-right: 20px;
}

#hb-nav > li {
    width: calc(100%  / 3);
}

#hb-nav .sub-menu {
    max-width: 580px;
}

#hb-nav {
    flex-flow: row wrap;
    height: auto;
}

#hb-nav .sub-menu {
    margin-top: 0;
}

#hb-nav > li > a {
    margin-bottom: 24px;
}

#hb-nav .sub-menu li:hover .sub-menu {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}























.header-contact {
    position: absolute;
    right: 95px;
}

.header-contact > div{

  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact a {
    color: #fff !important;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.header-contact a i {
    font-size: 11px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.header-contact a i.ai-font-phone {
    font-size: 13px;
}

.header-contact a:hover {
    opacity: 60%;
}



header.header.fh .header-contact a {
    color: #11367e !important;
}

header.header.fh .header-contact a i {
    color: #11367e !important;
}









.opt {
    display: flex;
    flex-flow: row wrap;
    margin-top: 20px;
        width: 100%;
    padding-top: 10px;
}

.opt .iagree {
    width: 20px;
    height: 20px;
}

.opt .iagree .wpcf7-list-item-label {
    font-size: 0;
}

.opt .iagree input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.opt .wpcf7-list-item {
    margin: 0;
}

.opt-label {
    width: calc(100% - 30px);
    margin-left: 10px;
    font-size: 12px;
    line-height: 1.4;
}


.opt span.wpcf7-list-item-label {
    font-size: 0 !important;
}


.fcf .opt-label {
    color: #fff;
}

.use-floating-validation-tip .wpcf7-not-valid-tip{
    position: absolute!important;
    width: max-content!important;
}

.ihf-details-template .ip-banner {
    display: none !important;
}

#ihf-main-container .nav:not(#ihf-search-location-tabs) > li:not(.active)>a:hover {
    color: #fff !important;
}
#ihf-main-container .chosen-drop ul.chosen-results{
    max-height: 150px !important;
}














.leadcapturepopup {
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
    padding: 60px;
    background: #484d56;
}

.lead-field input {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    height: 50px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lead-submit input {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    height: 50px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.lead-submit {
    width: 100%;
    max-width: 160px;
    margin: 0px auto;
    position: relative;
    margin-top: 40px;
}

.lead-submit .wpcf7-spinner {
    position: absolute;
}

.lead-field {
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}

.lead-submit:hover input {
    color: #484d56;
    background: #fff;
}










a.leadclose {
    position: absolute;
    top: 0;
    right: 0;
    background: #333942;
    color: #fff;
    font-size: 10px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.leadcapturepopup {
    position: relative;
}

.leadcapturepopup button.aiosp-close {
    display: none;
}

a.leadclose:hover {
    background: #57606d;

}


  .welcome-main.nwwc {
    flex-flow: row-reverse;
    margin-top:50px;
}

.welcome-main.nwwc .welcome-img-main {
    margin-right: auto;
    margin-left: 0;
}

.welcome-main.nwwc .welcome-content {
    margin-left: auto;
}



#listings-details .listings-slideshow-splide .listings-slideshow-splide-img canvas{
opacity: 0.3;
}


#listings-details .listings-slideshow-splide .listings-slideshow-splide-img > div{
  background: #000;
}

.ihf-results-template.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100%;
    padding: 0;
}
.ihf-results-template .ip-banner > .container,
.ihf-results-template #content #breadcrumbs {
    width: 100%;
}
.ihf-results-template .listings-map .leaflet-map-pane .leaflet-div-icon {
    border: none;
    background: transparent;
}
.ihf-results-template .listings-map .leaflet-map-pane .leaflet-div-icon .ihf-main-icon {
    background: #767676;
    border-color: #333333;
}
.ihf-results-template #listings-results .listings-table .listings-table-body .listings-table-label {
    color: #fff;
}
.ihf-results-template #inner-page-wrapper,
.ihf-results-template:not(.aios-custom-ihomefinder-shortcode) #inner-page-wrapper {
    margin-bottom: 0;
}
.ihf-results-template #content-full {
    margin-bottom: 30px;
}