/*
Theme Name: Mountain View Real Estate Group
Theme URI: http://mmadd-pendingcom.rs4.aios-staging.com/
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.2
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;
    padding: 0 10.5px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}


#nav li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

#nav>li>a:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}

#nav>li>a:hover:before {
    height: 2px;
    opacity: 1;
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    transform: translateY(4px);
}

#nav li:last-child {
    padding-right: 0;
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}


#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 200px;
    left: 50%;
    text-align: center;
    z-index: 99;
    -webkit-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
    margin-top: 30px;
}

#nav li:hover>.sub-menu {
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    opacity: 1;
    visibility: visible;
}

#nav .sub-menu a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu a:hover {
    color: #fff;
    text-decoration: none;
}

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

#nav .sub-menu li {
    position: relative;
    display: block;
    background: #000;
    max-width: 180px;
    margin: 0 auto 1px;
    padding: 0 !important;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;

}

#nav .sub-menu li:hover {
    background: #c00101;
}

#nav .sub-menu .sub-menu {
    margin-left: 100% !important;
    ;
    top: 0 !important;
    left: 0 !important;
    padding: 0 !important;
    transform: none !important;
    min-width: 160px;
}

#nav .sub-menu .sub-menu li:hover {
    background: #633193;
}

#nav .sub-menu .sub-menu .sub-menu {
    margin-left: 100% !important;
    ;
    top: 0 !important;
    left: 0 !important;
    padding: 0 !important;
    transform: none !important;
    min-width: 160px;
}

#nav .sub-menu .sub-menu .sub-menu li:hover {
    background: #633193;
}

#nav li:last-child .sub-menu {
    left: -30%;
}

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


a,
a:hover,
a:visited,
a:focus,
textarea {
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

.slick-track * {
    outline: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

input {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/*FIXED HEADER*/

#fixed-header {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#fixed-header.active {
    transform: translateY(0);
}

#fixed-header.active .header-wrapper {
    height: 73px;
    background: #000;
}

#fixed-header.active #nav li a {
    font-size: 14px;
}

