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


/*

TABLE OF CONTENTS

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


/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/


/* Sub Menu */

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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0, 0, 0, 0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
}

#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}

#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}

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

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

#nav .sub-menu li {
    position: relative;
}


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


/* Global */

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background: #FFF;
    color: #000000;
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}


/* Fixed Menu */

.fh-menu-wrap {
    position: fixed;
    left: 0;
    top: -101%;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    z-index: 1001;
    background: #062d58;
    padding: 35px;
    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;
}

.show-fh-menu.fh-menu-wrap {
    top: 0;
    opacity: 1;
    visibility: visible;
}

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

.fh-menu-container {
    position: relative;
    z-index: 10;
}

.fh-menu-logo {
    max-width: 240px;
    width: 100%;
    margin: auto;
}

.fh-menu-logo img {
    width: 100%;
}

.fh-menu-close {
    position: absolute;
    right: 77px;
    top: 53px;
}

.fh-menu-close button {
    appearance: none;
    -webkit-appearance: none;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: none;
    border: 0;
    padding: 0;
    outline: 0;
}

.fh-menu-navigation {
    max-width: 860px;
    width: 100%;
    margin: 40px auto 0;
    font-size: 0;
}

.fh-menu-navigation #fhmenunav > li {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
    margin: 0 0 20px;
}

button.fc-n.slick-arrow, button.fc-p.slick-arrow {
    display: none !important;
}

.fh-menu-navigation #fhmenunav > li a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 0;
    font-weight: 500;
    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;
}

.fh-menu-navigation #fhmenunav > li > a {
    display: inline-block;
    padding: 0 0 17px;
    position: relative;
}

.fh-menu-navigation #fhmenunav > li .sub-menu a {
    color: #c2c2c2;
    /*padding-bottom: 11px;*/
}

.fh-menu-navigation #fhmenunav > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 2px;
    width: 0;
    background: #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 */

.fh-menu-navigation #fhmenunav > li:hover > a::after {
    width: 100%;
}

.fh-menu-navigation #fhmenunav > li .sub-menu > li:hover >a {
    color: #fff;
}

.fh-menu-navigation #fhmenunav > li > ul > li > a,
.fh-menu-navigation #fhmenunav > li ul li ul li {
    padding: 5px 0;
}

.fh-menu-navigation #fhmenunav > li ul ul li {
    padding-left: 15px !important;
    position: relative;
}

.fh-menu-navigation #fhmenunav > li ul ul li::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: #fff;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


/* Fixed Header */

.fixed-header {
    position: fixed;
    left: 0;
    top: -101px;
    width: 100%;
    z-index: 1000;
    background: #00438b;
    padding: 7.5px 15px;
    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;
}

.fixed-header.fh {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.fh-container {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fh-logo {
    max-width: 168px;
    width: 12%;
}

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

.fh-navigation {
    flex: 1;
    text-align: right;
}

.fh-navigation #fhnav > li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 23px;
    position: relative;
}

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

.fh-navigation #fhnav > li.fh-hb-menu > a {
    height: 32px;
    width: 32px;
    font-size: 0;
    background: url(images/burgermenu-icon.png) no-repeat center;
}

.fh-navigation #fhnav .sub-menu {
    display: none;
}


/* Header */

.header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    visibility: hidden;
}

.header .container {
    max-width: 1436px;
    width: 100%;
}

.logo {
    width: 17.14%;
}

.logo img {
    width: 100%;
}


/* Header Navigation */

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

.aios-split-nav {
    width: 41.43%;
}

.aios-split-nav + .logo + .aios-split-nav {
    text-align: right;
}

.aios-split-nav > li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 23px;
    position: relative;
}

.aios-split-nav > li.hb-menu {
    padding-left: 55px;
}

.aios-split-nav > li > a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    padding: 0;
    font-weight: 500;
}

.aios-split-nav .hb-menu a {
    height: 32px;
    width: 32px;
    font-size: 0;
    background: url(images/burgermenu-icon.png) no-repeat center;
}

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

#fhnav .sub-menu {
    padding-top: 43px;
}

