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

/*

TABLE OF CONTENTS

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


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


/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 10px 0 0;
    position: absolute;
    width: max-content;
    min-width: 180px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    margin-top: -15px;
    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: 'Poppins', 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: #004aad;
}

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

.outer-container {
    max-width: 1494px;
    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: 10;
}

#main-wrapper {
    overflow: hidden;
}

.section-title {
    width: auto;
    text-transform: uppercase;
}

.section-title .small {
    font-size: 22px;
    display: block;
    color: #4a4a4a;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title h2 {
    position: relative;
    font-family: 'Cinzel';
    font-size: 70px;
    color: #0a0a0a;
    padding-left: 20px;
    text-transform: capitalize;
}

.section-title h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 100%;
    background: #c0c0c0;
    max-height: 63px;
    transform: translateY(-50%);
}

.section-title-secondary {
    text-align: center;
    text-transform: uppercase;
}

.section-title-secondary .small {
    display: block;
    font-size: 18px;
    color: #4a4a4a;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.section-title-secondary h2 {
    font-family: 'Cinzel';
    font-size: 60px;
}

.hp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 54px;
    background: #000000;
    border: 1px solid #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    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;
}

.hp-btn:hover {
    color: #000;
    background: transparent;
}

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

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

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

/* Header */
#main-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    padding: 40px 0 0;
    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;
}

#main-header.active {
    background: #121212;
    padding: 8px 0;
}

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

.main-logo {
    font-size: 0;
    max-width: 261px;
    width: 18%;
}

.main-logo a {
    display: block;
}

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

.main-navigation {
    margin-left: 30px;
}

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

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

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

#nav > li > a {
    font-size: 16px;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    width: max-content;
    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 > li:hover > a {
    opacity: 0.7;
}

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

#nav .sub-menu li a {
    background: #121212;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    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 {
    background: #fff;
    color: #000;
}

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

.header-buttons {
    margin-left: 30px;
    max-width: 295px;
    width: 21%;
    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;
}

.hb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 3px;
    height: 44px;
    text-align: center;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    border: 1px solid #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;
}

.hb-btn:first-child {
    margin-top: 0;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
}

.hb-btn:hover {
    background: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    color: #000;
}

.hb-btn:focus {
    color: #fff;
}

.hb-btn:first-child:hover {
    background: #fff;
    color: #000;
}

.burger-menu {
    margin-left: 30px;
    cursor: pointer;
    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 {
    margin-bottom: 15px;
    width: 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.burger-icon span {
    width: 100%;
    height: 4px;
    background: #ffffff;
    display: block;
    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 span:nth-child(2) {
    margin: 3px 0;
}

.burger-icon span:first-child {
    width: 29px;
}

.burger-icon span:last-child {
    width: 40px;
}

.burger-menu h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: right;
}

.burger-menu:hover {
    opacity: 0.7;
}

.burger-menu:hover .burger-icon span:first-child {
    width: 40px;
}

#main-header.active .hb-btn {
    height: 36px;
    font-size: 12px;
}

#main-header.active .header-buttons {
    max-width: 240px;
}

/* Expanded Menu */
.expanded-menu {
    position: fixed;
    z-index: 1200;
    right: -100%;
    height: 100%;
    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;
    display: flex;
    align-items: stretch;
}

.expanded-menu.active {
    right: 0;
}

.expanded-menu-whitespace {
    width: 100%;
}

.expanded-menu-inner {
    max-width: 863px;
    min-width: 863px;
    padding: 50px 85px 60px;
    height: 100%;
    background: url(images/expanded-bg.jpg) no-repeat center center/ cover;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    color: #fff;
    overflow-y: auto;
}

.expanded-menu-inner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0,0,0,0.9);
    min-height: 800px;
}

.expanded-menu .close-btn {
    cursor: pointer;
    font-size: 34px;
    color: #fff;
    position: absolute;
    right: 60px;
    top: 60px;
    z-index: 10;
    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;
}

.expanded-menu .close-btn:hover {
    opacity: 0.7;
}

#main-header {
    position: fixed;
    z-index: 1011;
    width: 100%;
    padding: 40px 0 0;
    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;
}

#main-header.active {
    background: #121212;
    padding: 8px 0;
}

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

.main-logo {
    font-size: 0;
    max-width: 261px;
    width: 18%;
}