/* HEADER */

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo img {
    max-width: 100%;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

/*SLIDESHOW*/

.slideshow-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img:before,
.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-custom-video::before,
.slideshow-container .cycloneslider-slide:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 273px;
    background: url(images/slide-overlay-top.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
}

.slideshow-container .cycloneslider-template-responsive.cycloneslider-width-full .cycloneslider-slide canvas,
.slideshow-container .cycloneslider-template-responsive.cycloneslider-width-full .cycle-sentinel canvas {
    min-height: 800px;
}


/*AGENT SECTION*/

.agent-container {
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 1920px;
    overflow: hidden;
}

.agent-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.agent-img img {
    max-width: 100%;
}


.agent-left,
.agent-right {
    display: block;
    position: relative;
}

.agent-left .agent-contact-wrap {
    position: absolute;
    bottom: 21px;
    left: 0;
    right: -20%;
    width: 254px;
    height: 89px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: url(images/agent-details-left-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-left: auto;
    padding-right: 25px;
    font-size: 0;
}

.agent-right .agent-contact-wrap {
    position: absolute;
    bottom: 21px;
    left: -18%;
    right: 0;
    width: 254px;
    height: 89px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: url(images/agent-details-right-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-right: auto;
    padding-left: 61px;
    font-size: 0;
}

.agent-contact span.agent-phone {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 24px;
    color: #fff;
}

.agent-contact span.agent-email a {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.agent-contact span.agent-email a:hover {
    color: #c00101;
}

.agent-name-wrap span.agent-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.4px;
    color: #fff;
    text-transform: uppercase;
}


.agent-contact span.agent-phone em.ai-font-phone {
    font-size: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.agent-contact span.agent-email em.ai-font-envelope {
    font-size: 9px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}




/*QUICKSEARCH SECTION*/


.qs-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #c00101;
    padding: 13px 0;
    z-index: 1;
}

.qs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.qs-wrapper h2.qs-title {
    position: absolute;
    top: -70%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3.6px;
    color: #fff;
    text-transform: uppercase;
    pointer-events: none;
}


.qs-form {
    position: relative;
    display: block;
}


.qs-wrapper form.hp-quick-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.qs-input-wrap {
    position: relative;
}

.qs-city {
    position: relative;
    width: 665px;
}

.qs-city input#qs-long {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .46);
    width: 100%;
    height: 44px;
    padding: 0 60px 0 15px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    font-style: italic;
}


.qs-submit {
    position: absolute;
    top: 22%;
    right: 13px;
    border-left: 1px solid rgba(255, 255, 255, .46);
    padding-left: 13px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
}

.qs-submit input[type="submit"] {
    border: none;
    background: url(images/qs-magnifying-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    font-size: 0;
    width: 19px;
    height: 19px;
    margin: 3px 0;
}

.qs-adv-btn {
    margin-left: 21px;
}

.qs-adv-btn a.qs-adv {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.qs-adv-btn a.qs-adv:hover {
    color: #000;
}

/*CTA SECTION*/

/* .cta-wrapper .row {
    margin: 0 -130px;
} */

.cta-img canvas {
    display: block;
    width: 100%;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.cta-img {
    position: relative;
}


.cta-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.cta-wrapper {
    position: relative;
    display: block;
    padding: 113px 0 0;
    max-width: 1366px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper .cta-item {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.cta-icon-wrap.cta-icon-1 canvas,
.cta-icon-wrap.cta-icon-2 canvas,
.cta-icon-wrap.cta-icon-3 canvas,
.cta-icon-wrap.cta-icon-4 canvas {
    display: block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    max-width: 207px;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.cta-item-wrap {
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    display: block;
    position: relative;
}

.cta-item-wrap a {
    display: block;
    position: relative;
    border-radius: 50%;
    border: 12px solid #fff;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.cta-icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    width: calc(100% - 20px);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.cta-title-wrap {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14.57px;
    font-weight: 800;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}



/*hovers*/
.cta-item-wrap a:hover {
    border: 12px solid red;
}

.cta-item-wrap a:hover .cta-img canvas {
    z-index: -1;
}


.cta-item-wrap a:hover .cta-img:before {
    opacity: 1;
}

.cta-item-wrap a:hover .cta-title-wrap {
    color: #fff;
}

.cta-item-wrap a:hover .cta-icon-wrap.cta-icon-1 canvas {
    background-image: url('images/cta-buyer-hover.png') !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cta-item-wrap a:hover .cta-icon-wrap.cta-icon-2 canvas {
    background-image: url('images/cta-seller-hover.png') !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cta-item-wrap a:hover .cta-icon-wrap.cta-icon-3 canvas {
    background-image: url('images/cta-email-hover.png') !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cta-item-wrap a:hover .cta-icon-wrap.cta-icon-4 canvas {
    background-image: url('images/cta-contact-hover.png') !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


/*FEATURED PROPERTIES*/


.fp-wrapper {
    position: relative;
    padding: 152px 0 100px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 1920px;
    text-align: center;
}

.fp-wrapper:before {
    position: absolute;
    content: '';
    top: -16%;
    left: 0;
    width: 100%;
    height: 1148px;
    background: url(images/fp-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    z-index: -1;
}

.fp-title-inner-wrap h2.fp-title-sm {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #000;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.fp-title-inner-wrap span.fp-title-bg {
    font-size: 48px;
    letter-spacing: 9.6px;
    font-weight: 700;
    color: #000;
    display: block;
}

.fp-title-wrap {
    text-align: left;
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.fp-title-wrap a {
    font-size: 14px;
    line-height: 48px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-title-wrap a:hover {
    color: #c00101;
}

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

.fp-img {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.fp-main-wrap {

    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 3.91%;
}


.fp-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 580px;
    background: #fff;
    height: 100%;
    min-height: 419px;
    border: 16px solid #fff;
    border-left: none;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-align: center;

}

.fp-img canvas {
    display: block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    min-height: 443px;
    border: 16px solid #fff;
}

.slick-slide.slick-center .fp-img canvas {
    filter: none;
}


.fp-title-inner-wrap {
    padding-left: 66px;
}


.fp-location {
    text-align: center;
    margin-bottom: 20px;
}



.fp-location span.fp-add-main {
    display: block;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    margin-bottom: 15px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;

}

.fp-location span.fp-add-sec {
    font-size: 18px;
    line-height: 1;
    color: #757575;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;

}

.fp-price-wrap {
    margin-bottom: 30px;
}

.fp-price-wrap span.fp-price {
    font-size: 48px;
    line-height: 48px;
    font-weight: 800;
    letter-spacing: 4.8px;
    color: #000;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;

}

.fp-details {
    margin-bottom: 31px;
}

.fp-details span {
    font-size: 14px;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 16.5px;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;

}

.fp-details span:before {
    position: absolute;
    content: '';
    top: 2px;
    left: 0;
    width: 1px;
    height: 14px;
    background: #000;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fp-details span:first-child {
    padding-left: 0;
}

.fp-details span:last-child {
    padding-right: 0;
}

.fp-details span:first-child:before {
    display: none;
}

.fp-btn-wrap span.fp-btn {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 239px;
    height: 61px;
    background: #c00101;
    text-transform: uppercase;
    border: none;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    margin: 0 auto;
}


.fp-container .slick-dots li {
    display: inline-block;
}

.fp-container .slick-dots li button {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 5.5px;
    border: 1px solid #fff;
    font-size: 0;
    border-radius: 50%;
    background: #fff;
}

.fp-container ul.slick-dots {
    margin: 85px auto 0;
    text-align: center;
    display: block;
}

.fp-container .slick-dots li.slick-active button {
    background: #c00101;
    border-color: #c00101;
}

/* hovers*/

.slick-slide.slick-center .fp-item a:hover .fp-info-wrap {
    border: 16px solid #fff;
    border-left: none;
    background: #c00101;
}

.slick-slide.slick-center .fp-item a:hover .fp-location span.fp-add-main {
    color: #fff;
}

.slick-slide.slick-center .fp-item a:hover .fp-location span.fp-add-sec {
    color: #fff;
}

.slick-slide.slick-center .fp-item a:hover .fp-price-wrap span.fp-price {
    color: #fff;
}


.slick-slide.slick-center .fp-item a:hover .fp-details span {
    color: #fff;
}

.slick-slide.slick-center .fp-item a:hover .fp-btn-wrap span.fp-btn {
    border: 1px solid #fff;
}

.slick-slide.slick-center .fp-item a:hover .fp-details span:before {
    background: #fff;
}


/* FEATURED COMMUNITIES*/

.fc-wrapper {
    padding-top: 102px;
    padding-bottom: 119px;
}

.fc-title-wrap.left {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    text-decoration: underline;
    color: #000;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: -26%;
    right: 0;
    margin-right: auto;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fc-title-wrap.left:hover,
.fc-title-wrap.right:hover {
    color: #c00101;
}

.fc-title-wrap.right {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    text-decoration: underline;
    color: #000;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    right: -55%;
    margin-left: auto;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fc-content-wrap.right p {
    font-size: 14px;
    line-height: 30px;
    color: #888888;
    margin-left: auto;
    text-align: right;
}

.fc-content-wrap.left p {
    font-size: 14px;
    line-height: 30px;
    color: #888888;
    margin-left: auto;
}

.fc-number span {
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
}

.fc-btn-wrap span {
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fc-btn-wrap span:hover {
    color: #c00101;
}

.fc-title-main h2.fc-title {
    font-size: 30px;
    line-height: 55px;
    letter-spacing: 6px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.fc-title-main a {
    font-size: 14px;
    line-height: 48px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fc-title-main a:hover {
    color: #c00101;
}

.fc-title-main p {
    width: 90%;
    max-width: 800px;
    margin: 10px auto 0;
    color: #888888;
    font-size: 14px;
    line-height: 30px;
}

.fc-title-main {
    text-align: center;
    display: block;
    margin-bottom: 140px;
}

.fc-main .fc-item {
    margin-top: -110px !important;
}

.fc-main .fc-item:first-child {
    margin-top: 0 !important;
}

.fc-item.left,
.fc-item.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 874px;
    margin-left: 90px;
    pointer-events: none;
}

.fc-img {
    position: relative;
}

.fc-img canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    min-width: 341px;
}

.fc-right-wrap.left {
    padding-left: 15px;
    margin-right: auto;
    width: 100%;
    max-width: 387px;
    pointer-events: none
}

.fc-left-wrap.right {
    padding-right: 15px;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    pointer-events: none
}

.fc-right-wrap.right,
.fc-left-wrap.left {
    pointer-events: auto;
}

.fc-right-wrap.right {
    padding-left: 15px;
}

.fc-left-wrap.left {
    padding-right: 15px;
}

.fc-btn-wrap.left {
    text-align: right;
    margin-top: 27px;
}

.fc-btn-wrap.right {
    text-align: left;
    margin-top: 27px;
}

.fc-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .24);
}


.fc-number.left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    margin-bottom: 60px;
}

.fc-number.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
    margin-bottom: 60px;
}

.fc-item.left,
.fc-item.right {
    margin-top: 0;
}

.fc-title-wrap.right.last {
    right: -29%;
}

.fc-left-wrap a,
.fc-right-wrap a {
    display: block;
    position: relative;
    z-index: 2;
}

/* WELCOME SECTION*/


.welc-wrapper {
    position: relative;
    height: 1194px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 1920px;
}

.welc-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/welc-bg.jpg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

.welc-wrapper:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/welc-bg-overlay.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

.welc-title-wrap {
    margin-bottom: 40px;
}

.welc-title-wrap h1.welc-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    text-transform: uppercase;
}

.welc-content-wrap p {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 27px;
}

.welc-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 197px;
    height: 48px;
    border: 1px solid #fff;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.welc-btn a:hover {
    background: #c00101;
    border-color: #c00101;
}

.welc-btn {
    margin-top: 80px;
}

.site-global-bootstrap-extend-right {
    margin-right: calc((100vw - 1416px) / -2);
}

.welc-content-main {
    padding-top: 150px;
}

/* TESTIMONIALS SECTION*/

.site-global-bootstrap-extend-left {
    margin-left: calc((100vw - 1140px) / -2);
}

.welc-img canvas {
    display: block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    max-width: 785px;
    min-height: 567px;
}

.welc-img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.welc-img:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 83px;
    height: 83px;
    background: url(images/video-play-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.welc-team-photo img {
    max-width: 100%;
}

/*TESTIMONIALS SECTION*/

.testi-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 1920px;
}

.testi-padd-left {
    padding-top: 152px;
    padding-bottom: 214px;
}

.testi-padd-right {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.testi-padd-right:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    /*calc(100% + 179px)*/
    height: 100%;
    background: #f1f1f1;
    min-height: 931px;
}

.testi-content-wrapper h2.testi-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 6px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 21px;
}

.testi-item p {
    font-size: 14px;
    line-height: 30px;
    color: #888;
    margin-bottom: 40px;
}

.testi-name span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #000;
}

.testi-video {
    position: relative;
}

.testi-video-wrapper {
    position: relative;
}

.testi-video-label {
    position: absolute;
    bottom: -25%;
    left: 0;
    background: #fff;
    offset-rotate: 30%;
    position: absolute;
    background: #fff;
    transform-origin: 0 0;
    transform: rotate(270deg);
    margin-left: 0;
    width: 272px;
    height: 81px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 4.8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 35px;
    padding-bottom: 10px;
}

.testi-video-label:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 31px;
    height: 31px;
    background: url(images/video-play-icon-sm.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: rotate(90deg);
}

.testi-content-wrapper {
    /* padding-left: 24.4%; */
    position: relative;
    text-align: center
}


.testi-content-wrapper .slick-dots li {
    display: inline-block;
    margin: 0 7px;
}

.testi-content-wrapper .slick-dots li:first-child {
    margin-left: 0;
}


.testi-content-wrapper .slick-dots li button {
    width: 16px;
    height: 16px;
    padding: 0;
    border: 1px solid #dfdfdf;
    font-size: 0;
    border-radius: 50%;
    background: #dfdfdf;
}

.testi-content-wrapper ul.slick-dots {
    text-align: center;
    display: block;
    margin-top: 40px;
}

.testi-content-wrapper .slick-dots li.slick-active button {
    background: #c00101;
    border-color: #c00101;
}

/*GET IN TOUCH*/

.git-wrapper {
    padding: 120px 0;
    position: relative;
    height: 100%;
    min-height: 749px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.git-wrapper h2.git-title {
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 45px;
}

.git-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 749px;
    background: url(images/git-bg.jpg) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    pointer-events: none;
    z-index: -1;
}

.git-wrapper:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 749px;
    background: rgba(0, 0, 0, .56);
    pointer-events: none;
    z-index: -1;
}

.git-form {
    position: relative;
}

.git-form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 711px;
    margin: 0 auto;
    width: 100%;
}

.git-col-1 {
    width: calc(50% - 4px);
}


.git-row input#your-name {
    height: 44px;
    background: #fff;
    border: 1px solid #404345;
    padding: 0 21px;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.48px;
    color: #6c7072;
    width: 100%;
}

.git-row input#email {
    height: 44px;
    background: #fff;
    border: 1px solid #404345;
    padding: 0 21px;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.48px;
    color: #6c7072;
    width: 100%;
}

.git-row input#your-email {
    height: 44px;
    background: #fff;
    border: 1px solid #404345;
    padding: 0 21px;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.48px;
    color: #6c7072;
    width: 100%;
}

.git-row input#your-phone {
    height: 44px;
    background: #fff;
    border: 1px solid #404345;
    padding: 0 21px;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.48px;
    color: #6c7072;
    width: 100%;
}

.git-row {
    margin-bottom: 9px;
}

.git-row-bot {
    width: 351px;
    margin-bottom: 8px;
}

.git-row-bot textarea#message {
    width: 100%;
    height: 96px;
    background: #fff;
    border: 1px solid #404345;
    padding: 18px 21px;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.48px;
    color: #6c7072;
    resize: none;
}

.git-col-2 {
    width: calc(50% - 4px);
}

.git-submit input#submit {
    height: 44px;
    background: #c00101;
    border: none;
    padding: 0;
    color: #fff;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.git-submit input#submit:hover {
    background: #000;
}

.git-submit {
    width: 351px;
}

.git-container form {
    position: relative;
}

.git-container div.wpcf7-response-output {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -46px;
    width: 100%;
    max-width: 711px;
    margin: 0 auto;
    color: #fff !important;
    text-align: center;
}


.git-container div.wpcf7 .ajax-loader {
    margin: 0 auto;
    display: block;
}

/*FOOTER */

.footer-bot-wrap {
    border-top: 1px solid rgba(53, 53, 53, .40);
}

.footer-contact-left,
.footer-nav {
    padding-top: 30px;
}


.footer-top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
    padding-bottom: 50px;
}


.footer-agents-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-nav ul {
    -webkit-column-count: 2;
    column-count: 2;
}

.footer-wrapper {
    background: #000;
    padding-top: 40px;
}

.footer-contact span {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1.35px;
    color: #fff;
    display: block;
}

.footer-contact span.footer-email a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;

}

