/* ==========================================================================
   General
/* ========================================================================== */

a {
	text-decoration: none;
    transition: .4s;
}

a:hover {
    color: #B3E3F7;
	text-decoration: none;
}

h2 {
	font-size: 40px;
	font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

img, iframe {
    max-width: 100%;
}

/* ==========================================================================
   Layout
/* ========================================================================== */

body {
	margin: 0;
	padding: 0;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* ==========================================================================
   Header
/* ========================================================================== */

#fixed-header {
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	padding: 0 20px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	transition: .3s;
}

#fixed-header.scrolled,
#fixed-header.scrolled #nav-container #nav li ul,
#fixed-header.scrolled #nav-mobile {
	background: rgba(0,0,0,0.8);
}

#logo {
    height: 49px;
    max-width: 100%;
}

#header-phone {
    font-size: 20px;
    font-weight: 500;
    padding-right: 20px;
}

#social a {
    color: #fff;
    padding: 0 2px;
}

#social a:hover {
    color: #B3E3F7;
}

/* ==========================================================================
   Navigation
/* ========================================================================== */

#nav {
    display: inline-block;
    padding: 0;
	height: 60px;
    margin: 0 auto;
    list-style: none;
}

#nav li {
    display: inline-block;
    position: relative;
	padding-top: 18px;
	height: 60px;
}

#nav li a {
    position: relative;
    display: block;
    color: #fff;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

#nav > li:hover > a {
    color: #B3E3F7;
}

#nav > li > a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 2px;
    width: 0;
    background: #B3E3F7;
    transition: .2s;
}

#nav li:hover a::before {
    width: 100%;
    
}

#nav li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    list-style: none;
    padding: 0 0 10px 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

#nav ul li {
	height: auto;
    padding: 0;
}

#nav li ul li a {
    padding: 0 20px;
    color: #fff;
	line-height: normal;
    white-space: nowrap;
}

#nav li ul li:hover a {
    color: #B3E3F7;
}

#nav-mobile-icon {
	display: none;
	margin-left: 20px;
}

#nav-mobile-icon img {
	max-width: 40px;
}

#nav-mobile {
	display: none;
	position: absolute;
	padding: 20px 30px;
	left: 0;
	top: 100%;
	width: 100%;
    background: rgba(0,0,0,0.5);
	transition: .3s;
}

#nav-mobile ul li {
	display: block;
	height: auto;
	padding: 0;
}

#nav-mobile ul li a {
	line-height: 30px;
}

#nav-mobile ul li ul {
	display: block;
	position: relative;
	margin-top: 5px;
	padding: 0;
	background: transparent;
}

#nav-mobile ul li ul li a {
	line-height: 26px;
	font-size: 12px;
	padding: 0 30px;
}

/* ==========================================================================
   Home
/* ========================================================================== */

#slides-container {
    position: relative;
}

#slides {
    padding-top: 35%;
    width: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.slide-overlay {
    position: absolute;
    left: 0;
    bottom: 40px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px 30px 12px;
    font-size: 30px;
    text-transform: uppercase;
}

.lSAction > a {
	height: 100px;
	margin-top: -50px;
	color: #fff;
	font-size: 30px;
	background: #000;
	text-align: center;
	line-height: 100px;
}

.lSAction > a i {
	color: #fff;
}

.lSAction > .lSPrev {
	left: 0;
}

.lSAction > .lSNext {
	right: 0;
}

#featured {
	margin: 0;
	padding: 0;
	list-style: none;
}

#featured li,
.listing {
	position: relative;
	min-height: 500px;
	padding: 0 30px 30px;
	background-position: center;
	background-size: cover;
}

#featured li::before,
.listing::before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.0);
	content: '';
	z-index: 0;
	transition: .3s;
}

#featured li:hover::before,
.listing:hover::before {
	background: rgba(0,0,0,0.5);
}

.featured-link {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	white-space: nowrap;
	text-indent: 150%;
	overflow: hidden;
}

.featured-overlay {
	position: absolute;
	left: 30px;
	bottom: 30px;
	color: #fff;
	line-height: 28px;
	font-size: 24px;
	text-transform: uppercase;
	padding-left: 30px;
	border-left: 2px solid #B3E3F7;
	z-index: 2;
	transition: .3s;
}

#featured li:hover .featured-overlay,
.listing:hover .featured-overlay {
	bottom: 100px;
}

.featured-details {
	opacity: 0;
	position: absolute;
	left: 30px;
	bottom: 30px;
	transition: .3s;
}

#featured li:hover .featured-details,
.listing:hover .featured-details {
	opacity: 1;
}

.featured-details a {
	display: inline-block;
	background: #B3E3F7;
	color: #000;
	padding: 10px 20px;
	font-size: 16px;
	text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.static {
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	padding-top: 30%;
}

#clients {
	max-width: 600px;
	margin: auto;
}

.client {
	position: relative;
	margin: auto;
	font-size: 18px;
	text-align: center;
}

.client::before,
.client::after {
	position: absolute;
	content: '“';
	color: #000;
	opacity: .1;
	line-height: 20px;
	font-size: 140px;
    font-family: 'PT Sans', sans-serif;
}

.client::before {
	left: -40px;
	top: 40px;
}

.client::after {
	right: -20px;
	bottom: -10px;
	content: '”';
}

.client-name {
	font-weight: bold;
    font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
}

.client-more {
	text-transform: uppercase;
	color: #999;
}

