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

/*

TABLE OF CONTENTS

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


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


/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: -10px;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 20px;
    position: absolute;
    min-width: 180px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
#nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
#nav .sub-menu li {
    position: relative;
}


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

/* Global */

body{
	font-family: 'Montserrat', Helvetica, Georgia, Sans-serif;
	font-size: 14px;
	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:hover, a:focus {
    color: #ee2b24;
}

.full-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.outer-container {
    max-width: 1557px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.inner-container {
    max-width: 1170px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    z-index: 11;
}

#main-wrapper {
    overflow: hidden;
}

.section-title {
    width: max-content;
    text-transform: uppercase;
    padding-left: 25px;
    position: relative;
    padding-top: 5px;
}

.section-title .small {
    display: block;
    font-size: 20px;
    color: #878787;
    letter-spacing: 0.6em;
    margin-bottom: 25px;
    line-height: 1;
}

.section-title h2 {
    font-size: 60px !important;
    font-family: 'Merriweather';
    letter-spacing: 0.075em;
    margin-top: -10px !important;
    line-height: 1;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: calc(100% - 5px);
    background: #4593c8;
}


.hp-btn {
    width: 100%;
    height: 81px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #bebebe;
    border-left: 4px solid #ee2b24;
    border-right: 4px solid #ee2b24;
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.hp-btn:hover {
    color: #fff;
    background: #ee2b24;
    border-color: #ee2b24;
    /* font-weight: 600; */
}

/* Mobile Logo */
.mobile-logo {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    display: none;
}

.mobile-logo a {
    display: block;
    max-width: 227px;
    margin: 0 auto;
}

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

/* Header */
#main-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
}

.burger-menu {
    width: 108px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url(images/burger-bg.jpg) no-repeat center center/ cover;
    position: relative;
    color: #fff;
    flex-direction: column;
    cursor: pointer;
    min-width: 108px;
}

.header-left {
    display: flex;
    align-items: center;
}

.burger-menu:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(129,130,133,0.4);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.burger-icon {
    position: relative;
    width: 40px;
    z-index: 10;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

.burger-icon span:nth-child(2) {
    margin: 6px 0;
    width: calc(100% - 11px);
}

.burger-icon span:last-child {
    width: calc(100% - 19px);
}

.burger-menu h3 {
    position: relative;
    z-index: 10;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
}

.burger-menu:hover:before {
    background: rgba(129,130,133,0.2);
}

.main-logo {
    margin-left: 25px;
    max-width: 203px;
    width: 61%;
}

.main-logo a {
    font-size: 0;
    position: relative;
    display: block;
}

.main-logo img {
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header-middle {
    margin: 0 20px;
}

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

#nav > li {
    margin-left: 20px;
}

#nav > li:first-child {
    margin-left: 0;
}

#nav > li > a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.075em;
    white-space: nowrap;
    -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;
}

	#nav > li:hover > a {
		color: #d2322d !important;
	}

#nav .sub-menu li {
    display: block;
    text-align: center;
    margin-top: 1px;
}

#nav .sub-menu li a {
    background: #fff;
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.075em;
    padding: 15px 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

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

.g-translate select {
    width: 118px;
    height: 24px;
    font-size: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    border: none;
    background: url(images/bg-translate.png) no-repeat center center/contain;
    outline: 0;
    cursor: pointer;
}

.g-translate select option {
    font-size: 14px;
}

.main-logo a img:last-child {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

#main-header.active .main-logo img {
    opacity: 0;
}

#main-header.active .main-logo img:last-child {
    opacity: 1;
}

#main-header.active {
    background: #fff;
}

#main-header.active #nav > li > a {
    color: #000;
}

#main-header.active #nav .sub-menu {
    padding-top: 44px;
}

#main-header.active .g-translate select {
    background: url(images/bg-translate2.png) no-repeat center center/contain;
}

/* Expanded Menu */
.expanded-menu {
    position: fixed;
    z-index: 1200;
    display: none;
    height: 100%;
    width: 100%;
}

.expanded-menu.active {
    display: block;
}

.expanded-menu-inner {
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    color: #fff;
    overflow-y: auto;
}