.footer-contact span.footer-email a:hover {
    color: #c00101;
}

.footer-contact span em.ai-font-phone {
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    margin-right: 7px;
}

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

.footer-nav ul li a {
    font-size: 11px;
    line-height: 30px;
    color: #fff;
    letter-spacing: 0.3px;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}


.footer-nav ul li a:hover {
    color: #c00101;
}

.footer-info-name span {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-info-contacts span.ft-info-email a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: block;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.footer-info-contacts span.ft-info-email a:hover {
    color: #c00101;
}

.footer-info-contacts span.ft-info-phone {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1.2px;
    color: #fff;
    display: block;
}

.footer-info-contacts em.ai-font-phone {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 11px;
}

.footer-info-contacts em.ai-font-envelope {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 8px;
}

.footer-info-right,
.footer-info-left {
    text-align: center;
    display: block;
}

/*.footer-contact-left,
.footer-nav,
.footer-agents-right-main {
    width: calc(100% / 3);
}*/

.footer-contact-left {
    width: 26%;
}

.footer-nav {
    width: 32%;
}

.footer-agents-right-main {
    width: 42%;
}

.footer-bot-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 0;
}

.footer-logo {
    font-size: 0;
    margin-bottom: 25px;
}

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

.footer-info-img img {
    max-width: 100%;
}

