/*
Theme Name: SK Signature Homes
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.9
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. Custom CSS
 *
 *******************************************************/


/* Global */

body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #515151;
    background: #fff;
    margin: 0;
}

*:focus {
    outline: none !important;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: #c9bb1c;
}

#main-wrapper {
    overflow: hidden;
}


/*** Header ***/

.header {
    position: absolute;
    z-index: 100;
    width: 100%;
    margin: 0 auto;
    padding: 35px 0;
}

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

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

.header-logo {}

.header-logo img {}

.header-contact-navigation {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1;
    /*margin-top: 32px;*/
}

.header-contact {
    margin-bottom: 24px;
}

.header-contact a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.9px;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-contact a:hover {
    color: #c9bb1c;
}

.header-contact a i {
    font-size: 14px;
    color: #c9bb1c;
    margin-right: 8px;
}


/*** Header Navigation ***/

.header-navigation {
    position: relative;
    z-index: 1;
}

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

.header-nav > li {
    position: relative;
    padding: 0 17px 0 18px;
}

.header-nav > li:before {
    content: "";
    width: 1px;
    height: 20px;
    background: #fff;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

.header-nav > li:first-child:before {
    display: none;
}

.header-nav li a {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 4px 0;
}


/*
.header-nav > li > a:before {
    content: '';
    width: 0;
    height: 2px;
    background: #d7b570;
    position: absolute;
    top: 0;
    left: -8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
*/

.header-nav > li > a:after {
    content: "";
    width: 0;
    height: 1px;
    background: #ddb061;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/*.header-nav > li:hover > a:before,*/

.header-nav > li:hover > a:after {
    width: 100%;
}

.header-nav .sub-menu {
    display: block;
    position: absolute;
    width: 100%;
    min-width: 180px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    padding-top: 15px;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

.header-nav > li > .sub-menu {
    left: -150%;
    right: -150%;
    margin: auto;
}

.header-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

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

.header-nav .sub-menu li a {
    background: rgb(11, 41, 81, 0.79);
    border-bottom: 1px solid transparent;
    padding: 14px 0;
}

.header-nav .sub-menu li:hover > a {
    border-bottom: 1px solid #ddb061;
}


/*** Burger Menu ***/

.burger-holder {
    margin-left: 48px;
    margin-top: 26px;
}

.burger-menu {
    width: 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.burger-menu span {
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.burger-menu span:nth-child(1),
.burger-menu span:nth-child(3) {
    height: 4px;
    max-width: 26px;
    background: #fff;
    margin: 0 0 0 auto;
}

.burger-menu span:nth-child(2) {
    height: 4px;
    max-width: 40px;
    background: #fff;
    margin: 8px auto;
}

.burger-menu span:nth-child(4) {
    margin-top: 24px;
}


/*** Off Canvas ***/

.admin-bar .site-offcanvas {
    top: 32px;
}

.site-offcanvas {
    position: fixed;
    z-index: 1001;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas.offcanvas-open {
    visibility: visible;
    pointer-events: auto;
}

.site-offcanvas.offcanvas-open:before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-offcanvas.offcanvas-open .site-offcanvas-inner {
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.site-offcanvas:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.site-offcanvas .site-offcanvas-inner,
.site-offcanvas .site-offcanvas-header,
.site-offcanvas .site-offcanvas-main,
.site-offcanvas .site-offcanvas-footer {
    position: relative;
    width: 100%;
}

.site-offcanvas .site-offcanvas-inner {
    background: rgb(11, 41, 81, 0.79);
    padding: 50px;
    width: 100%;
    max-width: 400px;
    /*height: 100%;*/
    height: 100vh;
    margin-left: auto;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.site-offcanvas .site-offcanvas-close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    color: #fff;
}

.site-offcanvas .site-offcanvas-close i {
    display: block;
    font-size: 14px;
    font-style: normal;
}

.site-offcanvas .site-offcanvas-header {}

.site-offcanvas .site-offcanvas-main {}

.site-offcanvas .site-offcanvas-navigation {
    position: relative;
}

.site-offcanvas-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.site-offcanvas-menu li {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    text-align: center;
    margin-bottom: 15px;
}

.site-offcanvas-menu li a {
    font-size: 18px !important;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    text-align: center;
    display: inline-block;
    position: relative;
    padding: 18px 0 6px;
    text-transform: uppercase;
}

.site-offcanvas-menu li a:hover {
    opacity: 0.7;
}

.site-offcanvas-menu li a::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #ddb061;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-offcanvas-menu li .sub-menu {
    position: absolute;
    top: 0;
    right: 100%;
    min-width: 320px;
    opacity: 0;
    padding: 0 50px 0 0;
    pointer-events: none;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.site-offcanvas-menu li:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

.site-offcanvas-menu li .sub-menu li {
    background: rgb(11, 41, 81, 0.79);
    margin-bottom: 2px;
}

.site-offcanvas-menu li .sub-menu li:last-child {
    margin-bottom: 0;
}

.site-offcanvas-menu li .sub-menu a {
    display: block;
}

.site-offcanvas-menu li .sub-menu a:before {
    display: none;
}

.site-offcanvas-menu li:hover .sub-menu {}

.site-offcanvas-menu li .sub-menu .sub-menu {
    padding: 0 0 0 0;
}

.site-offcanvas .site-offcanvas-footer {}


/*** Fixed Header ***/

.fixed-header {
    position: fixed;
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1001;
    opacity: 0;
    /*background: rgb(11, 41, 81, .79);*/
    background: rgb(11, 41, 81, 1);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 7px 0;
}

.fixed-header.show-fixed {
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    opacity: 1;
}

.fixed-header .container.custom {
    width: 100%;
    max-width: 1510px;
}

.fixed-header .header-inner {
    align-items: center;
}

.fixed-header .header-logo {
    max-width: 240px;
}

.fixed-header .header-navigation {
    flex-grow: 1;
}

.fixed-header .header-navigation .header-nav {
    justify-content: flex-end;
}

.fixed-header .header-navigation .header-nav .sub-menu {
    padding-top: 44px;
}

.fixed-header .burger-holder {
    margin-top: 0;
}


/*** Fixed Contact ***/

.fixed-contact {
    position: fixed;
    top: 40% !important;
    right: 60px;
    z-index: 2;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
/*    right: calc(((100vw - 1510px) / 2) + 15px);*/
    right: 25px !important;
    
}

.fixed-contact-inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.fixed-contact-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    border: 2px solid #c9bb1c;
    border-radius: 50%;
    margin-bottom: 9px;
    font-size: 20px;
    color: #fff;
    position: relative;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.fixed-contact-inner a:after {
    content: "";
    width: 1px;
    height: 9px;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    bottom: -11px;
    left: 18px;
}

.fixed-contact-inner a:first-child {
    font-size: 13px;
    margin-bottom: 38px;
}

.fixed-contact-inner a:first-child:after {
    height: 38px;
    bottom: -40px;
}

.fixed-contact-inner a:last-child {
    margin-bottom: 0;
}

.fixed-contact-inner a:last-child:after {
    display: none;
}

.fixed-contact-inner a i {}

.fixed-contact-inner a:hover {
    background: #c9bb1c;
}


/*** HP Slideshow ***/

#hp-slideshow {
    position: relative;
    z-index: 0;
}

.hp-slideshow {
    position: relative;
}

.hp-slideshow:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("images/slideshow-overlay.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hp-slideshow-inner {
    position: relative;
}

.hp-slideshow-inner > canvas {
    display: block;
    width: 100%;
    height: auto;
    min-height: 400px;
}
.hp-slideshow-inner #aios-slider-hp-slideshow .aios-slider-splide .aios-slider-img canvas,
.hp-slideshow-inner #aios-slider-hp-slideshow .aios-slider-splide .aios-slider-custom-video canvas{
    min-height: 400px;
}
.hp-slideshow-inner .aios-slider,
.hp-slideshow-inner .cycloneslider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 60px 0;
}

.slideshow-logo .container.custom {
    width: 100%;
    max-width: 1510px;
}

.slideshow-logo-inner {
    display: flex;
    justify-content: flex-end;
}


/*** Section Title & Button ***/

.section-title {}

.section-title h2 {
    font-size: 82px;
    font-weight: 400;
    letter-spacing: 4.1px;
    /*color: #152546;*/
    color: #16458b;
    text-transform: uppercase;
}

.hp-welcome .section-title h2 em {
    font-style: normal;
}

.section-title h2 span {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.9px;
    color: #999999;
    display: block;
    margin-bottom: 13px;
    position: relative;
    padding-left: 124px;
}

.section-title h2 span:before {
    content: "";
    width: 103px;
    height: 5px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b97c3b+0,be833f+6,c9904b+13,c8924a+14,e9c370+35,f0ce77+42,f5d37c+49,f5d37c+53,f1cd77+60,e0b664+73,d1a054+81,c48b44+91,bb7e3b+100 */
    background: #b97c3b;
    /* Old browsers */
    background: -moz-linear-gradient( left, #b97c3b 0%, #be833f 6%, #c9904b 13%, #c8924a 14%, #e9c370 35%, #f0ce77 42%, #f5d37c 49%, #f5d37c 53%, #f1cd77 60%, #e0b664 73%, #d1a054 81%, #c48b44 91%, #bb7e3b 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient( left, #b97c3b 0%, #be833f 6%, #c9904b 13%, #c8924a 14%, #e9c370 35%, #f0ce77 42%, #f5d37c 49%, #f5d37c 53%, #f1cd77 60%, #e0b664 73%, #d1a054 81%, #c48b44 91%, #bb7e3b 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to right, #b97c3b 0%, #be833f 6%, #c9904b 13%, #c8924a 14%, #e9c370 35%, #f0ce77 42%, #f5d37c 49%, #f5d37c 53%, #f1cd77 60%, #e0b664 73%, #d1a054 81%, #c48b44 91%, #bb7e3b 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#b97c3b', endColorstr='#bb7e3b', GradientType=1);
    /* IE6-9 */
    position: absolute;
    top: 6px;
    left: 0;
}

.section-content {}

.section-content h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #856a59;
    text-transform: uppercase;
}

.section-content p {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.375px;
    line-height: 1.73;
    color: #515151;
}

.section-content a {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.375px;
    line-height: 1.73;
    color: #18519b;
}

.section-content ul {}

.section-content ul li {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.375px;
    line-height: 1.73;
    color: #515151;
}

.section-button {}

.section-button a {
    width: 100%;
    max-width: 224px;
    height: 57px;
    background: #18519b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2.25px;
    color: #fff;
    text-transform: lowercase;
}

.section-button a:hover {
    background: #c9bb1c;
}


/*** FC Section ***/

#hp-fc {
    padding: 120px 0 70px;
}

.hp-fc {}

.hp-fc .section-title {}

.fc-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 calc(calc(calc(-100vw + 1170px) / 2) - 19px);
}

.fc-items-col {
    width: 50%;
    padding: 0 4px;
}

.fc-items .fc-items-col:nth-child(1) {
    padding-top: 200px;
}

.fc-items .fc-items-col:nth-child(2) {
    padding-top: 110px;
}

.fc-item {
    margin-bottom: 8px;
}

.fc-items-col .fc-item:last-child {
    margin-bottom: 0;
}

.fc-item a {
    display: block;
}

.fc-item-inner {
    position: relative;
}

.fc-photo {
    position: relative;
}

.fc-photo:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );

    opacity: 0 !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fc-photo canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fc-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 26px 0;
}