.expanded-menu .close-btn {
    cursor: pointer;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 108px;
    height: 103px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url(images/burger-bg.jpg) no-repeat center center/ cover;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.expanded-menu .close-btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(129,130,133,0.4);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.expanded-menu .close-btn:hover:before {
    background: rgba(129,130,133,0.2);
}

.expanded-menu .close-btn i {
    position: relative;
    z-index: 10;
    font-size: 30px;
}

.expanded-menu .close-btn h3 {
    position: relative;
    z-index: 10;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
}

.emi-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.emi-left {
    width: 71.3125%;
    background: url(images/expanded-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -100%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 0;
    padding: 70px 20px;
}

#expanded-nav > li {
    margin-bottom: 40px;
}

#expanded-nav > li > a {
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Merriweather';
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.emi-right {
    width: 28.6875%;
    background: url(images/expanded-bg2.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    right: -100%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 0;
    padding: 70px;
}

.emi-left:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(129,130,133,0.75);
}

.expanded-navigation {
    position: relative;
    z-index: 10;
}

#expanded-nav {
    column-count: 2;
}

.emi-left.active {
    top: 0;
    opacity: 1;
}

.emi-right.active {
    opacity: 1;
    right: 0;
}

.emi-right:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,45,71,0.75);
}

.expanded-logo {
    position: relative;
    z-index: 10;
    max-width: 219px;
    margin: 0 auto 55px;
}

.expanded-logo a {
    display: block;
    font-size: 0;
    width: 100%;
    position: relative;
}

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

.expanded-contact {
    margin-bottom: 50px;
    max-width: 315px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 10;
}

.ec-contact {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
}

.ec-contact i {
    font-size: 17px;
    margin-right: 14px;
}

.ec-contact .ai-envelope-f {
    font-size: 12px;
}

.ec-contact:last-child {
    align-items: flex-start;
}

.ec-contact .ai-font-location-c {
    margin-top: 5px;
    margin-right: 10px;
}

.expanded-smi {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expanded-smi a {
    width: 46px;
    height: 46px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    margin-left: 18px;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.expanded-smi a:hover {
    background: #ee2b24;
    border-color: #ee2b24;
}

.ec-contact a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


.expanded-smi a:first-child {
    margin-left: 0;
}


/* Slideshow */
#main-slideshow {
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
}

#main-slideshow .cycloneslider-slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/slide-overlay.png) no-repeat top center/ cover;
    z-index: 5;
}

#main-slideshow .cycloneslider-slide canvas {
    min-height: 800px;
}

.slideshow-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slideshow-logo img {
    max-width: 575px;
    width: 43%;
}

.slideshow-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    padding: 0 133px;
}

.slideshow-content h3 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    font-family: 'Merriweather';
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    max-width: 1200px;
}

.slideshow-smi {
    position: absolute;
    left: 0;
    top: 0;
    width: 108px;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slideshow-smi a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ee2b24;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
    margin: 18px 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.slideshow-smi a:hover {
    background: #818285;
}

/* Featured Properties */
#main-fp {
    padding: 80px 0 105px;
}

#main-fp .full-container {
    padding: 0 37px;
}

.fp-title {
    margin-bottom: 70px;
}

.fp-slider-wrap {
    position: relative;
    width: 100%;
}

.fp-slider {
    width: 100%;
}