.aios-split-nav .sub-menu a,
#fhnav .sub-menu a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    padding: 15px 5px;
    font-weight: 500;
    background: rgb(0 67 139 / 80%);
}

.aios-split-nav .sub-menu li,
#fhnav .sub-menu li {
    padding-bottom: 1px;
    position: relative;
}

.aios-split-nav > li > a::after,
#fhnav > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
    height: 2px;
    width: 0;
    background: #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 */

.aios-split-nav > li:hover > a {
    background: none;
}

.aios-split-nav .hb-menu:hover a {
    background: url(images/burgermenu-icon.png) no-repeat center;
}

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

.aios-split-nav > .sub-menu > li:hover a,
#fhnav > .sub-menu > li:hover a {
    background: #022952;
}

.aios-split-nav > li:hover > a::after,
#fhnav > li:hover > a::after {
    width: 100%;
}

.aios-split-nav .sub-menu .sub-menu,
#fhnav .sub-menu .sub-menu {
    position: absolute;
    left: -125px;
    top: -25px;
}

#fhnav .sub-menu .sub-menu {
    top: -43px;
    left: -125px;
}

.aios-split-nav .sub-menu li:hover > a,
#fhnav .sub-menu li:hover > a {
    background: #022952;
}

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


/* Slider */

.slider-container {
    position: relative;
}

.slider-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
    z-index: 1;
}

.slider-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/banner-white.png) no-repeat center bottom / contain;
    z-index: 2;
}


/* Slider Tagline */

.slider-tagline {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    top: 56.5%;
    transform: translateY(-50%);
    text-align: center;
}

.slider-tagline h1 {
    color: #fff;
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.2;
}

.slider-tagline a {
    display: block;
    max-width: 239px;
    width: 100%;
    margin: 41px auto 0;
    height: 61px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    position: relative;
    line-height: 61px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    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;
}

.slider-tagline a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 5px;
    width: 66px;
    background: #fff;
}

.slider-tagline a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 5px;
    width: 66px;
    background: #fff;
}


/* Hover */

.slider-tagline a:hover {
    background: #00438b;
}


/* Quick Search */

.qs-wrap {
    background: #fff;
    /* padding: 10px 0; */
}

.qs-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -46px;
    position: relative;
    z-index: 20;
    background: #ececec;
    box-shadow: 0px 0px 22px #d4d4d4;
}

.qs-form input,
.qs-form select {
    height: 92px;
    background: #fff;
    width: 100%;
    border: 0;
    font-size: 12px;
    color: #898989;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px 0 50px;
    outline: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.qs-form select {
    padding-left: 0;
    text-indent: 50px;
}

.qs-propertytype {
    width: 16.95%;
    margin-right: 1px;
}

.qs-propertytype input,
.qs-propertytype select {
    background: #fff url(images/property-type-icon.png) no-repeat center left 20px;
}

.qs-city {
    width: 20.47%;
    margin-right: 1px;
}

.qs-city input,
.hp-quick-search .qs-city .bootstrap-select.btn-group .dropdown-toggle {
    background: #fff url(images/city-icon.png) no-repeat center left 20px;
}

.qs-beds {
    width: 13.36%;
    margin-right: 1px;
}

.qs-beds input,
.qs-beds select {
    background: #fff url(images/bed-icon.png) no-repeat center left 20px;
}

.qs-baths {
    width: 13.42%;
    margin-right: 1px;
}

.qs-baths input,
.qs-baths select {
    background: #fff url(images/bath-icon.png) no-repeat center left 20px;
}

.qs-minprice {
    width: 13.36%;
    margin-right: 1px;
}

.qs-minprice input,
.qs-minprice select {
    background: #fff url(images/minprice-icon.png) no-repeat center left 20px;
}

.qs-maxprice {
    width: 13.36%;
    margin-right: 1px;
}

.qs-maxprice input,
.qs-maxprice select {
    background: #fff url(images/maxprice-icon.png) no-repeat center left 20px;
}

.qs-submit {
    width: 8.8%;
}

.qs-form input[type="submit"] {
    background: #00438b url(images/search-icon.png) no-repeat center;
    font-size: 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 */

.qs-form input[type="submit"]:hover {
    background: #022952 url(images/search-icon.png) no-repeat center;
}


/* Featured Properties */

.fp-wrap {
    /* min-height: 753px; */
    position: relative;
    margin-top: -46px;
    padding: 132px 0 0;
    overflow: hidden;
    background: #fff;
}

.fp-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.fp-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/fp-bg-white.png) no-repeat center top / cover;
    z-index: 2;
}

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