.fc-title h2 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1.1px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.fc-item a:hover .fc-photo:before {
    opacity: 0.7;
}


/*** SS Section ***/

#hp-ss {
    padding: 70px 0 65px;
}

.hp-ss {}

.hp-ss-inner {
    position: relative;
    padding-left: 148px;
}

.hp-ss-inner .cycloneslider-template-responsive .cycloneslider-caption {
    background: none;
    text-align: right;
    opacity: 1;
}

.hp-ss-inner .cycloneslider-template-responsive .cycloneslider-caption:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    height: 1px;
    width: 50px;
    background: #fff;
    pointer-events: none;
}

.hp-ss-inner .cycloneslider-template-responsive .cycloneslider-caption-description {
    padding: 0 60px 15px 10px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.hp-ss-inner .cycloneslider-template-responsive .cycloneslider-caption-description span {
    display: block;
    font-weight: 700;
    font-size: 1.4em;
}

.hp-ss-inner .section-title {
    position: absolute;
    top: -2px;
    left: 0;
    z-index: 1;
    background: #fff;
    padding-right: 43px;
    padding-bottom: 72px;
}

.ss-slider {
    background: #18519b;
    padding-left: 25px;
    padding-bottom: 25px;
}

.ss-slider .cycloneslider {
    margin-bottom: 30px;
}

.ss-slider-inner {
    position: relative;
}

.ss-slides {}

.ss-slide {}

.ss-slide a {
    display: block;
}

.ss-slide-inner {
    position: relative;
}

.ss-photo {
    position: relative;
}

.ss-photo:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
opacity: .5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ss-slide a:hover .ss-photo:before {
    opacity: .7;
}

.ss-photo canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ss-info {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 35px 68px;
}

.ss-info:before {
    content: "";
    width: 58px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
}

.ss-info h2 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #fff;
    text-transform: uppercase;
    text-align: right;
}