.fp-item-wrap {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.fp-img {
    font-size: 0;
}

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

.fp-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fp-item a:hover .fp-img img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.fp-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fp-logo img {
    position: relative;
    max-width: 311px;
    height: auto;
    width: 40%;
}

.fp-item a:hover .fp-logo {
    opacity: 1;
}

.fp-desc {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.fpd-right {
    max-width: 211px;
    height: 200px;
    width: 30%;
    min-width: 180px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.fpd-right .view-details {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(238,43,36,0.8);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fpd-left {
    padding: 40px 10px 40px 40px;
    width: 85%;
}

.fpd-left .address {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fpd-left .price {
    font-size: 36px;
    font-family: 'Merriweather';
    color: #fff;
    letter-spacing: 0.05em;
    display: block;
    margin-top: -5px;
}

.fp-img:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(images/fp-overlay.png) no-repeat bottom center/ cover;
    z-index: 2;
}

.fp-item a:hover .fpd-right {
    opacity: 1;
}

.fp-slider .slick-list {
    overflow: visible;
}

.fp-item {
    position: relative;
}

.fp-item:first-child {
    /* max-width: 835px; */
    width: 56%;
    padding-right: 23px;
    margin-bottom: 48px;
}

.fp-item:first-child:before {
    content: '';
    position: absolute;
    left: -37px;
    bottom: -52px;
    width: 81.43%;
    height: 101%;
    background: url(images/fp-accent.jpg) no-repeat center center/ cover;
    z-index: 0;
}

.fp-item:first-child:after {
    content: '';
    position: absolute;
    left: -37px;
    bottom: -52px;
    width: 81.43%;
    height: 101%;
    background: rgba(69,147,200,0.2);
    z-index: 1;
}

.fp-item:nth-child(2) {
    /* max-width: 646px; */
    width: 44%;
    padding-left: 23px;
    margin-top: -183px;
}

.fp-item:nth-child(3) {
    /* max-width: 646px; */
    width: 44%;
    padding-right: 22px;
    margin-top: 50px;
}

.fp-item:nth-child(4) {
    /* max-width: 837px; */
    width: 56%;
    padding-left: 22px;
}

.fp-item:nth-child(4):before {
    content: '';
    position: absolute;
    right: -38px;
    top: -44px;
    width: 82.07%;
    height: 69.92%;
    background: url(images/fp-accent2.jpg) no-repeat center center/ cover;
    z-index: 0;
}

.fp-item:nth-child(4):after {
    content: '';
    position: absolute;
    right: -38px;
    top: -44px;
    width: 82.07%;
    height: 69.92%;
    background: rgba(69,147,200,0.2);
    z-index: 0;
}

.fp-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56%;
    padding-left: 22px;
    position: absolute;
    z-index: 20;
    right: 0;
    bottom: 10px;
    /* max-width: 837px; */
}

.fp-buttons button {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    outline: 0;
    border: none;
    text-transform: uppercase;
    color: #929292;
    letter-spacing: 0.3em;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fp-buttons button i {
    font-size: 22px;
    color: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fp-buttons button.prev-slick i {
    margin-right: 15px;
}

.fp-buttons button.next-slick i {
    margin-left: 15px;
}

.fp-buttons .hp-btn {
    max-width: 346px;
    margin: 0 30px;
}

.fp-buttons button:hover {
    color: #ee2b24;
}

.fp-buttons button:hover i {
    color: #ee2b24;
}

/* Quick Search */
#main-qs {
    width: 100%;
}

#main-qs .inner-container {
    max-width: 1331px;
    padding: 0 38px;
}

.qs-wrap {
    position: relative;
}

.qs-accent {
    position: absolute;
    left: -38px;
    bottom: -37px;
    height: 181px;
    max-width: 468px;
    width: 38%;
    background: url(images/qs-accent.jpg) no-repeat center center/ cover;
}

.qs-accent:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(69,147,200,0.2);
}

.qs-box {
    padding: 60px 55px 80px;
    background: url(images/qs-bg.jpg) no-repeat center center/ cover;
    position: relative;
    z-index: 10;
}

.qs-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(129,130,133,0.85);
}

.qs-flex {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qs-title {
    margin-right: 55px;
}

.qs-title .section-title .small {
    color: #fff;
}

.qs-title .section-title h2 {
    color: #fff;
}

.qs-title .section-title:before {
    background: #fff;
}

.qs-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 781px;    
}

.qs-form label {
    display: none;
}

.qs-form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent url(images/arrow.png) no-repeat right 30px center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 20px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
}

.qs-form select option {
    color: #000;
}

.qsf-left {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.qsf-right {
    width: 50%;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-left: 41px;
}

#ihf-main-container .nav-tabs {
  padding: 0 !important;
  margin: 0 !important;
}

ul.chosen-results {
  margin: 0 !important;
  padding: 0 !important;
}

.city {
    width: 100%;
    margin-bottom: 30px;
}

.beds {
    width: 50%;
    padding-right: 15px;
}

.baths {
    width: 50%;
    padding-left: 15px;
}

.qs-prices {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
}

.qs-prices > span {
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.05em;
}

.qs-prices .qs-pricerange {
    width: 100%;
    height: 1px;
    margin-top: 19px;
    border: none !important;
    background: #ee2b24;
}

.qs-prices .ui-slider-range.ui-corner-all.ui-widget-header {
    background: #fff;
}

.qs-submit {
    width: 50%;
    padding-right: 7.5px;
}

.qs-advanced {
    width: 50%;
    padding-left: 7.5px;
}

.qs-prices .ui-slider-handle {
    width: 10px !important;
    height: 10px !important;
    background: #fff !important;
    border: none !important;
    border-radius: 50px;
    top: 50% !important;
    margin-top: -5px;
    outline: 0;
}

.qs-submit input {
    width: 100%;
    height: 61px;
    background: transparent;
    border: 1px solid #ffffff;
    border-left: 4px solid #ee2b24;
    border-right: 4px solid #ee2b24;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.2em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.qs-submit input:hover {
    background: #ee2b24;
    border-color: #ee2b24;
}

.qs-advanced a {
    width: 100%;
    height: 61px;
    background: transparent;
    border: 1px solid #ffffff;
    border-left: 4px solid #ee2b24;
    border-right: 4px solid #ee2b24;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.2em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.qs-advanced a:hover {
    background: #ee2b24;
    border-color: #ee2b24;
}

/* Map */
#main-map {
    position: relative;
    width: 100%;
}