.copyright {
    font-size: 14px;
    line-height: 1;
    color: #aaaaaa;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.copyright a:hover {
    color: #c00101;
}

/* .copyright span:hover{
    color: #c00101;
} */

.footer-icons span {
    margin: 0 2px;
    font-size: 22px;
    color: #757575;
}

/*SIDEBAR*/

aside.sidebar .qs-container {
    position: relative;
    display: block;
    padding: 15px 15px;
}

aside.sidebar .qs-wrapper {
    display: block;
}

aside.sidebar .qs-wrapper h2.qs-title {
    position: relative;
    top: 0;
    padding-bottom: 20px;
}

aside.sidebar .qs-submit {
    right: 18px;
}

aside.sidebar .qs-city {
    width: 100%;
}

aside.sidebar .qs-wrapper form.hp-quick-search {
    display: block;
}

aside.sidebar .qs-adv-btn {
    margin: 13px auto;
    display: block;
    text-align: center;
}



aside.sidebar h2.git-title {
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin: 0 !important;
    padding-top: 20px;
    padding-bottom: 20px;
}

aside.sidebar .git-wrapper {
    padding: 50px 0;
    min-height: 100%;
}

aside.sidebar .git-form {
    display: block;
    max-width: 360px;
}

aside.sidebar .git-container div.wpcf7-response-output {
    max-width: 360px;
    bottom: -30px;
}