.ss-info h2 span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 6px 0;
}

.ss-slider-arrows {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ss-slider-arrows .ss-slider-arrow,
.ss-slider-arrows a {
    display: block;
    width: 43px;
    height: 42px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #18519b;
    cursor: pointer;
    display: none;
}

.ss-slider-arrows .ss-slider-arrow:first-child,
.ss-slider-arrows a:first-child {
    margin-right: 1px;
}


/*** WCU Section ***/

#hp-wcu {
    padding: 65px 0 120px;
}

.hp-wcu {}

.hp-wcu .content-wrapper {
    min-height: 100%;
}

.hp-wcu .section-title {
    margin-top: 53px;
    margin-bottom: 32px;
}

.hp-wcu .section-content {}

.hp-wcu .section-content strong.highlighted {
    display: block;
    line-height: 1.73;
    color: #16458b;
}

.hp-wcu .section-content ul {}

.hp-wcu .section-content ul li {
    margin-bottom: 11px;
    position: relative;
    padding-left: 34px;
}

.hp-wcu .section-content ul li:last-child {
    margin-bottom: 0;
}

.hp-wcu .section-content ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    background: #10458b;
    /* border-radius: 50%; */
    position: absolute;
    top: 8px;
    left: 5px;
}

.hp-wcu .section-content ul li:after {
    content: "";
    width: 17px;
    height: 17px;
    border: 1px solid #10458b;
    /* border-radius: 50%; */
    position: absolute;
    top: 3px;
    left: 0;
}

.hp-wcu .section-button {
    margin-top: 42px;
    padding-left: 34px;
}

.wcu-photo {}

.wcu-photo canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hp-wcu .row {
    display: flex;
}

.hp-wcu .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    align-self: center;
}


/*** Welcome Section ***/

#hp-welcome {
    padding: 81px 0;
    position: relative;
}

#hp-welcome:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("images/welcome-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(1);
}

#hp-welcome:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
}

.hp-welcome {}

.hp-welcome .content-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding-left: 38px;
}

.hp-welcome .content-wrapper:before {
    content: "";
    width: calc(calc(100% + calc(calc(100vw - 1170px) / 2)) + 45px);
    height: 100%;
    background: #fff;
    position: absolute;
    left: -30px;
    z-index: -1;
}

.hp-welcome .section-title {
    margin-top: 88px;
    margin-bottom: 24px;
}

.hp-welcome .section-content {}

.hp-welcome .section-content p {
    margin-bottom: 26px;
}

.hp-welcome .section-content p:last-child {
    margin-bottom: 0;
}

.hp-welcome .section-content p i {
    font-size: 20px;
    color: #16458b;
    font-weight: 800;
}

.hp-welcome .section-button {
    margin-top: 34px;
}

.welcome-photo {
    position: relative;
    z-index: 1;
}

.welcome-photo canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hp-welcome .row {
    display: flex;
}

.hp-welcome .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}


/*** Testimonials Section ***/

#hp-testi {
    padding: 115px 0 65px;
}

.hp-testi {}

.hp-testi .section-title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.testi-items {}

.testi-item {
    width: 100% !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 42px 0 29px;
}

.slick-slide > div:nth-of-type(even) .testi-item {
    border: 0;
}

.testi-item .section-content {}

.testi-item .section-content p {}

.testi-item .section-content h2 {
    margin-top: 31px;
}

.hp-testi .section-button {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}


/*** Testimonials Section ***/

#hp-blog {
    padding: 63px 0 160px;
    /*display: none;*/
}

.hp-blog {}

.hp-blog .section-title {
    display: flex;
    justify-content: center;
    margin-bottom: 75px;
}

.blog-items {}

.blog-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 57px 0 32px;
    display: flex;
    justify-content: flex-start;
}

.blog-item:first-child {
    padding-top: 0;
}

.blog-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-photo {
    width: 100%;
    max-width: 294px;
    margin-top: 1px;
}

.blog-photo canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.blog-item .section-content {
    width: 100%;
    padding-left: 47px;
}