.fp-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #515151;
    font-size: 70px;
    position: relative;
    margin-top: 113px;
}

.fp-content h2::before {
    content: '01';
    position: absolute;
    left: 0;
    top: -66px;
    font-size: 110px;
    color: #515151;
    opacity: 0.1;
}

.fp-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.fp-content p {
    color: #767676;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin: 31px 0 50px;
}

.fp-content a {
    display: block;
    max-width: 239px;
    width: 100%;
    margin: 0;
    height: 61px;
    border-top: 1px solid #00438b;
    border-bottom: 1px solid #00438b;
    color: #767676;
    position: relative;
    line-height: 61px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    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-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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-content a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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 */

.fp-slick-holder-main {
    width: calc( (100vw - 1140px) / 2 + 100%);
    position: relative;
}

.fp-slick-holder {
    display: none;
    margin: 0 -1.5px;
}

.fp-slick-holder * {
    box-sizing: border-box;
}

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

.fp-item {
    font-size: 0;
    padding: 0 1.5px;
}

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

.fp-img canvas {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 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;
}

.fp-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.fp-details {
    padding: 30px 40px 23px 27px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6166841736694677) 21%, rgba(255, 255, 255, 0) 100%);
}

.fp-details h3 {
    font-size: 26px;
    color: #fff;
    margin: 0 0 7px;
    letter-spacing: 1px;
}

.fp-details p {
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.9;
    letter-spacing: 0.5px;
}

.fp-details em {
    font-size: 11px;
    font-style: normal;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin: 11px 0 0;
}

.fp-details em i {
    font-style: normal;
    margin: 0 6px;
}

.fp-details span {
    display: block;
    height: 40px;
    width: 132px;
    background: #00438b;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 40px;
    text-align: center;
    margin: 15px 0 0;
}

.fp-img-bot {
    height: 78px;
    width: calc(100% - 116px);
    background: url(images/fp-bg-blue.jpg) no-repeat center / cover;
    margin: -2px 0 0 auto;
}

.fp-hover-details {
    display: none;
}


/* Hover */

.fp-item a:hover canvas {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.fp-item a:hover .fp-hover-details {
    display: block;
}

.fp-content a:hover {
    background: #00438b;
    color: #fff;
}

.fp-content a:hover::before,
.fp-content a:hover::after {
    width: 100%;
}


/* CTA */

.cta-wrap {
    padding: 100px 0 86px;
}

.cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -5px;
}

.cta-item {
    width: 33.333333%;
    padding: 5px;
}

.cta-item a {
    display: block;
    position: relative;
    font-size: 0;
    z-index: 10;
}

.cta-img {
    position: relative;
    z-index: 5;
}

.cta-img canvas {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    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;
}

.cta-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background: rgb(0, 0, 0);
    background: linear-gradient( 0deg, rgba(0, 0, 0, 0.6166841736694677) 21%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
    letter-spacing: 1px;
    padding: 20px 0 24px;
}

.cta-details h2 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.cta-details h2 span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.cta-item-1 a::after {
    content: '';
    position: absolute;
    left: -47px;
    bottom: -48px;
    height: 361px;
    max-width: 369px;
    width: 100%;
    background: url(images/cta-bg-left.jpg) no-repeat center / cover;
    z-index: 1;
}

.cta-item-3 a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -48px;
    height: 361px;
    max-width: 192px;
    width: 100%;
    background: url(images/cta-bg-right.jpg) no-repeat center / cover;
    z-index: 1;
}


/* Hover */

.cta-item a:hover canvas {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}


/* FC */