.map-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.map-left {
    width: 61.625%;
    background: #e7e7e7;
}

.map-right {
    width: 38.375%;
    /*padding: 130px 30px;*/
    /*padding: 80px 20px;*/
    padding: 120px 20px;
    background: url(images/map-bg.jpg) no-repeat center center/ cover;
    position: relative;
}

.map-right:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(60,60,60,0.8);
}

.map-title .section-title {
    padding-left: 0;
    text-align: center;
    width: auto;
}

.map-title .section-title:before {
    display: none;
}

.map-title .section-title .small {
    font-size: 14.5px;
    font-family: 'Spartan';
    letter-spacing: 0.18em;
    color: #c9c9c9;
    margin-bottom: 18px;
}

.map-title .section-title h2 {
    font-size: 45px !important;
    font-family: 'Spartan';
    color: #ffffff;
    font-weight: 700 !important;
    letter-spacing: 0;
    margin-top: 0 !important;
}

.map-title {
    margin-bottom: 70px;
}

.mr-flex {
    max-width: 455px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    justify-content: space-between;
    margin: 0 auto;
}

.mr-left {
    width: max-content;
}

.mr-right {
    width: max-content;
    margin-left: 30px;
}

.mr-list-wrap {
    margin-bottom: 35px;
}

.mr-list-wrap h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Spartan';
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.map-properties {
    width: 100%;
}

.map-properties li {
    /*margin-bottom: 5px;*/
    margin-bottom: 7px;
    position: relative;
}

.map-properties li a {
    /*font-size: 12px;*/
    font-size: 13px;
    font-family: 'Spartan';
    position: relative;
    color: #bebebe;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: flex;
    align-items: flex-start;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.map-properties li a:hover, .map-properties li.active a {
    color: #ee2b25;
}

.map-properties li a:before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    background: #bebebe;
    border-radius: 50px;
    margin-top: 2px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-sub {
    margin: 10px 0;
    padding-left: 2px;
}

.map-sub li {
    padding-left: 20px;
}

.map-sub li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background: #bebebe;
}

.map-sub li:after {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 1px;
    height: 16px;
    background: #bebebe;
}

.map-properties li a:hover:before, .map-properties li.active a:before {
    background: #ee2b25;
}

.map-container {
    width: 986px;
}

#map-transparent {
    width: 986px;
    height: 1084px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

#trueMap {
    display: block;
    width: 100%;
    max-width: 100%;
}

.map-hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.map-hovers > div {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 5;
    display: block;
    text-align: center;
}