.blog-item .section-content h2 {
    margin-bottom: 6px;
}

.blog-item .section-content p {
    margin-bottom: 26px;
}

.hp-blog .section-button {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}


/*** Footer ***/

.footer {
    position: relative;
    padding: 114px 0 66px;
}

.footer:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("images/footer-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(1);
}

.footer:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-top {
    position: relative;
    z-index: 1;
}

.footer-top .section-title {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.footer-form {
    margin: 0 -30px 143px;
}

.git-form {}

.git-form-row {}

.git-form-col {
    position: relative;
}

.git-form-col span {
    display: block;
}

.git-form-col input,
.git-form-col textarea {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.375px;
    line-height: 1.73;
    color: #515151;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 18px 0;
    width: 100%;
    display: block;
}

.git-form-col textarea {
    resize: none;
    height: 64px;
}

.git-form-col input[type="submit"] {
    max-width: 100%;
    width: 224px;
    height: 57px;
    background: #18519b;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2.25px;
    color: #fff;
    text-transform: lowercase;
}

.git-form-col input[type="submit"]:hover {
    background: #c9bb1c;
}

.git-form-row.col-3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 141px;
}

.git-form-row.col-3 .git-form-col {
    width: 33.33%;
    padding: 0 15px;
}

.git-form-row.col-3 .git-form-col:first-child {
    padding-left: 0;
}

.git-form-row.col-3 .git-form-col:last-child {
    padding-right: 0;
}

.git-form-row.col-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.git-form-row.col-2 .git-form-col:first-child {
    flex-grow: 1;
}

.footer-form .ajax-loader {
    position: absolute;
    margin: 0 !important;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    text-align: center;
    padding: 5px 0 !important;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 23px;
}

.footer-contact a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #202020;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact a:hover {
    color: #c9bb1c;
}

.footer-contact a i {
    font-size: 14px;
    color: #c9bb1c;
    margin-right: 8px;
}

.footer-contact a:first-child {
    margin-right: 30px;
}

.footer-contact a i.ai-font-envelope-f {
    font-size: 13px;
}

.footer-smi {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 46px;
}

.footer-smi a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #856a59;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    margin: 0 5px;
}

.footer-smi a:hover {
    background: #c9bb1c;
}

.footer-smi i {}

.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-navigation {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 34px;
    margin-bottom: 2px;
}

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

.footer-nav li {
    padding: 0 15px;
}

.footer-nav li a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
    line-height: 1.85;
    color: #202020;
    text-transform: uppercase;
}

.footer-nav li a:hover {
    color: #c9bb1c
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.footer-copyright p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: 1.66;
    color: #898989;
}

.footer-mls-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mls-logo i {
    font-size: 22px;
    color: #5d5d5d;
    margin: 0 2px;
}

.mob-only {
    display: none;
}


/*******************************************************
 *
 * 2. IP Styles
 *
 *******************************************************/

.ip-banner-wrap {
    position: relative;
}

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

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url("images/slideshow-overlay.png") top center repeat-x;
    background-size: cover;
    /*background: rgba(0, 0, 0, .3);*/
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    /*min-height: 250px;*/
    min-height: 480px;
    background-color: #f9f7f7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /*    filter:grayscale(1);
    -webkit-filter:grayscale(1);*/
}

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

.ip-banner h1 {
    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;
    text-transform: none;
    letter-spacing: 0.01em;
}


/*.header-banner-image {
    display: none;
}*/

.header-banner-image {
    display: block;
    text-align: right;
    margin-bottom: 24px;
}

.ip-container .header-contact-navigation {
    margin-top: 0;
}

.ip-container .header-banner-image img {
    max-width: 100%;
}


/* Adjust minimum height of page area */

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


/** Adjust width of content columns **/

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

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

#content .archive-thumbnail {
    width: 35%;
}

#content .archive-content {
    float: right;
    width: 62% !important;
}

#content .post {
    border: 0;
}

#content .archive-content a.archive-more {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 16px;
}

#content .archive-content a.archive-more:hover {}

#content .archive-thumbnail a {
    display: block;
    width: 100%;
}

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


/* Adjust width of sidebar */

.sidebar {
    width: 25.83%;
    margin-top: 27px;
}


/* 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 {
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 4.1px;
    /*color: #10458b;*/
    color: #16458b;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0;
    margin-top: 0;
    text-align: center;
    transform: translate(10vw, 0px);
    -moz-transform: translate(10vw, 0px);
    -webkit-transform: translate(10vw, 0px);
    transition: all ease 1s;
    -moz-transition: all ease 1s;
    -webkit-transition: all ease 1s;
}

#content .entry-title.title-intro,
#content .archive-title.title-intro {
    opacity: 1;
    transform: translate(0vw, 0px);
    -moz-transform: translate(0vw, 0px);
    -webkit-transform: translate(0vw, 0px);
}

.single.single-communities .back-button-wrap a {
    display: none;
}

#content a.back-bttn,
.back-button-wrap a {
    font-size: 19px;
    /*background: #16458b;*/
    background: transparent;
    /*color: #fff;*/
    color: #16468a;
    font-weight: 700;
    max-width: 200px;
    /*display: block;*/
    display: inline-block;
    /*height: 40px;*/
    height: auto;
    line-height: 40px;
    /*text-align: center;*/
    text-align: left;
    text-transform: uppercase;
    -webkit-transition: all 0.325s ease-in-out;
    -moz-transition: all 0.325s ease-in-out;
    -ms-transition: all 0.325s ease-in-out;
    transition: all 0.325s ease-in-out;
}

#content a.back-bttn:hover,
.back-button-wrap a:hover {
    color: #c9bb1c;
}

#content a.back-bttn:before,
.back-button-wrap a:before {
    content: "\b0256";
    position: relative;
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    display: inline-block;
    margin-right: 10px;
}