.main-logo a {
    display: block;
}

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

.main-navigation {
    margin-left: 30px;
}

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

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

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

#nav > li > a {
    font-size: 16px;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    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 > li:hover > a {
    opacity: 0.7;
}

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

#nav .sub-menu li a {
    background: #121212;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    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 {
    background: #fff;
    color: #000;
}

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

.header-buttons {
    margin-left: 30px;
    max-width: 295px;
    width: 21%;
    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;
}

.hb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 3px;
    height: 44px;
    text-align: center;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    border: 1px solid #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;
}

.hb-btn:first-child {
    margin-top: 0;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
}

.hb-btn:hover {
    background: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    color: #000;
}

.hb-btn:first-child:hover {
    background: #fff;
    color: #000;
}

.burger-menu {
    margin-left: 30px;
    cursor: pointer;
    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 {
    margin-bottom: 15px;
    width: 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.burger-icon span {
    width: 100%;
    height: 4px;
    background: #ffffff;
    display: block;
    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 span:nth-child(2) {
    margin: 3px 0;
}

.burger-icon span:first-child {
    width: 29px;
}

.burger-icon span:last-child {
    width: 40px;
}

.burger-menu h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: right;
}

.burger-menu:hover {
    opacity: 0.7;
}

.burger-menu:hover .burger-icon span:first-child {
    width: 40px;
}

#main-header.active .hb-btn {
    height: 36px;
    font-size: 12px;
}

#main-header.active .header-buttons {
    max-width: 240px;
}

.expanded-logo {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}
.expanded-logo a {
    display: inline-block;
}

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

#expanded-nav {
    display: flex;
    flex-wrap: wrap;
}

#expanded-nav > li {
    width: 25%;
    margin-bottom: 65px;
}

#expanded-nav > li > a {
    text-transform: uppercase;
    font-size: 18px;
    color: #ffffff;
}

#expanded-nav .sub-menu {
    margin-top: 20px;
}

#expanded-nav .sub-menu li {
    margin-top: 10px;
}

#expanded-nav .sub-menu li a {
    font-size: 14px;
    text-transform: uppercase;
    color: #adadad;
}

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

#expanded-nav > li > a:hover {
    color: #adadad;
}

#expanded-nav 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-contact {
    position: relative;
    z-index: 10;
    padding-top: 40px;
    border-top: 1px solid #3e3e3e;
}

.ec-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 20px;
}

.ec-left {
    text-align: center;
}

.ec-contact {
    font-family: 'Montserrat';
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.ec-contact:first-child {
    font-weight: 600;
    font-size: 16px;
}

.ec-contact a {
    color: #fff;
    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;
}

.ec-contact a:hover {
    opacity: 0.7;
}

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

.ec-smi a {
    margin-left: 30px;
    font-size: 26px;
    color: #fff;
    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;
}

.ec-smi a:hover {
    opacity: 0.7;
}

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

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

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

.slideshow-container: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;
}

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

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

.slideshow-content h2 {
    font-size: 70px;
    font-family: 'Cinzel';
    color: #ffffff;
}

.slideshow-content span {
    font-size: 19px;
    color: #ffffff;
    font-family: 'Lora';
    letter-spacing: 0.15em;
    display: block;
}

.slideshow-content .hp-btn {
    max-width: 243px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    margin-top: 40px;
}

.slideshow-content .hp-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.slideshow-cta {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
    padding-bottom: 70px;
}

.sc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-item {
    width: 33.33%;
    margin-left: 30px;
}

.cta-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 77px;
    font-family: 'Lora';
    font-size: 22px;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.4);
    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;
}

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

.cta-item a:hover {
    color: #000;
    background: #fff;
}

/* Lifestyle */
#main-lifestyle {
    position: relative;
    padding: 2.5px 0;
}

.lifestyle-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -2.5px;
}

.lifestyle-title {
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lifestyle-item {
    width: 33.33%;
    padding: 2.5px;
    position: relative;
}

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

.lifestyle-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;
}

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

.lifestyle-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 10;
    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;
}

.lifestyle-item:hover .lifestyle-img:before {
    background: rgba(0,0,0,0.4);
}