.map-img {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-img img {
    width: 100%;
}

.map-hovers > div.active .map-img {
    opacity: 1;
}

.map-pin .pin-icon {
    width: 20px;
    height: 21px;
    background: url(images/map-pin.png) no-repeat center center/ contain;
    display: block;
    position: relative;
    margin: 0 auto 5px;
}

.map-pin h3 {
    font-size: 12px;
    line-height: 14px;
    font-family: 'Spartan';
    color: #ffffff;
    font-weight: 700;
    text-shadow: -1px -1px 0 #363636, 0 -1px 0 #363636, 1px -1px 0 #363636, 1px 0 0 #363636, 1px 1px 0 #363636, 0 1px 0 #363636, -1px 1px 0 #363636, -1px 0 0 #363636;
}

.map-pin h3 span {
    display: block;
    font-size: 10px;
    position: relative;
    color: #fff;
}

.map-label > div h3 {
    font-size: 36px;
    font-family: 'Spartan';
    font-weight: 800;
    text-transform: uppercase;
    background-color: #b6b6b6;
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    line-height: 1.2;
}

.map-label > div {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 5;
    display: block;
    text-align: center;
}

.map-landmarks > div {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 5;
    display: block;
    text-align: center;
}

.map-landmarks > div span {
    font-size: 10px;
    display: block;
    margin-top: 5px;
    font-family: 'Spartan';
    font-weight: 700;
    color: #3f3f3f;
    line-height: 14px;
}

.map-pin span {
    font-size: 9px;
    font-family: 'Spartan';
    font-weight: 700;
    color: #3f3f3f;
    position: absolute;
    line-height: 12px;
}

.map-label > .palm-beach-county {
    top: 49px;
    left: 108px;
}

.map-label > .broward-county {
    top: 361px;
    left: 110px;
}

.map-label > .miami-dade-county {
    left: 62px;
    top: 762px;
}

.map-landmarks > .weston-landmark {
    left: 456px;
    top: 427px;
}

.map-landmarks > .lasolas-landmark {
    left: 823px;
    top: 401px;
}

.map-landmarks > .fortlauderdale-landmark {
    left: 812px;
    top: 463px;
}

.map-landmarks > .aventura-landmark {
    left: 621px;
    top: 625px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.map-landmarks > .aventura-landmark img {
    margin-right: 10px;
    margin-top: 8px;
}

.map-landmarks > .balharbour-landmark {
    left: 840px;
    top: 691px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.map-landmarks > .balharbour-landmark img {
    margin-top: 6px;
    margin-right: 10px;
}

.map-landmarks > .southbeach-landmark {
    left: 779px;
    top: 793px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.map-landmarks > .southbeach-landmark img {
    margin-right: 10px;
    margin-top: 4px;
}

.map-landmarks > .mia-landmark {
    top: 788px;
    left: 534px;
}

.map-landmarks > .museum-landmark {
    left: 799px;
    top: 860px;
    display: flex;
    align-items: center;
}

.map-landmarks > .museum-landmark img {
    margin-right: 10px;
}

.map-landmarks > .brickell-landmark {
    top: 907px;
    left: 687px;
}

.map-landmarks > .everglades-landmark {
    top: 890px;
    left: 208px;
}

.lasolas-landmark:before {
    content: '';
    position: absolute;
    left: -41px;
    top: 7px;
    width: 46px;
    height: 1px;
    background: #737373;
}

.fortlauderdale-landmark:before {
    content: '';
    position: absolute;
    left: -75px;
    top: 6px;
    width: 117px;
    height: 1px;
    background: #737373;
    transform: rotate(10deg);
    transform-origin: bottom right;
}

.balharbour-landmark:before {
    content: '';
    position: absolute;
    left: -53px;
    top: 10px;
    width: 39px;
    height: 1px;
    background: #737373;
}

.aventura-landmark:before {
    content: '';
    position: absolute;
    right: -54px;
    top: 9px;
    width: 49px;
    height: 1px;
    background: #737373;
}

.museum-landmark:before {
    content: '';
    position: absolute;
    left: -82px;
    top: 8px;
    width: 68px;
    height: 1px;
    background: #737373;
    transform: rotate(10deg);
    transform-origin: bottom right;
}

.brickell-landmark:before {
    content: '';
    position: absolute;
    left: 25px;
    top: -38px;
    width: 1px;
    height: 37px;
    background: #737373;
    transform: rotate(10deg);
    transform-origin: bottom right;
}


.aventura .map-pin {
    top: 619px;
    left: 731px;
}

.bal-harbour .map-pin {
    top: 692px;
    left: 716px;
}

.bal-harbour .map-pin span {
    left: 7px;
    top: 53px;
}

.bal-harbour .map-pin .pin-icon {
    left: unset;
    top: unset;
}

.coconut-grove .map-pin {
    top: 885px;
    left: 628px;
}

.coral-gables .map-pin {
    top: 948px;
    left: 595px;
}

.downtown-miami .map-pin {
    top: 842px;
    left: 578px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.downtown-miami .map-pin .pin-icon {
    margin-bottom: 0;
    margin-left: 5px;
    top: unset;
    left: unset;
}

.downtown-miami .map-pin span {
    top: 24px;
    left: 137px;
}

.downtown-miami .map-pin h3 {
    margin-top: 5px;
}

.miami-beach .map-pin {
    top: 770px;
    left: 780px;
    display: flex;
    align-items: center;
}

.miami-beach .map-pin .pin-icon {
    margin-bottom: 0;
    margin-right: 5px;
    top: unset;
    left: unset;
}

.miami-beach .map-pin span {
    top: 0;
    left: -49px;
}

.miami-beach .map-pin span:last-child {
    top: 45px;
    left: -37px;
}


.sunny-isles-beach .map-pin {
    left: 777px;
    top: 662px;
    display: flex;
    align-items: center;
}

.sunny-isles-beach .map-pin .pin-icon {
    margin-bottom: 0;
    margin-right: 2px;
}

.upper-eastside .map-pin {
    top: 680px;
    left: 530px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.upper-eastside .map-pin .pin-icon {
    left: -18px;
    top: -7px;
}

.golden-beach .map-pin {
    left: 782px;
    top: 618px;
    display: flex;
    align-items: center;
}

.golden-beach .map-pin .pin-icon {
    margin-right: 5px;
}

.hallandale-beach .map-pin {
    top: 582px;
    left: 665px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.hallandale-beach .map-pin .pin-icon {
    margin-left: 5px;
}

.hollywood .map-pin {
    top: 519px;
    left: 704px;
}

.fort-lauderdale .map-pin {
    top: 384px;
    left: 713px;
}

.deerfield-beach .map-pin {
    top: 163px;
    left: 745px;
}

.boca-raton .map-pin {
    top: 71px;
    left: 769px;
}


/* About */
#main-about {
    padding: 150px 0 0;
}

.about-title {
    margin-bottom: 65px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.about-flex {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 10;
}

.about-left {
    position: relative;
    width: 38.5625%;
}

.about-agent {
    font-size: 0;
    position: relative;
    z-index: 10;
}

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

.about-right {
    width: 61.4375%;
    padding: 85px 50px 40px 80px;
}

.about-accent {
    position: absolute;
    width: 86.22%;
    top: 3.5%;
    background: url(images/about-accent.jpg) no-repeat center center / cover;
    z-index: 0;
    height: 10.74%;
}

.about-accent:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(69,147,200,0.2);
}

.about-content {
    margin-bottom: 25px;
    max-width: 740px;
}

.about-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
}

.about-content .highlight {
    font-size: 18px;
    line-height: 2;
    font-family: 'Merriweather';
    font-weight: 300;
    color: #444444;
}

.ac-content {
    column-count: 2;
}

.ac-content p {
    padding-right: 15px;
}

.about-btn {
    max-width: 245px;
}

.about-logo {
    max-width: 556px;
    width: 35.38%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    font-size: 0;
}

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

/* Explore */
#main-pyce {
    padding: 120px 0 100px;
}

.pyce-title {
    display: flex;
    justify-content: center;
    margin-bottom: 110px;
}

.pyce-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pyce-item-wrap {
    width: 33.33%;
    margin-left: 33px;
    position: relative;
}

.pyce-item-wrap:first-child {
    margin-left: 0;
}

.pyce-item {
    display: block;
    position: relative;
    max-width: 359px;
    margin: 0 auto;
}

.pyce-img {
    font-size: 0;
    position: relative;
}

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

.pyce-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.pyce-item:hover .pyce-img img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.pyce-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.pyce-logo img {
    max-width: 244px;
    height: auto;
    position: relative;
    width: 70%;
}

.pyce-item:hover .pyce-logo {
    opacity: 1;
}

.pyce-desc {
    position: absolute;
    left: 18px;
    padding: 110px 20px 20px;
    border-left: 3px solid #4593c8;
    top: calc(100% - 84px);
    z-index: 10;
}

.pyce-desc h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Merriweather';
    letter-spacing: 0.025em;
    color: #000;
}

.pyce-desc h3 span {
    display: block;
    font-family: 'Montserrat';
    font-size: 18px;
    letter-spacing: 0.5em;
    color: #444444;
    margin-bottom: 10px;
}

.pyce-item-wrap:first-child:before {
    content: '';
    width: 23px;
    height: 104px;
    background: #4593c8;
    position: absolute;
    right: 100%;
    top: 0;
}

.pyce-item-wrap:last-child:before {
    content: '';
    width: 23px;
    height: 104px;
    background: #4593c8;
    position: absolute;
    left: 100%;
    bottom: 0;
}

.pyce-item-wrap:nth-child(2) {
    margin-top: 139px;
}

.pyce-item-wrap:nth-child(2) .pyce-desc {
    top: unset;
    bottom: calc(100% - 81px);
    padding: 20px 20px 110px;
}

/* Testimonials */
#main-testimonials {
    padding: 200px 0 180px;
}

.testi-bg {
    position: absolute;
    left: 15px;
    top: 0;
    width: calc(100% - 30px);
    height: calc(100% - 110px);
    background: url(images/testi-bg.png) no-repeat top center/ cover;
    z-index: 0;
}

.testi-flex {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1210px;
    margin: 0 auto;
}

.testi-left {
    max-width: 726px;
    width: 60%;
    position: relative;
    z-index: 10;
}

.testi-title {
    padding-left: 50px;
    margin-bottom: 55px;
}

.testi-box {
    background: #fff;
    padding: 85px 30px 80px;
}

.tb-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.testi-slider {
    margin-bottom: 50px;
}

.testi-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}

.testi-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
}