#content a.back-bttn span {
    display: none;
}


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

#content .archive-subtitle {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #10458b;
    text-transform: uppercase;
    line-height: 1;
}


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


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


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


/** 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) */


/** Global Archive Button */

.global-button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #10458b;
    width: 283px;
    max-width: 100%;
    height: 59px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.61px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #515151;
    background: transparent;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.global-button:hover {
    background: #10458b !important;
    border-color: #10458b !important;
    color: #fff !important;
}

.global-button.gb-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 283px;
}


/* Sidebar  */

.sb-qs {
    position: relative;
}

.sb-qs .qs-container {
    display: block;
    background: #10458b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.sb-qs .qs-title {
    padding: 0 0 0;
}

.sb-qs .qs-title h2 {
    font-size: 36px;
    color: #c9bb1c;
    line-height: 50px;
    background: url(images/title-dots.png) bottom center no-repeat;
    padding: 0 0 15px;
    text-align: center;
    margin: 0 0 0;
}

.sb-qs .qs-title h2 span {
    display: block;
    color: #fff;
    text-transform: uppercase;
}

.sb-qs .qs-form {
    padding: 0 15px;
}

.sb-qs .qs-field-row {
    font-size: 0;
    margin: 30px 0 0 0;
}

.sb-qs .qs-field-row:first-child {
    margin: 0 0 0 0;
}

.sb-qs .qs-field-single {
    margin: 20px 0 0 0;
    display: block;
}

.sb-qs .qs-field-single:first-child {
    margin: 0 0 0 0;
}

.sb-qs .qs-field-single select {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 100%;
    font-size: 13px;
    background: url(images/qs-dd.png) calc(100% - 15px) 50% no-repeat;
    border: 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.46);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 0 5px;
    height: 61px;
}

.sb-qs .qs-field-single select option {
    color: #444;
    text-transform: capitalize;
}

.sb-qs .qs-field-single .qs-field-range {
    padding: 0 0 19px;
}

.sb-qs .qs-field-single .qs-field-range:after {
    content: "";
    display: block;
    clear: both;
}

.sb-qs .qs-field-single .qs-field-range span {
    font-size: 15px;
    color: #fff;
    float: right;
}

.sb-qs .qs-field-single .qs-field-range span:first-child {
    float: left;
}

.sb-qs .qs-field-single .qs-field-price {
    font-size: 0;
    border: 0;
    height: 2px;
    background: #fff;
    width: calc(100% - 16px);
}

.sb-qs .ui-widget-content .ui-state-default {
    background: #f0a448;
    border: 0px solid #fff;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    top: -8px;
}

.sb-qs .ui-slider-horizontal .ui-slider-range {
    height: 2px;
    background: #858fa0;
}

.sb-qs .qs-field-bb > div {
    margin: 0 0 0 12px;
    width: calc(50% - 6px);
    display: inline-block;
    vertical-align: bottom;
}

.sb-qs .qs-field-bb > div:first-child {
    margin: 0 0 0 0;
}

.sb-qs .qs-field-btns > div {
    display: block;
    margin: 4px 0 0 0;
}

.sb-qs .qs-field-btns > div:first-child {
    margin: 0 0 0 0;
}

.sb-qs .qs-field-btns input {
    color: #fff;
    display: block;
    width: 100%;
    font-size: 12px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0);
    border-top: 2px solid #fff;
    letter-spacing: 0.58em;
    border: 2px solid #fff;
    padding: 0 0;
    line-height: 1;
    height: 71px;
    transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

.sb-qs .qs-field-single input#min-price {
    width: 100%;
    font-size: 14px;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.46);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 0 5px;
    height: 61px;
}

.sb-qs .qs-field-single input#max-price {
    width: 100%;
    font-size: 13px;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.46);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 0 5px;
    height: 61px;
}

.sb-qs .qs-field-btns a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0);
    border-top: 2px solid #fff;
    letter-spacing: 0.58em;
    border: 2px solid #fff;
    padding: 0 0;
    line-height: 1;
    height: 71px;
    transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

.sb-qs .qs-field-btns input:hover,
.sb-qs .qs-field-btns a:hover {
    color: #112445;
    background: rgba(255, 255, 255, 1);
}

.sb-cta {
    position: relative;
    padding: 30px 0 0;
}

.sb-cta ul {
    font-size: 0;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style: none;
}

.sb-cta li {
    margin: 30px 0 0 0;
    display: block;
}

.sb-cta li:first-child {
    margin: 0 0 0 0;
}

.sb-cta a {
    display: block;
    padding: 0 18px 18px;
    text-decoration: none;
    position: relative;
}

.sb-cta a:after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 93%;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.36);
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}

.sb-cta a:hover:after {
    background: #c9bb1c;
}

.sb-cta a .cta-img {
    position: relative;
    z-index: 1;
}

.sb-cta a .cta-img img {
    width: 100%;
}

.sb-cta a .cta-name {
    background: #fff;
    padding: 36px 0 15px;
    position: relative;
    z-index: 1;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}

.sb-cta a:hover .cta-name {
    padding: 21px 0 30px;
}

.sb-cta a .cta-name h3 {
    font-size: 15px;
    text-transform: uppercase;
    color: #808080;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin: 0 0 0;
}

.sb-cta a .cta-name h3 span {
    display: block;
    font-size: 40px;
    color: #10458b;
}

.ip-container .wpcf7 form .wpcf7-response-output {
    font-size: 12px;
    text-align: center;
}

body:not(.page-id-13) #content-sidebar #content {
    width: 100%;
}

body:not(.page-id-13) .sidebar {
    display: none;
}

.qlq {
    width: 56%;
    padding: 25px;
    margin: 0 auto;
    display: block;
    background-color: #fff;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    font-size: 0;
}

.qlq-text {
    font-size: 17px;
}