.lifestyle-desc {
    position: absolute;
    z-index: 15;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lifestyle-desc h3 {
    font-size: 34px;
    font-family: 'Cinzel';
    color: #fff;
    text-transform: uppercase;
}

.lifestyle-logo {
    width: 33.33%;
    padding: 2.5px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lifestyle-logo img {
    max-width: 293px;
    width: 50%;
}

.lifestyle-title:after {
    content: '';
    position: absolute;
    width: 293px;
    height: 353px;
    right: -70px;
    bottom: -140px;
    background: url(images/lifestyle-logo.png) no-repeat center  center/ contain;
    z-index: 0;
}

.lifestyle-title .section-title {
    margin-top: -55px;
    position: relative;
    z-index: 1;
}

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

#main-about .outer-container {
    max-width: 1270px;
}

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

.about-left {
    max-width: 610px;
    width: 50%;
    margin-top: 65px;
    background: url(images/about-logo.png) no-repeat top 10px center;
    background-size: initial;
}

.about-title {
    margin-bottom: 50px;
}

.about-title .section-title h2 {
    text-transform: uppercase;
}

.about-content {
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 25px;
    font-family: 'Lora';
    font-size: 15px;
    line-height: 24px;
    color: #4a4a4a;
}

.about-contact {
    margin-bottom: 40px;
}

.ac-contact {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.05em;
}

.ac-contact .ai-envelope {
    font-size: 18px;
    color: #292929;
    margin-right: 20px;
}

.ac-contact .bc-icon {
    width: 31px;
    height: 25px;
    background: url(images/bc-icon.png) no-repeat center center/ contain;
    margin-right: 10px;
}

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

.about-right {
    max-width: 537px;
    width: 44%;
    margin-left: 30px;
}

.agent-photo {
    font-size: 0;
}

.agent-photo img {
    width: 100%;
}
/* Meet The Team */
#main-mtt {
    padding: 45px 0 125px;
}

.mtt-title {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.mtt-title .section-title h2 {
    text-transform: uppercase;
}

.orlando-team {
    position: relative;
    padding-bottom: 230px;
}

.ot-photo {
    font-size: 0;
}

.orlando-team:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 225px);
    background: #cfcfcf;
}

.ot-photo img {
    max-width: 1442px;
    width: 100%;
}

.ot-title {
    margin-bottom: 40px;
}

.ot-content {
    margin-bottom: 50px;
    max-width: 945px;
    margin: 0 auto 50px;
    text-align: center;
}

.ot-content p {
    font-size: 15px;
    font-family: 'Lora';
    line-height: 24px;
    margin-bottom: 25px;
    color: #252525;
}

.ot-btn {
    max-width: 203px;
    margin: 0 auto;
}

.miami-team {
    margin-top: -125px;
}

.mt-photo {
    max-width: 1035px;
    margin: 0 auto;
    width: 100%;
    font-size: 0;
}

.mt-photo img {
    width: 100%;
}

.mt-title {
    margin: -15px 0 50px;
}

.mt-content {
    max-width: 945px;
    margin: 0 auto 50px;
    text-align: center;
}

.mt-content p {
    font-size: 15px;
    font-family: 'Lora';
    line-height: 24px;
    margin-bottom: 25px;
    color: #252525;
}

.mt-btn {
    max-width: 203px;
    margin: 0 auto;
}

/* Now Serving Atlanta */
#main-mtt {
    padding: 45px 0 125px;
}

.mtt-title {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.orlando-team {
    position: relative;
    padding-bottom: 230px;
}

.ot-photo {
    font-size: 0;
}

.ot-photo img {
    max-width: 1442px;
    width: 100%;
}

.ot-title {
    margin-bottom: 40px;
}

.ot-content {
    margin-bottom: 50px;
    max-width: 945px;
    margin: 0 auto 50px;
    text-align: center;
}

.ot-content p {
    font-size: 15px;
    font-family: 'Lora';
    line-height: 24px;
    margin-bottom: 25px;
    color: #252525;
}

.ot-btn {
    max-width: 203px;
    margin: 0 auto;
}

.miami-team {
    margin-top: -125px;
}

.mt-photo {
    max-width: 1035px;
    margin: 0 auto;
    width: 100%;
    font-size: 0;
}

.mt-photo img {
    width: 100%;
}

.mt-title {
    margin: -15px 0 50px;
}

.mt-content {
    max-width: 945px;
    margin: 0 auto 50px;
    text-align: center;
}

.mt-content p {
    font-size: 15px;
    font-family: 'Lora';
    line-height: 24px;
    margin-bottom: 25px;
    color: #252525;
}

.mt-btn {
    max-width: 203px;
    margin: 0 auto;
}

#main-nsa {
    padding: 140px 0 160px;
    background: url(images/nsa-bg.jpg) no-repeat center center/ cover;
    position: relative;
    background-attachment: fixed;
}