#intro-left {
	height: 100%;
	background: #000;
	padding: 50px;
	text-align: right;
	font-size: 50px;
    font-family: 'Raleway', sans-serif;
	line-height: 40px;
}

#intro-photo {
	padding-top: 100%;
	background: url(../img/ee-square.jpg) center/cover;
}

#intro-social {
	margin: 20px 0;
}

#intro-social a {
	color: #fff;
	margin: 0 8px;
	font-size: 36px;
}

#intro-more {
	display: inline-block;
	background: #fff;
	color: #000;
	text-transform: uppercase;
	font-size: 16px;
	padding: 10px 15px;
	line-height: normal;
}

/* ==========================================================================
   Content
/* ========================================================================== */

#static-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    background: url("../img/static-bg.jpg") center/cover;
}

#static-header::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 0;
}

#static-header h1 {
    position: relative;
    margin:0 0 50px 50px;
    font-size: 60px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
}

#static-header h1 span {
    display: block;
    font-weight: bold;
}

#listing-gallery {
	height: 800px;
}

#listing-gallery li {
	height: 100%;
	background-size: cover;
	background-position: center;
}

.lSSlideOuter .lSPager.lSGallery li {
	border-radius: 0 !important;
}

#listing-top {
	background: #000;
	color: #fff;
}

.listing-info {
	text-transform: uppercase;
	font-size: 20px;
	height: 100%;
	margin-left: -20px;
	line-height: 28px;
	padding-left: 20px;
	border-left: 2px solid #B3E3F7;
}

.listing-price {
	margin-top: 5px;
	font-size: 36px;
}

.listing-price span {
	font-size: 14px;
	font-weight: 500;
	display: block;
	color: #B3E3F7;
}

.listing-detail {
	text-align: center;
	font-size: 50px;
	line-height: 45px;
}

.listing-detail i {
	color: #B3E3F7;
	font-size: 40px;
	margin-bottom: 20px;
	display: block;
}

.listing-detail span {
	display: block;
	line-height: normal;
	text-transform: uppercase;
	font-size: 11px;
}

.listing-description {
	font-size: 18px;
	line-height: 32px;
}

.listing-btn {
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	text-align: center;
	border: 2px solid #B3E3F7;
	color: #000;
	font-weight: 500;
    font-family: 'Raleway', sans-serif;
	padding: 20px;
	transition: .3s;
}

.listing-btn:hover {
	background: #343a40; 
	color: #fff;
	border: 2px solid #343a40;
}

.features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.features li {
	float: left;
	width: 50%;
}

.features strong {
	font-weight: 600;
}

.listing-form {
    
}

.listing-form input,
.listing-form textarea {
    display: block;
    margin-bottom: 10px;
    border: 0;
    width: 100%;
    color: #fff;
    padding: 10px;
    background-color: transparent;
    border-bottom: 2px solid rgba(255,255,255,0.4);
}

.listing-form input::placeholder,
.listing-form textarea::placeholder  {
    text-transform: uppercase;
}

.listing-form input[type=submit] {
    border: 2px solid #B3E3F7;
    color: #fff;
    background: tranparent;
    cursor: pointer;
    padding: 10px;
}

#map-wrapper {
    padding-top: 30%;
    position: relative;
}

#map-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


#business {
    padding: 0 0 0 18px;
}

#business li strong {
    font-size: 18px;
}

/* ==========================================================================
   Footer
/* ========================================================================== */

#footer-wrapper {
	background: #000 url(../img/footer-bg.png) center/cover;
}

#designations {
	text-align: center;
}

#designations img {
	margin: 0 30px 20px;
	max-height: 120px;
}

#base {
	color: #ccc;
	border-top: 1px solid rgba(255,255,255,0.2);
	font-size: 12px;
}

.design {
	text-align: right;
}

.design a {
	color: #ccc;
}


.error {
    color: #900;
}

.success {
    color: #090;
}

/* ==========================================================================
   Responsive
/* ========================================================================== */

@media (max-width: 1400px) {
    #nav-container #nav li { padding-top: 22px; }
    #nav-container #nav li a { font-size: 12px; }
}

@media (max-width: 1300px) {
    #nav-container #nav li a { font-size: 11px; padding: 0 6px; }
	#intro-social a { font-size: 30px; }
	#intro-photo { height: 100%; }
}

@media (max-width: 1200px) {
	#nav-container { display: none; }
	#nav-mobile-icon { display: inline-block; }
	#featured li, .listing { min-height: 400px; }
	.featured-overlay { font-size: 20px; }
	#intro-left { padding: 30px; }
}

@media (max-width: 992px) {
	#slides { padding-top: 45%; }
	.slide-overlay{ font-size: 20px; }
	#designations img { max-height: 60px; }
	.static { padding-top: 50%; }
	#listing-gallery { height: 600px; }
}

@media (max-width: 767px) {
	#header-phone { display: none; }
	#slides { padding-top: 60%; }
	#static-header h1 { font-size: 40px; }
	#listing-gallery { height: 500px; }
	.listing-head { font-size: 30px; }
	.features li { width: 100%; float: none; }
	#map-wrapper { padding-top: 60%; }
}

@media (max-width: 567px) {
	#slides { padding-top: 80%; }
	#logo { height: auto; }
	.copy, .design { text-align: center; }
	#designations img { max-height: 50px; }
	#static-header h1 { font-size: 34px; }
}