.fc-wrap {
    /* min-height: 1445px; */
    position: relative;
    padding: 45px 0 92px;
}

.fc-bg {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 966px;
    width: 100%;
    height: 608px;
    z-index: 1;
}

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

.fc-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/fc-bg-white.png) no-repeat center / cover;
    z-index: 2;
}

.fc-container {
    position: relative;
    z-index: 10;
}

.fc-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #515151;
    font-size: 70px;
    position: relative;
}

.fc-content h2::before {
    content: '03';
    position: absolute;
    left: 137px;
    top: -54px;
    font-size: 110px;
    color: #515151;
    opacity: 0.1;
}

.fc-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.fc-content {
    padding: 101px 15px 47px 31%;
}

.fc-main {
    display: flex;
    font-size: 0;
}

.fc-panel {
    width: 50%;
}

.fc-img {
    position: relative;
}

.fc-img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    z-index: 2;
}

.fc-img canvas {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 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;
}

.fc-item {
    padding: 42px 0 0;
    position: relative;
}

.fc-item a {
    position: relative;
    display: block;
    font-size: 0;
    z-index: 10;
}

.fc-item h2 {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 29px;
}

.fc-left {
    padding-right: 17px;
}

.fc-right {
    padding-left: 17px;
}

.fc-left .fc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 76%;
    height: 42px;
    z-index: 1;
    background: url(images/fc-bg-blue.jpg) no-repeat center top / cover;
}

.fc-right .fc-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 88.51%;
    height: 42px;
    z-index: 1;
    background: url(images/fc-bg-blue.jpg) no-repeat center top / cover;
}

.fc-slick-arrows,
.fc-slick-arrows-mobile {
    text-align: center;
    margin: 72px 0 0;
}

.fc-slick-arrows-mobile {
    display: none;
}

.fc-slick-arrows-mobile a {
    display: block !important;
    margin: 10px auto !important;
}

.fc-slick-arrows a,
.fc-slick-arrows-mobile a {
    display: inline-block;
    vertical-align: middle;
    max-width: 239px;
    width: 100%;
    margin: 0 30px;
    height: 58px;
    border-top: 1px solid #00438b;
    border-bottom: 1px solid #00438b;
    color: #515151;
    position: relative;
    line-height: 58px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    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;
}

.fc-slick-arrows a::before,
.fc-slick-arrows-mobile a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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;
}

.fc-slick-arrows a::after,
.fc-slick-arrows-mobile a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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;
}

.fc-slick-arrows button,
.fc-slick-arrows-mobile button {
    height: 62px;
    width: 62px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    font-size: 0;
    outline: 0;
}

.fc-slick-arrows-mobile button {
    margin: 10px;
}

.fc-p,
.fc-p-mobile {
    background: url(images/arrow-bg-prev.jpg) no-repeat center / cover;
}

.fc-p::before,
.fc-p-mobile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/arrow-prev.png) no-repeat center;
}

.fc-n,
.fc-n-mobile {
    background: url(images/arrow-bg-next.jpg) no-repeat center / cover;
}

.fc-n::before,
.fc-n-mobile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/arrow-next.png) no-repeat center;
}

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

.fc-slick-left-holder,
.fc-slick-right-holder {
    display: none;
}


/* Hover */

.fc-item a:hover canvas {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.fc-slick-arrows a:hover,
.fc-slick-arrows-mobile a:hover {
    background: #00438b;
    color: #fff;
}

.fc-slick-arrows a:hover::before,
.fc-slick-arrows-mobile a:hover::before,
.fc-slick-arrows a:hover::after,
.fc-slick-arrows-mobile a:hover::after {
    width: 100%;
}


/* About */

.about-wrap {
    position: relative;
    padding: 0 15px 78px;
}

.about-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.about-bg-half {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #00438b;
    z-index: 2;
}

.about-bg-half::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/about-bg-2.jpg) no-repeat center / cover;
    opacity: 0.22;
}

.about-container {
    position: relative;
    z-index: 10;
    background: #fff;
    max-width: 1380px;
    width: 100%;
    margin: auto;
    padding: 30px 15px 124px;
    text-align: center;
    /* min-height: 614px; */
}