.safari #main-nsa {
    background-attachment: unset;
}

.nsa-title {
    margin-bottom: 100px;
}

.nsa-content {
    text-align: center;
    margin-bottom: 120px;
    max-width: 905px;
    margin: 0 auto 110px;
}

.nsa-content p {
    font-size: 15px;
    color: #ffffff;
    line-height: 24px;
    font-family: 'Lora';
}

#main-nsa:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.nsa-btn {
    max-width: 193px;
    margin: 0 auto;
}

.nsa-btn .hp-btn {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.nsa-btn .hp-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

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

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

/* Consultation */
#main-consultation {
    position: relative;
    padding: 185px 0 110px;
    background: url(images/consultation-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

.safari #main-consultation {
    background-attachment: unset;
}

#main-consultation:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
}

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

#main-consultation .outer-container {
    max-width: 1385px;
}

.cf-left {
    position: absolute;
    width: 55%;
    left: 0;
    max-width: 789px;
    margin-left: -105px;
    z-index: 0;
    top: -155px;
}

.cf-photo {
    font-size: 0;
}

.cf-right {
    max-width: 798px;
    width: 60%;
    position: relative;
    z-index: 10;
}

.cf-photo img {
    width: auto;
}

.cf-photo img {
    width: 100%;
}

.consultation-title {
    margin-bottom: 25px;
}

.cf-video {
    position: relative;
    max-width: 798px;
}

.cf-video a {
    display: block;
    width: 100%;
}

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

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

.cf-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    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;
}

.cf-video a:hover .cf-img:before {
    background: rgba(0,0,0,0.5);
}

.cf-video .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

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

.fp-title {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.fp-slider {
    width: calc(100% + 5px);
    margin-left: -2.5px;
    margin-right: -2.5px;
}

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

.fp-slider .slick-slide {
    margin: 0 2.5px;
}

.fp-item {
    position: relative;
    display: block;
    width: 100%;
}

.fp-img {
    position: relative;
    font-size: 0;
    width: 100%;
}

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

.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-img:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: url(images/fp-overlay.png) no-repeat bottom center/ cover;
}

.fp-item:hover .fp-img:after {
    background: rgba(0,0,0,0);
}