.qlq-shadow {
    width: 100%;
}

.qlq-form {
    margin-top: 40px;
}

.qlq-field {
    display: inline-block;
    vertical-align: middle;
    width: calc((100% - 23px) / 2);
    margin-bottom: 10px;
}

.qlq-field-right {
    float: right;
}

.qlq-field.qlq-field-lg {
    width: 100%;
}

.qlq-field label {
    font-size: 12px;
    color: #000;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.qlq-field label span {
    color: red;
}

.qlq-field .wpcf7-form-control-wrap {
    display: block;
    font-size: 13px;
}

.qlq-field input,
.qlq-field select,
.qlq-field textarea {
    appearance: none;
    border: none;
    background: transparent;
    display: block;
    width: 100%;
    height: 36px;
    padding: 0;
    -webkit-box-shadow: 0 4px 6px -3px #4c4d4e inset;
    -moz-box-shadow: 0 4px 6px -3px #4c4d4e inset;
    box-shadow: 0 4px 6px -3px #4c4d4e inset;
    font-size: 14px;
    padding: 10px;
    color: #000;
}

.qlq-field textarea {
    resize: none;
    height: 132px;
}

.qlq-field select {
    background-image: url("./images/caret.png");
    background-repeat: no-repeat;
    background-position: center right 10px;
}

.qlq-form input[type="submit"] {
    appearance: none;
    border: none;
    background: #f74a27;
    width: 100%;
    display: block;
    font-size: 16px;
    color: #fff;
    height: 36px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.qlq-form input[type="submit"]:hover {
    background: #b33a21;
}

.single-communities .sidebar,
.page-id-48 .sidebar,
.page-id-50 .sidebar {
    display: block !important;
}

.single-communities #content-sidebar #content,
.page-id-48 #content-sidebar #content,
.page-id-50 #content-sidebar #content {
    width: 72.08% !important;
}

.page-id-48 aside,
.page-id-50 aside {
    float: right !important;
}

.qlq-wrapper {
    position: relative;
    padding-top: 0;
}

.qlq {
    position: relative;
    z-index: 4;
}

.qlq-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 484px;
    background-image: url(images/mkn11.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 0 30px;
}

.parent-pageid-39 div#inner-page-wrapper > .container {
    /*width: 100%;
        padding: 0;*/
}

.parent-pageid-39 p#breadcrumbs,
.parent-pageid-39 #content .entry-title {
    padding-left: 30px;
}

.page-id-1028 #content .entry-title {
    text-align: center;
    font-size: 70px;
}


/* lenders page  */

.lender-row {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.lender-row .lender-text h2 {
    margin-top: 0 !important;
}


/** FC **/

#content .ipcomm-item {
    margin-bottom: 30px;
}

#content .ipcomm-item a {
    display: block;
}

#content .ipcomm-item-image {
    background: #000;
}

#content .ipcomm-item-image img,
#content .ipcomm-item-image a img {
    width: 100%;
    display: block;
/*    opacity: 0.5;*/
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

#content .ipcomm-item-image a:hover img {
    opacity: 0.7;
}

#content .ipcomm-item-name {
    display:block; 
    padding:15px 0;  
    text-align:center;
}

#content .ipcomm-item-name a {
    color:#000;
    font-size:22px;
    font-weight:bold;
    text-decoration:none;
    display:inline-block;
}

#content .ipcomm-disclaimer strong {
    font-weight: 700;
}

.single-aios_agent .agent-holder .agent-contact-name {
    color: #16458b;
    font-weight: 400;
    text-transform: uppercase;
}

.single-aios_agent .agent-holder .agent-contact-name strong {
    font-weight: 700;
}


/* Agent Start */

.agents-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 50px;
    /* border: 2px solid #000; */
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 224px;
    height: 57px;
    background: #18519b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2.25px;
    color: #fff;
    text-transform: lowercase;
}

.agents-smi {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    margin: 0 0 0 35px;
    padding: 0;
}

.agents-smi li {
    display: block;
    margin: 0;
    padding: 10px;
}

.agents-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    margin: 50px 0 0;
    padding: 20px 0;
    position: relative;
    width: 100%;
    background: #eee;
}

.agents-contact li {
    list-style: none;
    padding: 0 20px;
}

.btn-holder-agent {
    display: inline-flex;
    width: 500px;
}

.col-md-6.ip-wcu ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #10458b;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 5px;
}

.col-md-6.ip-wcu ul li::after {
    content: "";
    width: 17px;
    height: 17px;
    border: 1px solid #10458b;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
}

.ip-wcu ul li {
    margin-bottom: 13px;
    position: relative;
    padding-left: 34px;
}

.ip-wcu ul li:last-child {
    margin-bottom: 0;
}

.col-md-6.ip-wcu ul li {
    list-style: none;
}

#inner-page-wrapper #content .wcu-photo {
    float: left;
    width: 50%;
    max-width: 700px;
    height: auto;
    margin: 0 40px 30px 0;
}

#content .ip-wcu-content {
    overflow: hidden;
}

#content .ip-wcu-content h2,
#content .ip-wcu-content h3 {
    color: #16458b;
}

#content .ip-wcu-content ul {
    overflow: hidden;
}

#content .ip-wcu-content ul li {
    margin-bottom: 11px;
    position: relative;
    padding-left: 34px;
}

#content .ip-wcu-content ul li:last-child {
    margin-bottom: 0;
}

#content .ip-wcu-content ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    background: #10458b;
    /* border-radius: 50%; */
    position: absolute;
    top: 8px;
    left: 5px;
}

#content .ip-wcu-content ul li:after {
    content: "";
    width: 17px;
    height: 17px;
    border: 1px solid #10458b;
    /* border-radius: 50%; */
    position: absolute;
    top: 3px;
    left: 0;
}

.agent-contact-lang.agent-contact-detail {
    display: none;
}