.about-content {
    max-width: 1065px;
    margin: auto;
    width: 100%;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #515151;
    font-size: 70px;
    position: relative;
    margin-bottom: 61px;
}

.about-content h2::before {
    content: '04';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -82px;
    font-size: 110px;
    color: #515151;
    opacity: 0.1;
}

.about-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.about-content p {
    color: #252525;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin: 0 0 27px;
    line-height: 1.7;
}

.about-content a {
    display: block;
    max-width: 239px;
    width: 100%;
    margin: 74px auto 0;
    height: 61px;
    border-top: 1px solid #00438b;
    border-bottom: 1px solid #00438b;
    color: #515151;
    position: relative;
    line-height: 61px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    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;
}

.about-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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;
}

.about-content a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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 */

.about-content a:hover {
    background: #00438b;
    color: #fff;
}

.about-content a:hover::after,
.about-content a:hover::before {
    width: 100%;
}


/* Testimonials */

.testi-wrap {
    padding: 102px 0 100px;
}

.testi-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #515151;
    font-size: 70px;
    position: relative;
    margin-top: 120px;
}

.testi-content h2::before {
    content: '05';
    position: absolute;
    left: 80px;
    top: -66px;
    font-size: 110px;
    color: #515151;
    opacity: 0.1;
}

.testi-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testi-content p {
    color: #767676;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin: 31px 0 50px;
}

.testi-content a {
    display: block;
    max-width: 239px;
    width: 100%;
    margin: 0;
    height: 61px;
    border-top: 1px solid #00438b;
    border-bottom: 1px solid #00438b;
    color: #515151;
    position: relative;
    line-height: 61px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    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-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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-content a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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-main {
    max-width: 613px;
    width: 100%;
    margin: 0 0 0 auto;
}

.testi-slick-holder {
    margin: 0 -4.5px;
    display: none;
}

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

.testi-item {
    padding: 4.5px;
}

.testi-item-content {
    min-height: 432px;
    background: #00438b;
    color: #fff;
    font-size: 15px;
    line-height: 1.75;
    padding: 59px 38px 30px;
}

.testi-item-content strong {
    display: block;
    margin: 24px 0 0;
    font-weight: 700;
}


/* Hover */

.testi-content a:hover {
    background: #00438b;
    color: #fff;
}

.testi-content a:hover::after,
.testi-content a:hover::before {
    width: 100%;
}


/* Social Media */

.social-wrap {
    font-size: 0;
    padding: 0 0 127px;
}

.social-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -4.5px;
}

.social-img {
    border: 4.5px solid #fff;
}

.social-top .social-img {
    width: 20%;
}

.social-top .social-content {
    width: 40%;
    padding: 0 50px 37px;
}

.social-bot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -4.5px;
}

.social-bot .social-img {
    width: 20%;
}

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

.social-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #515151;
    font-size: 70px;
    position: relative;
}

.social-content h2::before {
    content: '07';
    position: absolute;
    left: 70px;
    top: -66px;
    font-size: 110px;
    color: #515151;
    opacity: 0.1;
}

.social-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.social-content a {
    display: block;
    max-width: 239px;
    width: 100%;
    margin: 25px 0 0;
    height: 61px;
    border-top: 1px solid #00438b;
    border-bottom: 1px solid #00438b;
    color: #515151;
    position: relative;
    line-height: 61px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    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;
}

.social-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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;
}

.social-content a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 5px;
    width: 66px;
    background: #00438b;
    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 */

.social-content a:hover {
    background: #00438b;
    color: #fff;
}

.social-content a:hover::after,
.social-content a:hover::before {
    width: 100%;
}


/* Contact */

.contact-wrap {
    /* min-height: 745px; */
    position: relative;
    background: url(images/contact-bg.jpg) no-repeat center / cover;
    padding: 86px 0 75px;
}

.contact-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 79%);
}

.contact-wrap .container {
    position: relative;
    z-index: 10;
}