.testi-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-buttons button {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    outline: 0;
    border: none;
    text-transform: uppercase;
    color: #929292;
    letter-spacing: 0.3em;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.testi-buttons button i {
    font-size: 22px;
    color: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.testi-buttons button.prev-slick i {
    margin-right: 15px;
}

.testi-buttons button.next-slick i {
    margin-left: 15px;
}

.testi-buttons .hp-btn {
    max-width: 246px;
    margin: 0 30px;
}

.testi-buttons button:hover {
    color: #ee2b24;
}

.testi-buttons button:hover i {
    color: #ee2b24;
}

.testi-right {
    position: absolute;
    right: 0;
    z-index: 5;
    max-width: 583px;
    width: 49%;
    top: -125px;
}

.testi-img {
    font-size: 0;
    position: relative;
}

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

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

/* Contact */
.contact-bg {
    width: 93.25%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(images/contact-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    z-index: 5;
}

#main-contact {
    position: relative;
    padding: 80px 0;
}

.safari .contact-bg {
    background-attachment: unset;
}

.contact-bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,45,71,0.8);
}

.contact-accent {
    max-width: 620px;
    width: 38.75%;
    height: 450px;
    position: absolute;
    left: 2.8125%;
    top: -63px;
    background: url(images/contact-accent.jpg) no-repeat center center/ cover;
    z-index: 0;
}