aside.sidebar .git-col-1,
aside.sidebar .git-col-2,
aside.sidebar .git-row-bot,
aside.sidebar .git-submit {
    width: 100%;
}

aside.sidebar div.wpcf7 .ajax-loader {
    margin: 0 auto;
    display: block;

}

aside.sidebar div.wpcf7-response-output {
    text-align: center;
}


aside.sidebar .testi-content-wrapper h2.testi-title {
    font-size: 21px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

aside.sidebar .testi-name span {
    text-align: center;
    display: block;
}

aside.sidebar .testi-item p {
    text-align: center;
}

aside.sidebar .testi-content-wrapper {
    padding-left: 0;
}


aside.sidebar .testi-content-wrapper ul.slick-dots {
    margin: 30px auto;
    text-align: center;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
p#breadcrumbs a {
    color: #000;
}

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

.ip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: url(images/slide-overlay-top.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    pointer-events: none;
}

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

.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: 74.08%;
}

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

/* Adjust width of sidebar */
.sidebar {
    width: 23.83%;
    margin-top: 80px;
}

/* 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: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 6px;
    color: #000;
    text-transform: uppercase
}

#content .entry {
    font-size: 14px;
    line-height: 30px;
    color: #000;
}

#content a:hover {
    color: #c00101;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 6px;
    color: #000;
    text-transform: uppercase
}

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

/*CONTACT US*/
.page-id-58 #content .contact-padd {
    padding-top: 30px;
    padding-bottom: 15px;
}

.page-id-58 #content .contact-spliter {
    width: calc(100% / 2);
    float: left;
}

button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {
    background: transparent;
    width: 93%;
    height: 44px;
    padding: 0 60px 0 15px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    font-style: italic;
    border-right: none;
    border-radius: unset;
    border: none;
}

.qs-city {
    border: 1px solid rgba(255, 255, 255, .46);
}

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

aside.sidebar button.btn.dropdown-toggle.bs-placeholder.btn-default,
aside.sidebar button.btn.dropdown-toggle.btn-default {
    width: 80%;
}

/* Additonal Css Post launch 8/6/19 */
#ihf-main-container input[type="radio"],
#ihf-main-container input[type="checkbox"] {
    -webkit-appearance: radio;
    appearance: radio;
}

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

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

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

.ihf-grid-result-address {
    display: block;
}

aside.sidebar .bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
}

select#cityzip {
    height: 44px !important;
}

/* contact us page */
.page-id-58 .ai-contact-wrap span {
    font-size: 22px;
}

.page-id-511 #custom_html-2 {
    display: none;
}

.aios_agent h1.entry-title {
    display: none;
}