.agent-holder .agent-contact-name {
    font-size: 45px;
}

.agent-holder .agent-holder-top:after {
    display: none;
}

.agent-holder .attachment-agent-image {
    padding-right: 27px;
}

.agent-holder .agent-contacts {
    padding: 0;
}

#ihf-main-container .chosen-container-single .chosen-single,
.ihf-main-container .chosen-container-single .chosen-single,
#ihf-main-container .chosen-container-multi .chosen-choices,
.ihf-main-container .chosen-container-multi .chosen-choices,
#ihf-main-container .form-control {
    border: 1px solid #000 !important;
}


/* Agent End */

#content .ip-wcu p {}

#content .ip-wcu p:nth-of-type(1) {
    margin: 0 0 1.12em 0;
}

#content .ip-wcu.image-wcu {
    margin: 0 -10px 0 -60px;
}

#content .ip-wcu img {
    display: block;
    width: 100%;
    height: auto;
}

div#ihf-map-canvas {
    height: 400px !important;
}

#content .ip-wcu ul {
    margin-left: 20;
    font-size: 14px;
}

#content .team-agent h3 {
    color: #16458b;
    font-size: 45px;
    font-weight: bold;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 0.75em;
}

.page-id-46 #content .team-agent h3 {
    font-size: 33px;
    text-transform: unset;
}

#content .team-agent h3 span {
    font-weight: 700;
}

.team-agent img {
    padding-right: 27px;
    padding-bottom: 27px;
    /*width: 37%;*/
    width: 45%;
}

.page-id-121 #content .entry-title,
.page-id-203 #content .entry-title,
.page-id-202 #content .entry-title {
    display: none;
}

.team-agent a.asis-mailto-obfuscated-email {
    padding-left: 12px;
}

.team-agent em.ai-mobile-phone {
    padding-left: 17px;
}

.ip-preferred-lender .team-agent img {
    padding: 0;
    width: auto;
}

body.page-template-template-blogs #content .entry-title,
body.post-page-why-choose-us #content .entry-title,
body.page-template-template-agent-archive #content .entry-title,
body.post-page-lenders-info #content .entry-title,
body.post-page-featured-communities #content .entry-title,
body.page-id-39 #content .entry-title,
body.page-id-49 #content .entry-title,
body.ihf-results-template-shortcode #content .entry-title,
body.ihf-results-template-shortcode #content .archive-title,
body.page-id-43 h1.entry-title,
body.page-id-48 h1.entry-title,
body.page-id-45 h1.entry-title,
.post-type-archive-testimonials h1.archive-title,
body.page-id-13 h1.entry-title,
body.page-id-693 h1.entry-title,
body.page-id-696 h1.entry-title,
body.page-id-699 h1.entry-title,
body.page-id-690 h1.entry-title,
body.page-id-702 h1.entry-title,
body.page-id-704 h1.entry-title,
body.page-id-875 h1.entry-title,
body.page-id-874 h1.entry-title,
body.page-id-873 h1.entry-title,
body.page-id-872 h1.entry-title,
body.page-id-871 h1.entry-title,
body.page-id-870 h1.entry-title {
    line-height: 1 !important;
    margin-top: 0 !important;
    font-size: 70px !important;
    text-align: center;
}

#agents-results .agents-description p span {
    color: #16458b;
    display: block;
    font-weight: 700;
    margin: 0 0 20px;
}


/*.ip-banner canvas {
    min-height: 480px !important;
}*/

.page-template-template-sellers .ip-banner-wrap:before {
    display: none;
}

.featured-back .back-button-wrap {
    display: none;
}

.back-button-wrap a {
    /*color: #565151;
    background: transparent;
    text-align: left;
    max-width: auto !important;
    height: auto;
    display: inline-block !important;
    -webkit-transition: all .325s ease-in-out;
-moz-transition: all .325s ease-in-out;
-ms-transition: all .325s ease-in-out;
transition: all .325s ease-in-out;*/
}

.back-button-wrap a:hover {
    /*color: #c9bb1c;*/
}

.page-id-37 .back-button-wrap {
    display: none;
}

.bold-text {
    font-weight: 700 !important;
    color: #16468a;
    font-size: 15px !important;
}

#content .community-inner .back-button-wrap {
    display: none;
}

.featured-back .ip-banner canvas {
    min-height: 480px !important;
    background-image: url(images/past-sales-banner.jpg) !important;
}

.featured-back h1.entry-title.title-intro {
    font-size: 70px !important;
    text-align: center;
}

.ip-text-img {
    position: relative;
}

.ip-img {
    position: relative;
    margin: 20px auto 0;
    max-width: 450px;
}

.ip-img:first-child {
    margin: 0 auto 0;
}

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

#listings-details .listings-slideshow {
    position: relative;
}

#listings-details .listings-slideshow:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    pointer-events: none;
}

#listings-details .listings-slideshow .slick-list {
    position: relative;
    z-index: 0;
}

#content a.back-bttn {
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    line-height: 1;
}

#content a.back-bttn:hover {}

#content a.back-bttn span {
    font-size: 10px;
    margin: 0 5px 0 0;
}

a.button-element.listings-link-navigation-main.aios-initial-setup-dead-link {
    color: #16458b;
    border-color: #16458b;
}

a.button-element.listings-link-navigation-main.aios-initial-setup-dead-link:hover {
    background-color: #c1b283 !important;
    border-color: #c1b283 !important;
}

a.listings-link-navigation-main {
    color: #16458b !important;
    border-color: #16458b !important;
}

a.listings-link-navigation-main:hover {
    background-color: #c1b283 !important;
    border-color: #c1b283 !important;
    color: #fff !important;
}

.main-fl {
    padding: 30px 0 0;
}

#ihf-main-container #ihf-valuation-request-form {
    margin: 30px auto;
    max-width: 660px;
}