.contact-accent:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(69,147,200,0.2);
}

.cc-inner {
    max-width: 701px;
    margin: 0 auto;
    text-align: center;
}

#main-contact .inner-container {
    padding: 0 150px;
}

.contact-title {
    display: flex;
    justify-content: center;
    margin-bottom: 65px;
    text-align: center;
    align-items: center;
}

.contact-title .section-title {
    padding-left: 0;
    text-align: center;
}

.contact-title .section-title:before {
    display: none;
}

.contact-title .section-title .small {
    color: #fff;
}

.contact-title .section-title img {
    max-width: 311px;
    width: 100%;
}

.git-form {
    width: 100%;
}

.git-form input {
    width: 100%;
    height: 54px;
    background: transparent;
    border: 1px solid #bec0c2;
    padding: 10px 20px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.025em;
    outline: 0;
}

.git-form textarea {
    width: 100%;
    height: 54px;
    background: transparent;
    border: 1px solid #bec0c2;
    padding: 20px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.025em;
    outline: 0;
    max-height: 132px;
    min-height: 132px;
}

.git-form input[type="submit"] {
    height: 81px;
    border: 1px solid #bebebe;
    border-left: 4px solid #ee2b24;
    border-right: 4px solid #ee2b24;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.git-form input[type="submit"]:hover {
    background: #ee2b24;
    border-color: #ee2b24;
}

.git-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.git-flex > div {
    width: 50%;
    margin-left: 14px;
}

.git-flex > div:first-child {
    margin-left: 0;
}

.git-message {
    margin-bottom: 25px;
}

.git-send {
    max-width: 246px;
    margin: 0 auto;
}

.contact-box .wpcf7-response-output {
    color: #fff;
    padding: 20px;
    margin-top: 15px;
}

.git-send .ajax-loader {
    position: absolute;
}

.git-iam {
    text-align: left;
    padding: 0 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.git-iam label[for="git-iam"] {
    font-size: 14px;
    color: #ffffff;
    width: 30%;
    max-width: 150px;
}

.git-iam input[type="radio"] {
    display: none;
}

.git-iam .wpcf7-list-item-label {
    font-size: 14px;
    letter-spacing: 0.075em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.git-iam .wpcf7-form-control-wrap.iam {
    width: 100%;
}

.git-form .wpcf7-list-item {
    margin-left: 0;
    position: relative;
}

.git-iam .wpcf7-list-item-label:before {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #fff;
    border-radius: 50px;
    margin-right: 20px;
}

.git-iam .wpcf7-list-item-label:after {
    width: 5px;
    height: 5px;
    background: #ee2b24;
    position: absolute;
    left: 6px;
    border-radius: 50px;
    top: 5px;
    opacity: 0;
}

.git-iam input[type="radio"]:checked ~ .wpcf7-list-item-label:after {
    opacity: 1;
}

.git-iam #git-iam {
    width: 100%;
    display: flex;
    align-items: center;
    /*justify-content: space-between;
    max-width: 340px;
    */
    justify-content: space-around;
}

/* Connect */
#main-connect {
    padding-top: 85px;
    margin-bottom: -65px;
    position: relative;
    z-index: 15;
}

.connect-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.connect-left {
    width: 50%;
}

.connect-right {
    width: 50%;
    padding-top: 25px;
}

.connect-img {
    font-size: 0;
    position: relative;
}

.connect-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.36);
    z-index: 1;
}

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

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

.connect-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.connect-logo img {
    max-width: 383px;
    height: auto;
    position: relative;
    width: 67.31%;
}

.connect-title {
    display: flex;
    justify-content: center;
    margin-bottom: 65px;
}

.connect-box {
    position: relative;
    background: url(images/cb-bg.jpg) no-repeat center center;
}

.connect-box canvas {
    width: 100%;
    display: block;
}

.cb-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.connect-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(129,130,133,0.81);
}

.connect-contact {
    margin-bottom: 50px;
    max-width: 315px;
    margin: 0 auto 30px;
}

.cc-contact {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
}

.cc-contact i {
    font-size: 17px;
    margin-right: 14px;
}