.fp-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 5;
    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-desc {
    position: absolute;
    z-index: 15;
    bottom: 9.4%;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    border-left: 5px solid #c0c0c0;
    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:hover .fp-desc {
    border-left: 5px solid #010b8f;
}

.fp-desc .address1 {
    display: block;
    font-family: 'Lora';
    font-size: 29px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

.fp-desc .address2 {
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.fpd-hover {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin-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;
}

.other-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.other-details span {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border-left: 1px solid #fff;
    padding: 0 7px;
}

.other-details .beds {
    border-left: 0;
    padding-left: 0;
}

.fp-desc .price {
    display: block;
    font-family: 'Lora';
    font-size: 40px;
    color: #fff;
}

.fp-item:hover .fpd-hover {
    margin-top: 35px;
    opacity: 1;
    visibility: visible;
    max-height: 66px;
}

.fp-item:hover .fp-desc {
    padding-bottom: 0;
}

/* Map Search */
#main-ms {
    /*padding: 100px 0 115px;*/
    position: relative;
    /*background: url(images/map-bg.jpg) no-repeat center center/ cover;*/
    background-color: #000000;
    text-align: right;
}

/*#main-ms:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.82);
}*/

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

#main-ms .inner-container {
    max-width: 1112px;
}

.ms-left {
    max-width: 300px;
    width: 28%;
}

.ms-right {
    max-width: 743px;
    width: 69%;
    margin-left: 30px;
    position: relative;
}

.ms-title {
    margin-bottom: 60px;
}

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

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

/* MAP NEW */
.map_left_wrap {
    width: 20%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 19.375%;
    z-index: 3;
    text-align: left;
    padding-top: 100px;
}
.map_left_wrap {
    width: 71%;
    display: inline-block;
    vertical-align: top;
}
    .map_left_txt {

    }
        .map_left_txt ul {
            width: 100%;
            max-width: 231px;
            display: inline-block;
            vertical-align: top;
            margin-bottom: 30px;
        }
        .map_left_txt li {
            width: 100%;
            display: inline-block;
            vertical-align: top;
            margin-bottom: 4px;
        }
            .map_left_txt li:first-child {
                margin-bottom: 10px;
            }
        .map_left_txt li a {
            display: block;
            padding: 6px 26px;
            color: #767676;
            font-size: 16px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease-in-out;
        }
            .map_left_txt li a.map_link_white {
                color: #ffffff;
                font-size: 18px;
            }
            .map_left_txt li a.map_link_big {
                color: #ffffff;
                font-size: 30px;
                font-family: 'Cinzel';
                position: relative;
                padding: 5px 26px 3px;
            }
                .map_left_txt li a.map_link_big::before {
                    width: 64px;
                    height: 100%;
                    content: '';
                    position: absolute;
                    z-index: -1;
                    top: 0;
                    left: 0;
                    background-color: #767676;
                    transition: all 0.3s ease-in-out;
                }
                    .map_left_txt li a.map_link_big:hover::before,
                    .map_left_txt li.active a.map_link_big::before {
                        width: 100%;
                    }
                    .map_left_txt li a.map_link_big:hover {
                        background-color: transparent;
                    }
            .map_left_txt li a span {
                width: 100%;
                height: 100%;
                display: inline-block;
                vertical-align: top;
            }
            .map_left_txt li a:hover,
            .map_left_txt li.active a {
                color: #ffffff;
                background-color: #767676;
            }
            
#map_wrap {
    width: 1121px;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
}
    #map_wrap #map {
        width: 100%;
    }
    #transparent {
        width: 1121px;
        height: 934px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 4;
    }

/* MAP HOVERS */
#map .map_hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
    #map .map_hovers div {
        position: absolute;
        z-index: 1;
    }
    #map .map_hovers div.hovered {
        z-index: 2;
    }
        #map .map_hovers div img {
            opacity: 0;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }

        /* FLORIDA */
        #map_florida {
            top: 365px;
            left: 264px;
        }
        #map_jacksonville {
            top: 379px;
            left: 634px;
        }
        #map_miami {
            top: 650px;
            left: 660px;
        }
        #map_fort_lauderdale {
            top: 730px;
            left: 715px;
        }
        #map_orlando {
            top: 460px;
            left: 558px;
        }
        #map_winter_garden {
            top: 513px;
            left: 647px;
        }
        #map_winter_park {
            top: 516px;
            left: 658px;
        }
        #map_apopka {
            top: 490px;
            left: 656px;
        }
            #map_apopka.hovered {
                z-index: 2!important;
            }
        #map_clermont {
            top: 524px;
            left: 632px;
        }

        /* GEORGIA */
        #map_georgia {
            top: 36px;
            left: 413px;
        }
        #map_atlanta {
            top: 93px;
            left: 449px;
        }
        #map_fulton {
            top: 64px;
            left: 418px;
        }
        #map_gwinnett {
            top: 78px;
            left: 472px;
        }

#map_georgia.hovered ~ div,
#map_florida.hovered ~ div {
    z-index: 2;
}