.contact-content-main {
    background: #00438b;
    min-height: 584px;
    padding: 105px 15px 40px;
    margin: 0 -8px;
}

.contact-content {
    max-width: 455px;
    width: 100%;
    margin: auto;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    font-size: 60px;
    position: relative;
    margin: 0 0 36px;
}

.contact-content h2::before {
    content: '08';
    position: absolute;
    left: 0;
    top: -71px;
    font-size: 110px;
    color: #fff;
    opacity: 0.1;
}

.contact-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.contact-content p {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin: 0 0 27px;
    line-height: 1.75;
}

.contact-content p:last-of-type {
    margin-bottom: 0;
}


/* Contact Form */

.contact-form-main {
    padding: 105px 0 0;
    max-width: 529px;
    margin: auto;
    width: 100%;
}

.contact-form-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    font-size: 60px;
    position: relative;
    margin: 0 0 36px;
}

.contact-form-content h2::before {
    content: '09';
    position: absolute;
    left: 0;
    top: -71px;
    font-size: 110px;
    color: #fff;
    opacity: 0.1;
}

.contact-form-content h2 span {
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 64px;
    border: 0;
    background: #fff;
    color: #3a3a3a;
    font-size: 14px;
    padding: 0 22px;
    outline: 0;
}

.contact-form textarea {
    resize: none;
    height: 137px;
    padding: 28px 45px 10px 22px;
}

.cf-field {
    margin-bottom: 14px;
}

.cf-field-half {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

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

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

.cf-field-m {
    position: relative;
}

.cf-field-submit {
    position: absolute;
    right: 16px;
    bottom: 20px;
    margin-bottom: 0;
}

.contact-form input[type="submit"] {
    width: 23px;
    height: 21px;
    font-size: 0;
    background: #fff url(images/send-icon.png) no-repeat center;
    padding: 0;
}

.cf-field-submit .ajax-loader {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
}

.contact-form .wpcf7-response-output {
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px 0 0 !important;
}

.contact-form .wpcf7-not-valid-tip {
    font-size: 11px;
}


/* Footer */

.footer {
    min-height: 490px;
    background: #00438b;
    position: relative;
    text-align: center;
}

.footer-top,
.footer-bot {
    position: relative;
    z-index: 10;
}

.footer-top {
    border-bottom: 1px solid rgb(255 255 255 / 28%);
    padding: 0 0 70px;
}

.footer-bot {
    padding: 37px 0 48px;
}

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

.footer-logo {
    max-width: 241px;
    width: 100%;
    margin: 74px auto 35px;
}

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

.fc-field {
    display: inline-block;
    vertical-align: middle;
    margin: 0 14px;
}

.footer-contact a {
    color: #fff !important;
    font-size: 15px;
    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;
}

.fc-field * {
    display: inline-block;
    vertical-align: bottom;
}

.footer-tel i {
    font-size: 12px;
    margin-right: 12px;
}

.footer-email i {
    font-size: 9px;
    top: -2px;
    margin-right: 12px;
}

.footer-loc i {
    font-size: 16px;
    bottom: -1px;
    margin-right: 12px;
}


/* Footer Nav */

.footer .menu-main-menu-container li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 29px;
}

.footer .menu-main-menu-container li a {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    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;
}

.footer .menu-main-menu-container li.hb-menu {
    display: none;
}


/* Footer credits */

.footer-icons i {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 23px;
}

.copyright {
    font-size: 11px;
    color: #fff;
    margin: 27px 0 17px;
    letter-spacing: 0.5px;
}

.copyright span {
    text-transform: uppercase;
}

.copyright a:last-of-type {
    text-decoration: underline;
    font-weight: 700;
}