.cc-contact .ai-envelope-f {
    font-size: 12px;
}

.cc-contact:last-child {
    align-items: flex-start;
}

.cc-contact .ai-font-location-c {
    margin-top: 5px;
    margin-right: 10px;
}

.connect-smi {
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-smi a {
    width: 46px;
    height: 46px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    margin: 0 9px;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.connect-smi a:hover {
    background: #ee2b24;
    border-color: #ee2b24;
}

.cc-contact a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* Footer */
#main-footer {
    padding: 130px 0 115px;
    position: relative;
    background: url(images/footer-bg.jpg) no-repeat center center/ cover;
    color: #fff;
}

#main-footer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,45,71,0.89);
    z-index: 0;
}

.footer-rbg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 49px;
    height: calc(100% + 75px);
    z-index: 5;
    background: url(images/footer-accent-right.jpg) no-repeat bottom center/ cover;
}

.footer-bbg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 49px);
    height: 57px;
    z-index: 5;
    background: url(images/footer-accent-bottom.jpg) no-repeat right center/ cover;
}

#main-footer .inner-container {
    padding: 0 60px;
    max-width: 1260px;
}

.footer-navigation {
    margin-bottom: 45px;
}

.footernav {
    max-width: 765px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footernav li {
    margin-bottom: 15px;
}

.footernav li a {
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-text {
    margin-bottom: 65px;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-mls {
    text-align: center;
    font-size: 33px;
}

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

.footer-text a:hover {
    color: #ee2b24;
}

.footer-copyright a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* Sidebar */
.sidebar-contact {
    background: url(images/contact-bg.jpg) no-repeat center center/ cover;
    position: relative;
    padding: 30px 15px;
}

.sidebar-contact:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,45,71,0.8);
}

.sidebar-contact .contact-title .section-title .small {
    font-size: 15px;
    letter-spacing: 0.2em;
}

.sidebar-contact .contact-title {
    margin-bottom: 20px;
}

.sidebar-contact .git-iam {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}

.sidebar-contact .git-iam label[for="git-iam"] {
    max-width: max-content;
    margin-bottom: 10px;
}

.sidebar-contact .git-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar-contact .git-flex > div {
    width: 100%;
    margin-left: 0;
    margin-top: 14px;
}

.sidebar-contact .git-flex > div:first-child {
    margin-top: 0;
}

.sidebar-contact .git-iam .wpcf7-list-item-label {
    max-height: 16px;
}

.sidebar-contact .git-iam #git-iam {
    justify-content: space-evenly;
}

.sidebar-contact .git-iam .wpcf7-list-item-label:before {
    margin-right: 10px;
}

/* POJO */
body #pojo-a11y-toolbar {
	bottom:0 !important;
	top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
	top:auto !important;
	bottom:0 !important;
}

html body.pojo-a11y-focusable a:focus {
    outline-style: initial !important;
    outline-width: 1px !important;
    outline-color: #FF0000 !important;
}

div.wpcf7-response-output {
    padding: 20px;
    text-align: center;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(0,0,0,.6);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: #f9f7f7;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #FFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */ 
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

/** Adjust width of content columns **/
#content-sidebar #content{ width: 77.08%; }
body.single-aios-communities #content-sidebar #content{
    width: 100%;
}
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{ width: 20.83%; }
body.page-id-150 .sidebar,
body.single-aios-communities .sidebar{
    display: none;
}
/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}
    .page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
        margin-left: -15px;
        margin-right: -15px;
    }

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }

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

}

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

}

.qs-form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent url(images/arrow.png) no-repeat right 30px center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 20px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
}

.hp-quick-search .bootstrap-select.btn-group {
/*select width, display and position are set here and set to !important
no height attribute. padding in .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle sets the height*/
    width: 100% !important;
}
.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
/*form appearance should be set here
no height attribute. set the height by setting the padding*/
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent url(images/arrow.png) no-repeat right 30px center;
    padding: 20px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
    border-radius: 0;
}
.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
/*font size, family, etc. should be set here*/
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
}

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

.page-id-150 p#breadcrumbs {
    margin: 1.5em 0;
} 

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

.page-template-template-renovatio #main-header,
.page-template-template-renovatio .expanded-menu,
.page-template-template-renovatio .ip-banner,
.page-template-template-renovatio p#breadcrumbs,
.page-template-template-renovatio #content .entry-title,
body.page-template-template-renovatio #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    display: none;
}

.page-template-template-renovatio #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

.page-template-template-renovatio #content-sidebar, #content-full {
    min-height: 500px;
    margin-top: 0;
}

.page-template-template-renovatio #content p {
    margin: 0;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