/* MAP TEXTS */
.map_txt {
    position: absolute;
    width: auto;
    z-index: 3;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
}
    .map_txt em.icon_dot {
        width: 3px;
        height: 3px;
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
        background-color: #ffffff;
        border-radius: 50%;
        position: relative;
    }
    .map_txt span {
        display: inline-block;
        vertical-align: middle;
    }
    .map_txt.map_bigtxt {
        font-size: 30px;
        font-weight: 500;
        font-family: 'Cinzel';
        letter-spacing: 0.075em;
    }
    .map_txt.map_medtxt {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }
        .map_txt em.icon_pin {
            width: 11px;
            height: 15px;
            content: '';
            display: inline-block;
            vertical-align: middle;
            margin: 0 5px;
            background-image: url(images/map/icon-pin.png);
            background-size: auto;
            background-repeat: no-repeat;
            position: relative;
        }
    /* FLORIDA */
    .map_txt_florida {
        top: 290px;
        left: 376px;
        text-transform: uppercase;
    }
    .map_txt_jacksonville {
        top: 35px;
        left: 36px;
    }
    .map_txt_miami {
        top: 125px;
        left: 85px;
    }
    .map_txt_fort_lauderdale {
        top: 59px;
        left: 78px;
        min-width: 110px;
    }
    .map_txt_orlando {
        top: 92px;
        left: 58px;
    }
        .map_txt_orlando em.icon_pin {
            right: 5px;
        }
    .map_txt_winter_garden {
        top: 62px;
        left: 37px;
        min-width: 100px;
    }
        .map_txt_winter_garden em.icon_dot {
            top: -3px;
            left: 3px;
        }
    .map_txt_winter_park {
        top: 49px;
        left: 46px;
        min-width: 85px;
    }
        .map_txt_winter_park em.icon_dot {
            top: -5px;
            left: 5px;
        }
    .map_txt_apopka {
        top: 54px;
        left: 36px;
    }
        .map_txt_apopka em.icon_dot {
            top: 8px;
            left: 3px;
        }
    .map_txt_clermont {
        top: 48px;
        left: -1px;
    }
        .map_txt_clermont em.icon_dot {
            top: -7px;
            left: -9px;
        }

    /* GEORGIA */
    .map_txt_georgia {
        top: 249px;
        left: 102px;
    }
    .map_txt_atlanta {
        min-width: 155px;
        top: 32px;
        left: -73px;
        letter-spacing: 0 !important;
    }
    .map_txt_fulton {
        top: 89px;
        left: 8px;
        letter-spacing: 0 !important;
    }
        .map_txt_fulton em.icon_pin {
            top: -12px;
            right: 8px;
        }
    .map_txt_gwinnett {
        top: 50px;
        left: 32px;
        letter-spacing: 0 !important;
    }
        .map_txt_gwinnett em.icon_pin {
            top: -10px;
            left: 8px;
        }

/*.map-properties {
    width: 100%;
}

.map-properties li {
    margin-top: 30px;
    display: block;
    max-width: max-content;
}

.map-properties li a {
    padding: 10px 35px;
    display: block;
    position: relative;
    font-size: 20px;
    font-family: 'Playfair Display';
    color: #fff;
    letter-spacing: 0.05em;
}

.map-properties li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 77px;
    height: 100%;
    background: #767676;
    z-index: -1;
    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-properties li a:hover:before {
    width: 100%;
}

.map-container {
    width: 100%;
    max-width: 743px;
}

#map-transparent {
    width: 743px;
    height: 742px;
    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: 5;
}

.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-hovers > div.active .map-img {
    opacity: 1;
}
  
.map-pin {
    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;
}*/




/* Why Work WIth Us */
#main-wwwu {
    margin-top: 110px;
    padding: 115px 0 140px;
    background: url(images/wwwu-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    position: relative;
}

.safari #main-wwwu {
    background-attachment: unset;
}

#main-wwwu:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.wwwwu-title {
    display: flex;
    justify-content: center;
    margin-bottom: 115px;
}

.wwwu-flex {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.wwwu-item {
    border-left: 1px solid rgba(255,255,255,0.5);
    padding: 5px 30px 30px;
    text-align: center;
}

.wwwu-item:first-child {
    border-left: 0;
}

.wwwu-item h3 {
    font-size: 70px;
    font-family: 'Cinzel';
    color: #fff;
    margin-bottom: 10px;
}

.wwwu-item h3 i {
    font-style: normal;
}

.wwwu-item span {
    font-size: 22px;
    font-family: 'Lora';
    line-height: 29px;
    color: #ffffff;
    text-transform: uppercase;
}

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

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

/* As Featured In */
#main-afi {
    padding: 190px 0 60px;
    position: relative;
}

.afi-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 170px);
    z-index: 0;
    background: url(images/fi-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

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

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

.afi-rbg {
    position: absolute;
    right: 0;
    top: 0;
    width: 59.5625%;
    height: calc(100% - 300px);
    background: url(images/fi-rbg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    z-index: 1;
}

.safari .afi-rbg {
    background-attachment: unset;
}

.afi-rbg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.afi-flex-wrap {
    margin-top: -15px;
}

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

#main-afi .outer-container {
    max-width: 1536px;
}

.afi-flex:first-child {
    justify-content: flex-end;
}

.afi-item {
    max-width: 301px;
    width: 20%;
    height: 241px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
}

.afi-item:nth-child(even) {
    background: #292929;
}

.afi-item img {
    max-width: 85%;
    width: auto;
}

.afi-title {
    padding-left: 2%;
}

/* Latest News */
#main-news {
    padding: 105px 0 165px;
    position: relative;
    background: #0a0a0a;
}