.page-id-37 #listings-results .listings-sort .sort-view + div {
    display: none;
}

.page-id-37 #listings-results .listings-sort .sort-view + div + div {
    margin-left: auto;
}

body.page-id-0 #content .entry-content > br {
    display: none;
}

body.page-id-0 #content .ihf-detail-back-to-results > a,
body.page-id-0 #content .entry-content > a {
    background: transparent;
    color: #16468a;
    font-weight: 700;
    display: inline-block;
    height: auto;
    line-height: 40px;
    text-align: left;
    -webkit-transition: all 0.325s ease-in-out;
    -moz-transition: all 0.325s ease-in-out;
    -ms-transition: all 0.325s ease-in-out;
    transition: all 0.325s ease-in-out;
}

body.page-id-0 #content .ihf-detail-back-to-results > a:hover,
body.page-id-0 #content .entry-content > a:hover {
    color: #c9bb1c;
}

#ihf-main-container #ihf-leadcapture-btns {}

#ihf-main-container #ihf-leadcapture-btns a.btn-primary.btn-detail-leadcapture {
    background: #0c2951;
    border-color: #0c2951;
    padding: 12px 12px;
    transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

#ihf-main-container #ihf-leadcapture-btns a.btn-primary.btn-detail-leadcapture:hover {
    color: #0c2951;
    background: #fff;
}

#ihf-main-container .carousel-control .glyphicon-chevron-right {
    left: auto;
}

#content #ihf-main-container .ihf-virtual-tour-link {
    padding: 0 0;
    background: none;
}

#content #ihf-main-container .ihf-virtual-tour-link a {
    background: #0c2951;
    border: 1px solid #0c2951;
    color: #fff;
    padding: 6px 8px;
    display: block;
    text-decoration: none;
    transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

#content #ihf-main-container .ihf-virtual-tour-link a:hover {
    color: #0c2951;
    background: #fff;
}

#content #ihf-detail-features-tab .title-bar-1 {
    background: #0c2951;
    color: #fff;
    border: 1px solid #0c2951;
}

#content #ihf-main-container .ihf-social-share .ihf-share-btn {
    background: #c9ba1b;
}

#content #ihf-main-container .ihf-social-share .ihf-share-btn:hover {
    background: #0c2951;
}

.page-template-template-blogs #content .archive-subtitle {
    margin-top: 0;
}

.print-logo {
    display: flex;
    /* justify-content: center; */
    margin-bottom: 15px;
    margin-top: 50px;
}

.print-contact {
    display: blcck;
    justify-content: center;
    /* align-items: center; */
}

.print-contact a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #202020;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: nowrap;
}

.print-contact a:first-child {
    margin-left: -50px;
}

.print-contact i {
    font-size: 14px;
    color: #c9bb1c;
    margin-right: 8px;
}

.footer-additional-info {
    text-align: center;
    margin: 2rem 0;
}

.footer-additional-info p {
    padding: 7px 0;
    font-weight: 500;
}

.more-articles {
    display: flex;
    justify-content: center;
}

.more-articles a {
    display: flex;
    align-items: center;
}

.more-articles span {
    padding-left: 1rem;
}

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

.wpcf7-form-control-wrap {
    display: block;
}

#ihf-main-container .nav-tabs {
    margin-left: 0;
}

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

#ihf-main-container #ihf-detail-features-tab > .row {
    margin: 0;
}

body #pojo-a11y-toolbar {
    top: calc(100vh - 52px) !important;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
    transform: translateY(calc(-100% + 52px));
}
#hp-fc,
#hp-ss,
#hp-wcu,
#hp-welcome,
#hp-testi,
.home .footer{
    display: none;
}

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

.more-articles.d-none {
	display: none;
}

.checkmarks {
    list-style: none;
    padding-left: 30px;
}

.checkmarks li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.checkmarks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-id-39 #content .entry-content :is(h2,h3){
    font-size: 35px;
    color: #10458b;
    letter-spacing: 0.050em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 29px 0 0;
    margin: 0 0 30px;
}
.page-id-39 #content .entry-content :is(h2,h3) strong {
    font-weight: normal;
}
.page-id-39 #content .entry-content h3{
    font-size: 25px;
}

.category-blog .entry-content h2,
.category-blog .entry-content h3
{
    color: #10458b;
}
.category-blog .entry-content a{
    text-decoration: underline !important;
}

.category-blog .entry-content li{
    margin-bottom: 13px;
    position: relative;
    padding-left: 34px;
    list-style: none;
    font-size: 14px;
}

.category-blog .entry-content li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #10458b;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 5px;
}

.category-blog .entry-content li::after {
    content: "";
    width: 17px;
    height: 17px;
    border: 1px solid #10458b;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
}

.page-id-7954 h2,
.page-id-50 h2{
    color: #10458b;
    font-size: 30px !important;
    margin-top: 10px !important;
    text-align: center;
}

.page-id-7954 .entry-title,
.page-id-50 .entry-title{
    margin-bottom: 0 !important;
}

#listings-results .dropdown.sort-dropdown:first-child
{
    display: none !important;
}

.page-id-7954 #content h2,
.page-id-50 #content h2 {
    opacity: 0;
    transform: translate(10vw, 0px);
    -moz-transform: translate(10vw, 0px);
    -webkit-transform: translate(10vw, 0px);
    transition: all ease 1s;
    -moz-transition: all ease 1s;
    -webkit-transition: all ease 1s;
}

.page-id-7954 #content h2.subtitle-intro,
.page-id-50 #content h2.subtitle-intro {
    opacity: 1;
    transform: translate(0vw, 0px);
    -moz-transform: translate(0vw, 0px);
    -webkit-transform: translate(0vw, 0px);
}

span.wpcf7-not-valid-tip ~ span.wpcf7-not-valid-tip {
    display: none !important;
}