.copyright a {
    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 .menu-main-menu-container li a:hover,
.copyright a:hover,
.footer-contact a:hover {
    color: #c2c2c2 !important;
}


/* overflow */

.cta-wrap,
.fc-wrap,
.social-wrap,
.contact-wrap {
    overflow: hidden;
}


/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/

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

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

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

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

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

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


/* Adjust minimum height of page area */

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


/** Adjust width of content columns **/

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

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


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* fullwidth template */

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

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


/* Adjust line height of page elements */

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


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

#content .entry-title,
#content .archive-title {}


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

#content .archive-subtitle {}


/* Sidebar */

.qs-sidebar .qs-form .qs-field {
    width: 100%;
    margin: 0 0 1px;
}

.qs-sidebar .qs-form {
    flex-direction: column;
    margin: 30px 0;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    height: 92px;
    background: #fff;
    width: 100%;
    border: 0;
    padding-left: 50px;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 12px;
    color: #898989;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: 0;
    appearance: none;
}

.hp-quick-search .dropdown-menu.open {
    max-height: 300px !important;
}

.hp-quick-search ul.dropdown-menu.inner {
    max-height: 250px !important;
}

#inner-page-wrapper #content .entry {
    font-size: 14px;
}


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

.fp-arrows {
    display: block;
    position: relative;
    margin: 0 0 50px;
    font-size: 0;
}

.fp-arrows > div {
    display: inline-block;
    vertical-align: middle;
    width: 62px;
    height: 62px;
    border: 1px solid #00438b;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
    position: relative;
    z-index: 1;
}

.fp-arrows > div:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00438b;
    z-index: -1;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

.fp-arrows > div:hover:before {
    background: #0451a5!important;
}

.fp-arrows > div span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 17px;
    position: relative;
    z-index: 27;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

.fp-arrows > div.fp-next:before {
    background: transparent;
}

.fp-arrows > div.fp-next span {
    color: #00438b;
}

.fp-arrows > div:last-child {
    margin-right: 0;
}

.fp-arrows > div.fp-next:hover span {
    color: #fff;
}

.header-wrap {
    position: relative;
}

.header-contact {
    position: absolute;
    top: 8%;
    right: 0;
    padding-right: 138px;
}

.header-contact span {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
}

.header-contact span:first-child {
    padding-left: 0;
}

.header-contact span:last-child {
    padding-right: 0;
}

.header-contact span em.ai-font-phone {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 12px;
}

.header-contact span em.ai-font-envelope-f {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 10px;
}

.header-contact span a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.header-contact span a:hover {
    color: #00438b;
}

.fh-header-contact {
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 0;
}

.fh-header-contact span {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
}

.fh-header-contact span:first-child {
    padding-left: 0;
}

.fh-header-contact span:last-child {
    padding-right: 0;
}

.fh-header-contact span em.ai-font-phone {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 12px;
}

.fh-header-contact span em.ai-font-envelope-f {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 10px;
}

.fh-header-contact span a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fh-header-contact span a:hover {
    color: #c2c2c2;
}

.ip-contact-form .ai-contact-wrap {
    font-size: 0;
}

.ip-contact-form input,
.ip-contact-form textarea {
    width: 100%;
    height: 64px;
    background: #fff;
    color: #3a3a3a;
    font-size: 14px;
    padding: 0 22px;
    outline: 0;
    border-color: #022952 !important;
}

.contact-us.ip-contact-form textarea {
    resize: none;
    height: 137px;
    padding: 28px 45px 10px 22px;
}

.contact-us.ip-contact-form {
    max-width: 600px;
}

.contact-us.ip-contact-form input.wpcf7-submit {
    border: 0;
}

.page-id-10 section.contact-wrap {
    display: none;
}

.aios-split-nav #menu-item-23 .sub-menu li {
    display: inline-block;
    width: calc(99.3% / 2);
}

.aios-split-nav #menu-item-23 .sub-menu {
    min-width: 470px;
}

#fhnav #menu-item-44 .sub-menu li {
    display: inline-block;
    width: calc(99.3% / 2);
}

#fhnav #menu-item-44 .sub-menu {
    min-width: 470px;
}

ul#ihf-search-location-tabs,
ul#ihf-detail-extrainfotabs,
ul.chosen-results {
    margin-left: 0px !important;
    padding-left: 0px !important;
}

#ihf-main-container .chosen-container .chosen-results {
    max-height: 140px;
}

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

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

#listings-results .listings-grid .listings-info::before {
	z-index: -1;
}