.news-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 282px;
    background: url(images/news-bg.jpg) no-repeat center center/ cover;
    z-index: 1;
}

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

.news-title {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

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

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

.news-slider {
    width: 100%;
}

.news-slider .slick-slide {
    margin: 0 15px;
}

.news-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    max-width: 360px;
    margin: 0 auto;
    display: block !important;
}

.news-img {
    font-size: 0;
    display: block;
    position: relative;
}

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

.news-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: 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;
}

.news-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    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;
}

.news-img:hover:before {
    opacity: 1;
}

.news-desc {
    background: #fff;
    text-align: center;
    padding: 55px 40px 75px;
}

.news-desc h3 {
    font-size: 24px;
    color: #0a0a0a;
    font-family: 'Lora';
    margin-bottom: 25px;
}

.news-desc p {
    font-size: 15px;
    font-family: 'Lora';
    line-height: 24px;
    color: #4a4a4a;
}

/* My Vlog */
#main-vlog {
    padding: 145px 0 180px;
    position: relative;
}

.vlog-photo {
    width: 41.125%;
    position: absolute;
    right: 0;
    top: 68px;
    font-size: 0;
}

.vlog-photo img {
    width: 100%;
}

.vlog-left {
    position: relative;
    z-index: 10;
}

.vlog-slider-wrap {
    width: 67.4375%;
    margin-top: 145px;
    margin-left: -9px;
}

.vl-flex {
    width: 58%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.vlog-content {
    max-width: 515px;
    width: 65%;
    margin-left: 30px;
}

.vlog-content p {
    font-size: 15px;
    line-height: 24px;
    color: #4a4a4a;
    font-family: 'Lora';
    margin-bottom: 40px;
}

.vlog-buttons {
    display: flex;
    align-items: center;
}

.vlog-buttons .hp-btn {
    max-width: 203px;
    margin-left: 20px;
}

.vlog-buttons .hp-btn:first-child {
    margin-left: 0;
}

.vlog-buttons .hp-btn:last-child {
    background: #4d4d4d;
    border: 1px solid #4d4d4d;
}

.vlog-buttons .hp-btn:hover:last-child {
    background: transparent;
    border: 1px solid #000;
}

.vlog-slider {
    width: 100%;
}

.vlog-slider .slick-slide {
    margin: 0 9px;
}

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

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

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

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

.vlog-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(18,18,18,0.2);
    z-index: 2;
    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;
}

.vlog-item:hover .vlog-img:before {
    background: rgba(18,18,18,0.4);
}

.vlog-item .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 10;
}

/* Social */
#main-social {
    padding: 105px 0 0;
    background: #0a0a0a;
}

.social-top {
    margin-bottom: 60px;
}

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

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

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

.st-account {
    margin-left: 30px;
}

.st-account h3 {
    font-size: 32px;
    color: #ffffff;
    font-weight: 300;
}

.st-account span {
    display: block;
    font-size: 16px;
    color: #999999;
    font-weight: 300;
    margin-top: 10px;
}

.st-btn {
    /*max-width: 233px;*/
    max-width: 275px;
    width: 20%;
}

.st-btn .hp-btn {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.st-btn .hp-btn:hover {
    background: transparent;
    color: #fff;
}

.social-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}

.social-item {
    margin-left: 5px;
    position: relative;
    display: block;
    width: 25%;
}

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

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

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

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

.social-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    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;
}

.social-item:hover .social-img:before {
    opacity: 1;
}

/* Contact Us */
#main-contact {
    padding: 95px 0 70px;
    position: relative;
    background: url(images/contact-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

#main-contact .outer-container {
    padding: 0 30px;
    max-width: 1524px;
}

.safari #main-contact {
    background-attachment: unset;
}

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

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

.contact-outer {
    padding: 45px;
    background: url(images/contact-bg2.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
    position: relative;
}

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

.contact-box {
    background: rgba(255,255,255,0.9);
    padding: 125px 50px 80px;
}

.contact-inner {
    max-width: 810px;
    margin: 0 auto;
}

.contact-title {
    display: flex;
    justify-content: center;
    margin-bottom: 90px;
}

.cu-form {
    text-align: center;
    position: relative;
}

.git-form {
    width: 100%;
}

.git-form input {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid #c2c2c2;
    outline: 0;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    background: transparent;
}

.git-form textarea {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid #c2c2c2;
    outline: 0;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    background: transparent;
    min-height: 80px;
    max-height: 80px;
    resize: none;
}

.git-form input[type="submit"] {
    height: 54px;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
    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: transparent;
    color: #000;
}

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

.git-flex > div {
    margin-left: 20px;
    width: 33.33%;
}

.git-flex > .git-name {
    margin-left: 0;
}

.git-message {
    margin-top: 40px;
}

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

.cu-form .wpcf7-response-output {
    width: 100%;
    padding: 20px;
    position: absolute;
    left: 0;
    margin: 0;
}

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

#main-footer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.footer-top {
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 10;
}

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

.footer-contact {
    text-align: center;
}

.fc-contact {
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
    font-family: 'Montserrat';
}

.fc-contact a {
    color: #fff;
    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;
}

.fc-contact:first-child {
    font-weight: 600;
    font-size: 16px;
}

.footer-logo {
    max-width: 351px;
    margin: 0 30px;
}

.footer-logo a {
    display: block;
    font-size: 0;
}

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

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

.footer-smi a {
    color: #fff;
    font-size: 25px;
    margin-left: 30px;
    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-smi a:first-child {
    margin-left: 0;
}

.footer-bottom {
    padding-top: 50px;
    text-align: center;
}

.footer-bottom .inner-container {
    max-width: 1250px;
}

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

.footernav {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footernav li {
    margin-left: 30px;
}

.footernav li:first-child {
    margin-left: 0;
}

.fc-contact a:hover {
    opacity: 0.7;
}

.footer-smi a:hover {
    opacity: 0.7;
}

.footernav li a {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    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-copyright {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 12px;
    color: #b8b8b8;
}

.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;
}

.footer-copyright a:hover {
    color: #fff;
}

.footernav li a:hover {
    opacity: 0.7;
}

.cp-copyright {
    margin-bottom: 25px;
    font-size: 11px;
    color: #ffffff;
    line-height: 20px;
    letter-spacing: 0.05em;
}

.footer-mls {
    font-size: 26px;
    color: #fff;
}

/* Sidebar */
.sidebar-content {
    background: #000;
    padding: 60px 20px;
}

.sidebar-logo {
    font-size: 0;
    margin-bottom: 30px;
}

.sidebar-logo a {
    display: block;
}

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

.sidebar-contact {
    margin-bottom: 30px;
    text-align: center;
}

.sc-contact {
    font-size: 14px;
    display: block;
    margin-bottom: 0;
    font-family: 'Montserrat';
}

.sc-contact a {
    color: #fff;
    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;
}

.sc-contact:first-child {
    font-weight: 600;
    font-size: 16px;
}


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

.sidebar-smi a {
    color: #fff;
    font-size: 25px;
    margin-left: 15px;
    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-smi a:first-child {
    margin-left: 0;
}
/*******************************************************
 *
 * 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%; }
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{ width: 20.83%; }

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

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

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

}

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

}

div#wpcf7-f84-p17-o1 {
    max-width: 500px;
    display: block;
    margin: 0px auto;
}

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

.ihf-printable-template #content p#breadcrumbs {
    display: none;
}

#content .listings-printable-header {
    background: rgb(0 0 0 / 20%);
}

#content .listings-printable-header span {
    display: none !important;
}

#content .listings-printable-photo div {
    display: none;
}

#ihf-main-container #ihf-map-canvas {
    z-index: 1;
}
#ihf-main-container .nav-tabs {
    margin: 0;
}
#ihf-main-container ul.chosen-results {
    margin: 0;
    padding: 0;
    max-height: 150px;
}

.grecaptcha-badge{
    z-index: 999999 !important;
}

.page-id-30 #content .entry .btn-link {
    white-space: normal;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    max-width: 100%;
    position: absolute;
    top: 2px;
}

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

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

.post-page-georgia aside.sidebar,
.category-blog aside.sidebar {
    display: none !important;
}

.ihf-results-template-shortcode #inner-page-wrapper > .container {
    width: 100%;
}

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