/*
Theme Name: bocacoastal.com
Theme URI: http://aios3-staging.agentimage.com/b/bocacoastal.com/htdocs/
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.4.4
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;
}
  
#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:180px;
}
#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 {
    display: block;
}
#nav .sub-menu li {
    position: relative;
}


/* Sub Menu */
.aios-split-nav li {
	position:relative;
}

	.aios-split-nav > li{
		display: inline-block;
		vertical-align: middle;
		padding: 0 25px;
	}

	.aios-split-nav > li > a{
		display: block;
		position: relative;
	}

	.aios-split-nav > li > a::before {
	    content: "";
	    display: block;
	    position: absolute;
	    top: -25%;
	    left: 0;
	    width: 100%;
	    height: 150%;
	    border-top: 1px solid #f1ad28;
	    border-bottom: 1px solid #f1ad28;
	    pointer-events: none;
	}

	.aios-split-nav > li > a::after {
	    content: "";
	    display: block;
	    margin: 0 auto;
	    position: absolute;
	    top: -50%;
	    left: 0;
	    right: 0;
        width: 70%;
	    height: 200%;
	    border-top: 1px solid #f1ad28;
	    border-bottom: 1px solid #f1ad28;
	    pointer-events: none;
	}

	.aios-split-nav > li > a::before,
	.aios-split-nav > li > a::after{
		-moz-transform: scale(0,1);
		-webkit-transform: scale(0,1);
		-o-transform: scale(0,1);
		-ms-transform: scale(0,1);
		transform: scale(0,1);
		transform-origin: center;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		-o-transition: all 0.4s;
		-ms-transition: all 0.4s;
		transition: all 0.4s;
	}

	.aios-split-nav > li:hover > a::before,
	.aios-split-nav > li:hover > a::after{
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		-o-transform: scale(1,1);
		-ms-transform: scale(1,1);
		transform: scale(1,1);
	}

	.header nav.navigation .aios-split-nav:first-child > li {
	    padding: 0 44px;
	}

	.aios-split-nav li a{
		color: #fff;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 700;
		text-decoration: none;
	}
  
.aios-split-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:180px;
    padding-top: 20px;
}
.aios-split-nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
    background: rgba(8, 59, 102, .75);
}

.header.scrolled .aios-split-nav li .sub-menu a{
	color: #FFFFFF;
}
.aios-split-nav .sub-menu a:hover {
    background: #94cecd;
    color: #000000;
    text-decoration: none;
}
.aios-split-nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
.aios-split-nav li:hover > .sub-menu {
    display: block;
}
.aios-split-nav .sub-menu li {
    position: relative;
}



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

/* Global */

body{
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	background: #FFF;
	color: #4e4e4e;
	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; */
}

body *:focus{
	outline: 0;
}

.icon{
	font-style: normal;
}

.theme-widget-title{
	font-size: 18px;
	letter-spacing: 3px;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 25px;
}
	.theme-widget-title span{
		display: block;
		font-family: 'Vollkorn', serif;
		font-size: 60px;
	}
	.theme-widget-title.black{
		color: #3b3738;
	}
	.theme-widget-title.blue{
		color: #00324b;
	}
p{
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 1.5em;
}

/*HEADER*/

.mobile-logo-header {
    margin-top: 51px;
    background: #ececec;
    text-align: center;
    padding: 30px;
    display: none;
}

	.mobile-logo-header img{
		max-width: 100%;
	}
header.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
    padding: 45px 0;
    background: linear-gradient(rgba(95, 95, 95, .4), transparent);
    -webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}
/*	header.header::before,
	header.header::after {
	    content: "";
	    display: block;
	    width: 13%;
	    height: 1px;
	    background: #fff;
	    position: absolute;
	    top: 50%;
	}
	header.header::before{
		left: 0;
	}
	header.header::after{
		right: 0;
	}*/


	header.header .logo {
	    text-align: center;
	    position: relative;
	}
		header.header .logo img{
			/*max-width: 100%;*/
			margin-left: -13px;
			-webkit-transition: all 0.4s;
			-moz-transition: all 0.4s;
			-o-transition: all 0.4s;
			-ms-transition: all 0.4s;
			transition: all 0.4s;
		}
		header.header .logo .fixed-logo{
			/*display: none;*/
			margin: 0 auto 0;
			position: absolute;
		    top: -48px;
    		left: -13px;
			right: 0;
			margin: auto;
			opacity: 0;
		}
	.header nav.navigation #nav{
		display: none;
		font-size: 0;
	}
		.header nav.navigation #nav > li {
		    display: inline-block;
		    vertical-align: middle;
		}
			.header nav.navigation #nav a{
				color: #fff;
				text-transform: uppercase;
				font-size: 14px;
				font-weight: 700;
				-webkit-transition: all 0.4s;
				-moz-transition: all 0.4s;
				-o-transition: all 0.4s;
				-ms-transition: all 0.4s;
				transition: all 0.4s;
			}
	.header nav.navigation{
		font-size: 0;
		text-align: center;
	}
		.header nav.navigation .aios-split-nav, .header nav.navigation .logo {
		    display: inline-block;
		    vertical-align: middle;
		    text-align: center;
		}
			.header nav.navigation .aios-split-nav{
			    width: 41%;
			    margin-top: -57px;
			}
			.header nav.navigation .logo{
				width: 18%;
			}

	/*FIXED HEADER*/
	.header.scrolled{
		background: #fff;
		padding: 6px 0;
	    border-bottom: 2px solid #94cecd;
	}
		.header.scrolled .aios-split-nav li a{
			color: #5b5b5b;
		}
		.header.scrolled .logo {
			height: 72px;
		}
		.header.scrolled .logo img.orig-logo {
		    display: none;
		}
		.header.scrolled .logo .fixed-logo{
			opacity: 1;
		}
		.header.scrolled nav.navigation .aios-split-nav{
			margin-top: -96px;
		}



/*SLIDER */
.fixed-slider{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}
	.fixed-slider > div,
	.cycloneslider-template-video,
	.cycloneslider-template-video .cycloneslider-slides{
		height: 100% !important;
	}
	.cycloneslider-template-video video{
	    transform: translate(-50%,-50%) scale(1.1) !important;
	}
	.fixed-slider .cycloneslider-template-video video {
	    min-width: 110%;
	    min-height: 110%;
	    object-fit: cover;
	}
.slider-container{
	position: relative;
}

.scroll-btn {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 8;
}

.slider-container canvas{
	display: block;
	width: 100%;
}
	.slider-tagline{
		/*position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;*/
		z-index: 7;
		font-size: 0;
		position: relative;
		margin-top: -110px;
		/*text-align: center;*/
	}
		.slider-tagline::before{
			content: "";
			display: inline-block;
			vertical-align: middle;
			width: 0;
			height: 100%;
		}
		.slider-tagline .container{
			display: inline-block;
			vertical-align: middle;
		}
			.tagline-content h2{
				color: #fff;
				font-family: 'Vollkorn', serif;
				font-size: 35px;
				text-transform: uppercase;
				line-height: 1.2;
				letter-spacing: 3px;
				text-shadow: 1px 1px 2px #000;
			}
				.tagline-content h2 span{
					font-size: 21px;
					font-family: 'Lato', sans-serif;
					letter-spacing: 5px;
					display: block;
				}
			.tagline-btn{
				padding-top: 45px; 
			}
				.tagline-btn a {
				    display: inline-block;
				    vertical-align: middle;
				    background: #63c1b5;
				    color: #fff;
				    font-size: 15px;
				    text-transform: uppercase;
				    padding: 7px 10px;
				    text-decoration: none;
				    -webkit-transition: all 0.4s;
					-moz-transition: all 0.4s;
					-o-transition: all 0.4s;
					-ms-transition: all 0.4s;
					transition: all 0.4s;
				}
					.tagline-btn a:hover{
						background: #083b66 ;
					}

/*QUICKSEARCH*/
.qs-hp .col-md-10 {
	/*-moz-transform: translate(0px, -60%);
    -webkit-transform: translate(0px, -60%);
    -o-transform: translate(0px, -60%);
    -ms-transform: translate(0px, -60%);
    transform: translate(0px, -60%);*/
}
.quick-search-section{
	background: #ffffff;
	position: relative;
	/*z-index: 8;*/
	padding-bottom: 55px;
}
.qs-hp .quicksearch-wrapper {
    text-align: right;
}
	.quicksearch-box{
		padding: 20px;
		background: #d5d5d5;
	}
	.qs-fields-container::after{
		content: "";
		display: block;
		clear: both;
	}
	.quicksearch-wrapper label {
	    display: none;
	}
	.qs-input-field {
	    float: left;
	    padding: 1px;
	    position: relative;
	}
	.qs-input-field i.icon.ai-font-magnifying-glass-b {
	    font-size: 15px;
	    position: absolute;
	    top: 17px;
	    left: 17px;
	}
	.qs-input-field.qscity input#choose-city {
	    text-indent: 39px;
	}
	.qs-input-field.full {
	    width: 40%;
	    min-height: 40px;
	}
	.qs-input-field.half {
	    width: 15%;
	}
		.qs-input-field input,
		.qs-input-field select{
			-webkit-appearance: none;
			-moz-appearance: none;
			appearance: none;
			border: 1px solid #e3e3e3;
			outline: 0;
			border-radius: 0;
			background: #fff;
			width: 100%;
			height: 44px;
			text-indent: 8px;
		}
		.qs-input-field.half.submit input{
			background: #f1ad28;
			font-size: 14px;
			letter-spacing: 1px;
			font-weight: 700;
			color: #fff;
			text-indent: 0;
			border: 0;
		}
		.qs-input-field.half.submit input:hover{
		    background: rgba(241, 173, 40, .7);
		}
		.quicksearch-wrapper a.qs-advance-btn {
		    color: #33aa20;
		    font-size: 14px;
		    font-weight: 700;
		    letter-spacing: 1px;
		    margin-top: 10px;
		    display: inline-block;
		    text-decoration: none;
		}
		.quicksearch-wrapper a.qs-advance-btn:hover{
		    color: #2e826e;
		}

	.qs-input-field .bootstrap-select.btn-group .dropdown-menu.inner {
		max-height: 300px !important;
	}


/*WELCOME SECTION*/
.welcome-section{
	background-color: #fff;
	background-image: url(images/welcome-section-bg.png);
	background-repeat: no-repeat;
    background-position: 84px 80px;
    position: relative; 
	/*margin-top: -80px;*/
	/*z-index:9;*/
}
	.welcome-image{
		text-align: center;
	}
		.welcome-image img {
		    max-width: 100%;
		}
		.welcome-content {
		    padding-top: 20px;
		}


/*CTA*/
.cta-section-hp {
	overflow: hidden;
}
.cta-circle-container{
	position: relative;
	text-align: center;
}
	.cta-circle{
		width: 180px;
		height: 180px;
		border-radius: 50% 50%;
		background: linear-gradient(#64c2b7, #65a8b5);
		padding: 10px;
		position: absolute;
	    bottom: 4%;
	    left: 9%;
	    -webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		-o-transition: all 0.4s;
		-ms-transition: all 0.4s;
		transition: all 0.4s;
	}
	.cta-circle-container a:hover .cta-circle{
		background: linear-gradient(#f0ac27, #f0ac27);
		-webkit-box-shadow: 0px 0px 80px -8px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 80px -8px rgba(0,0,0,0.3);
		box-shadow: 0px 0px 80px -8px rgba(0,0,0,0.3);
	}
		.cta-circle .cta-circle-inner {
		    width: 100%;
		    height: 100%;
		    border-radius: 50% 50%;
		    -webkit-box-shadow: inset 0px 5px 4px rgba(0, 0, 0, .4);
		    -moz-box-shadow: inset 0px 5px 4px rgba(0, 0, 0, .4);
		    box-shadow: inset 0px 5px 4px rgba(0, 0, 0, .4);
		    font-size: 0;
		    text-align: center;
		}
		.cta-circle .cta-circle-inner::before{
			content: "";
			display: inline-block;
			vertical-align: middle;
			width: 0;
			height: 100%;
		}
			.cta-circle .cta-name{
				display: inline-block;
				vertical-align: middle;
				font-size: 14px;
				text-transform: uppercase;
				color: #fff;
			}
			.cta-circle .cta-name span{
				display: block;
				font-family: 'Vollkorn', serif;
				font-size: 20px;
			}
			.cta-spiral-bg { 
				/*max-width: 100%;
				margin-left: 20px;*/ 
			}

/*FEATURED CONDO*/
.featured-condos-section {
    background-color: #fff;
    background-image: url(images/feat-condo-bg.png);
    background-repeat: no-repeat;
    background-position: 100% -41%;
    padding: 110px 0 90px;
}
.feat-condo-thumb-details {
    padding: 0 20px;
}
	.feat-condo-box {
	    max-height: 380px;
	    overflow: auto;
	    margin: 0 -15px;
	}

		.feat-condo-box::-webkit-scrollbar-track
		{
			-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
			background-color: #F5F5F5;
		}

		.feat-condo-box::-webkit-scrollbar
		{
			width: 5px;
			background-color: #F5F5F5;
		}

		.feat-condo-box::-webkit-scrollbar-thumb
		{
			background-color: #6a6a6a;
			border: 2px solid #555555;
		}

		.feat-condo-item{
			/* padding: 15px 0; */
			padding: 18px 0;
		}
		.feat-condo-item:hover{
			/* background: #eeeeee; */
		}
		.feat-condo-item.slick-slide.slick-current.slick-active{
			/* background: #eeeeee; */
			background: #c5c5c5;
		}
			.feat-condo-item .row{
				margin: 0;
			}
			.feat-condo-thumb-image{
				position: relative;
			}
				.feat-condo-thumb-image canvas{
					display: block;
					width: 100%;
					background-repeat: no-repeat;
					background-size: cover;
					background-position: top center;
				}
			.feat-condo-price {
			    font-size: 18px;
			    color: #000000;
			    font-weight: 700;
			    padding-bottom: 20px;
			}
			.feat-condo-address {
			    font-size: 14px;
			    color: #6d6d6d;
			    font-weight: 300;
			}

.feat-condo-large-image {
    margin-right: -140px;
}
	.feat-condo-large-image-item{
		position: relative;
	    margin: 5px;
	}
		.feat-condo-large-image-item canvas{
			display: block;
			width: 100%;
			background-repeat: no-repeat;
			background-size: cover;
			background-position: top center;
			border: 15px solid #fff;
			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.43);
		}

/*TRANSPARENT SECTION*/
.transparent-section{
	position: relative;
	display: none;
}
	.transparent-section::before {
	    content: "";
	    position: absolute;
	    top: 0;
	    left: 0;
	    height: 50px;
	    width: 100%;
	    background: linear-gradient(#ffffff, transparent);
	}
	.transparent-section canvas{
		display: block;
		width: 100%;
	}

/*FEATURED AREAS*/
.featured-area-section {
    position: relative;
	background: #fff;
	background-size: 100%;
	background-position: top center;
	background: linear-gradient(transparent 50%, #fff 50%);
}
.featured-area-section::after{
	content: "";
	position: absolute;
	bottom: 49.9%;
	width: 100%;
	height: 450px;
	background-image: url(images/transparent-section.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
	
}
/*.featured-area-pullup {
    position: absolute;
    top: -480px;
    left: 0;
    width: 100%;
}*/
	.featured-area-section::before {
	    content: "";
	    position: absolute;
	    top: 0;
	    left: 0;
	    height: 50px;
	    width: 100%;
	    background: linear-gradient(#ffffff, transparent);
	}
	/*.featured-area-section::after {
	    content: "";
	    position: absolute;
	    top: 468px;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 5;
	    background: #fff;
	}*/
.featured-area-section .container{
	position: relative;
	z-index: 9;
}
	
	.featured-area-text-content {
	    padding-top: 68%;
	}

		.featured-area-text-content a.see-more-areas {
		    font-size: 16px;
	        font-weight: 600;
		    font-family: 'Vollkorn', serif;
		    text-transform: uppercase;
		    color: #535353;
		    text-decoration: none;
		    display: inline-block;
		    position: relative;
		    letter-spacing: 2px;
	        margin-top: 20px;
		}
		.featured-area-text-content a.see-more-areas:hover {
			color: #f1ad28;
		}

			.featured-area-text-content a.see-more-areas::after {
			    content: "";
			    display: inline-block;
			    vertical-align: middle;
			    width: 37px;
			    height: 1px;
			    background: #bdbdbd;
			    margin-bottom: 7px;
			    margin-left: 10px;
			}
.feat-area-image-row {
    padding: 110px 0 60px;
}
	.feat-areas-box {
	    padding: 10px;
	    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	    margin: 15px auto;
	    background: #fff;
	}
	.feat-areas-box a{
		text-decoration: none;
	}
		.feat-area-image{
			position: relative;
			overflow: hidden;
		}
		.fai-figure::before, .fai-figure::after {
		    position: absolute;
		    top: 0;
		    bottom: 0;
		    left: 0;
		    right: 0;
		    content: '';
		    background-color: #f0ac27;
		    opacity: 0.5;
		    -webkit-transition: all 0.45s ease;
		    transition: all 0.45s ease;
	        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.32);
		}
		.fai-shape1.fai-figure::before,
		.fai-shape1.fai-figure::after {
			z-index: 2;
		}
		.fai-shape2.fai-figure::before,
		.fai-shape2.fai-figure::after {
			z-index: 3;
		}

		.fai-shape1.fai-figure::before {
		    -webkit-transform: skew(30deg) translateX(130%);
		    transform: skew(30deg) translateX(130%);
		}
		.fai-shape1.fai-figure::after {
		    -webkit-transform: skew(-30deg) translateX(130%);
		    transform: skew(-30deg) translateX(130%);
		}
		.fai-shape2.fai-figure::before {
		    -webkit-transform: skew(30deg) translateX(150%);
		    transform: skew(30deg) translateX(150%);
		}
		.fai-shape2.fai-figure::after {
		    -webkit-transform: skew(-30deg) translateX(150%);
		    transform: skew(-30deg) translateX(150%);
		}
		.feat-areas-box a:hover .fai-shape1.fai-figure::before{
			-webkit-transform: skew(30deg) translateX(50%);
		    transform: skew(30deg) translateX(50%);
	        -webkit-transition-delay: 0.05s;
    		transition-delay: 0.05s;
		}
		.feat-areas-box a:hover .fai-shape1.fai-figure::after{
			-webkit-transform: skew(-30deg) translateX(50%);
		    transform: skew(-30deg) translateX(50%);
		    -webkit-transition-delay: 0.05s;
    		transition-delay: 0.05s;
		}
		.feat-areas-box a:hover .fai-shape2.fai-figure::before{
			-webkit-transform: skew(30deg) translateX(70%);
		    transform: skew(30deg) translateX(70%);
			-webkit-transition-delay: 0.15s;
    		transition-delay: 0.15s;
		}
		.feat-areas-box a:hover .fai-shape2.fai-figure::after{
			-webkit-transform: skew(-30deg) translateX(70%);
		    transform: skew(-30deg) translateX(70%);
		    -webkit-transition-delay: 0.15s;
    		transition-delay: 0.15s;
		}
			.feat-area-image canvas{
				display: block;
				width: 100%;
				background-repeat: no-repeat;
				background-size: cover;
				background-position: top center;
			}
		.feat-area-name{
			font-size: 24px;
			font-family: 'Vollkorn', serif;
			color: #000000;
			text-align: center;
		    padding-top: 10px;
	    	text-transform: uppercase;
		}
		.feat-area-image-row .col-sm-6:nth-child(even) {
		    -moz-transform: translate(0px, -30px);
		    -webkit-transform: translate(0px, -30px);
		    -o-transform: translate(0px, -30px);
		    -ms-transform: translate(0px, -30px);
		    transform: translate(0px, -30px);
		}

/*FOOTER*/
footer.footer {
    background: url(images/footer-bg.jpg) #fff no-repeat;
    background-position: top center;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover;
}
footer.footer::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(96, 96, 95, .8));
}
footer.footer a{
	color: #fff;
}
footer.footer a:hover {
	color: #f0ac27;
}

.footer-title {
    text-align: center;
    background: linear-gradient(#ffffff 35%, transparent);
}

.footer-form-wrapper {
    margin: 50px auto;
    max-width: 750px;
}

footer.footer .footer-upper {
    padding: 0px 0 30px;
}
footer.footer .footer-upper, footer.footer .footer-lower {
    position: relative;
    z-index: 9;
}

.footer-form{
	margin: 0 -5px;
}
	.footer-form::after{
		content: "";
		display: block;
		clear: both;
	}
	.footer-form .col-sm-6, .footer-form .col-sm-12 {
	    padding: 5px;
	}
		.footer-form label {
		    display: none;
		}
		.footer-form .input-holder input {
		    -webkit-appearance: none;
		    -moz-appearance: none;
		    appearance: none;
		    border: 0;
		    outline: 0;
		    border-radius: 0;
		    background: #fff;
		    width: 100%;
		    height: 57px;
		    text-indent: 18px;
		    font-size: 15px;
		    font-weight: 300;
		    color: #6d6d6d;
		}
		.footer-form .textarea-holder textarea{
			width: 100%;
		    height: 146px;
		    -webkit-appearance: none;
		    -moz-appearance: none;
		    appearance: none;
		    border: 0;
		    outline: 0;
		    border-radius: 0;
		    background: #fff;
		    padding: 14px 18px 0;
		    resize: none;
		    font-size: 15px;
		    font-weight: 300;
		    color: #6d6d6d;
		    overflow: hidden;
		}
		.submit-area input.wpcf7-submit {
		    display: block;
		    -webkit-appearance: none;
		    -moz-appearance: none;
		    appearance: none;
		    border: 0;
		    outline: 0;
		    border-radius: 0;
		    background: #f0ac27;
		    height: 58px;
		    width: 100%;
		    max-width: 138px;
		    margin: 0 auto;
		    color: #fff;
		    font-weight: 700;
		    letter-spacing: 2px;
		    font-size: 15px;
		}
		.submit-area input.wpcf7-submit:hover {
		    background: #f5c15b;
		}


.ftc-col {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 40px;
}
	.footer-contacts {
	    font-size: 18px;
	}
	.footer-contacts .icon.ai-font-phone-o {
	    font-size: 33px;
	    margin-bottom: 21px;
	}
	.footer-contacts .icon.ai-font-envelope-a {
	    font-size: 33px;
	    margin-bottom: 21px;
	}
	ul.social-media li {
	    display: inline-block;
	    vertical-align: middle;
	    padding: 0 10px;
	}
		ul.social-media li a {
		    display: block;
		    width: 45px;
		    height: 45px;
		    line-height: 45px;
		    text-align: center;
		    border: 1px solid #fff;
		    color: #fff;
		    border-radius: 50% 50%;
		    text-decoration: none;
		}
		ul.social-media li a:hover{
			border: 1px solid #4e4e4e;
		    background: #4e4e4e;
    		color: #fff;
		}

.footer-lower {
    border-top: 1px solid rgba(255, 255, 255, .4);
    padding: 30px 0;
}

.affiliate-logo-col{
	display: inline-block;
	vertical-align: middle;
	padding: 15px;
}
	.footernav li {
	    display: inline-block;
	    vertical-align: middle;
	    padding: 0 13px;
	}
		.footernav li a{
			text-transform: uppercase;
		}


.sprite {
    background-image: url(images/footer-logo-spritesheet.png);
    background-repeat: no-repeat;
    display: block;
}

.sprite-beach-mls {
    width: 150px;
    height: 61px;
    background-position: -15px -15px;
}

.sprite-gflr_logo_gel {
    width: 149px;
    height: 41px;
    background-position: -15px -106px;
}

.sprite-rapb-logo-trans {
    width: 150px;
    height: 68px;
    background-position: -195px -15px;
}

.sprite-realtors {
    width: 142px;
    height: 54px;
    background-position: -194px -113px;
}

.footer-affiliate-logo {
    padding-bottom: 20px;
}

.icon.ai-font-footer-logo {
    font-size: 20px;
    padding-top: 15px;
}


/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
	position: relative;
	overflow: hidden;
}
.ip-banner::after {
    content: "";
    background: #fff;
    display: block;
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(2deg) scale(1.2) translate(0px, 54px);
}
.ip-banner canvas{
	display: block;
	width: 100%;
	background-size: cover;
	background-position: top center;
	background-image: url(images/ip-bg.jpg);
	background-repeat: no-repeat;
	min-height: 200px;
}

/* Adjust minimum height of page area */ 
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

/** Adjust width of content columns **/
#content-sidebar #content{ width: 72%; }
#content-full #content { width: 100%; }

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

.sidebar-logo {
    text-align: center;
    padding: 24px 0;
}
	.sidebar-logo img{
		max-width: 100%;
	}


.sidebar-contact {
	max-width: 100%;
	margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: #4e4e4e;
    padding: 0 0 30px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}
	.sidebar-contact a{
		color: #4e4e4e;
	}
.sb-social-media ul.social-media {
    margin: 10px auto;
}
.sb-social-media ul.social-media li a {
    border: 1px solid #4e4e4e;
    color: #4e4e4e;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.sb-social-media ul.social-media li a:hover {
    background: #4e4e4e;
    color: #fff;
}

.sb-quicksearch .quicksearch-box {
    padding: 0;
    background: transparent;
}

.sb-quicksearch label {
    display: none;
}

.sb-quicksearch .qs-input-field.full,
.sb-quicksearch .qs-input-field.half {
    width: 100%;
}

.sb-quicksearch .qs-input-field.half.submit{
	width: 50%;
}

.sb-quicksearch .qs-input-field.full input#choose-city {
    text-indent: 37px;
}

.sb-quicksearch .qs-input-field.half a.qs-advance-btn {
    display: block;
    text-align: center;
    width: 100%;
    height: 44px;
    line-height: 44px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    background: #083b66;
    letter-spacing: 1px;
}
.sb-quicksearch .qs-input-field.half a.qs-advance-btn:hover {
    background: #195e98;
}


.cta-box-container a{
	text-decoration: none;
}
.cta-box {
    background: #65bcb6;
    text-align: center;
    margin: 14px auto;
    width: 100%;
    padding: 10px;
}
.cta-box-container a:hover .cta-box {
    background: #f1ad28;

}

.cta-box-inner {
    -webkit-box-shadow: inset 0px 5px 4px rgba(0, 0, 0, .4);
    -moz-box-shadow: inset 0px 5px 4px rgba(0, 0, 0, .4);
    box-shadow: inset 0px 5px 4px rgba(0, 0, 0, .4);
    height: 96px;
    font-size: 0;
}
.cta-box-inner::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
}
.cta-box-inner .cta-name{
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
}
.cta-box-inner .cta-name span{
	display: block;
	font-family: 'Vollkorn', serif;
	font-size: 20px;
}
/* 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 post/page main headings (h1) */
#content .entry-title { 
	font-family: 'Vollkorn', serif;
    font-weight: 400;
    line-height: 1;
}

/* Style category/archive/etc main headings (h1) */
#content .archive-title { 
	font-family: 'Vollkorn', serif;
    font-weight: 400;
    line-height: 1;
}



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

}

 #content .archive-subtitle a{
 	color: #4e4e4e;
 }

 .wp-image-71 {
 	display: inline-block;
    width: 30%;
 }

 .quote {
 	display: inline-block;
    width: 40%;
    margin-left: 70px;
    font-size: 15px;
    text-align: center;
 }

 .nav-bg {
 	background: #64c5b7;
    background: -moz-linear-gradient(top, #64c5b7 0%, #2989d8 99%, #6796b4 100%, #6796b4 100%, #6796b4 100%);
    background: -webkit-linear-gradient(top, #64c5b7 0%,#2989d8 99%,#6796b4 100%,#6796b4 100%,#6796b4 100%);
    background: linear-gradient(to bottom, #64c5b7 0%,#2989d8 99%,#6796b4 100%,#6796b4 100%,#6796b4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#64c5b7', endColorstr='#6796b4',GradientType=0 );
    height: 30px;
    margin-top: 55px;
 }

 .orig-logo {
 	margin-top: -49px;
 }

 .scrolled .nav-bg {
    background: transparent !important;
 }

 .scrolled .header nav.navigation .aios-split-nav {
    margin-top: -100px;
}
.scrolled header.header .logo .fixed-logo {
    top: -50px;
}
/**/

.fc-view-details {
    font-family: 'Libre Baskerville', serif;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    letter-spacing: .5px;
    /* display: inline-block; */
    display: none;
    background: rgba(6,56,99,0.5);
    padding: 0 11px 0 21px;
    position: absolute;
    bottom: 13.1%;
    left: 0;
    height: 30px;
    line-height: 31px;
}

.fc-view-details:hover {
	background: rgba(6,56,99,1);
	color: #fff;
	text-decoration: none;
}


/* SEND BUTTON HOVER */
.ai-contact-wrap input.wpcf7-submit:hover, .ai-default-cf7wrap input.wpcf7-submit:hover, .error-forms input.wpcf7-submit:hover {
	background: #f1ad28 !important;
	color: #ffffff !important;
}

/* IHF FIX */
#content ul#ihf-search-location-tabs {
	margin-left: 0;
}
#content ul.chosen-results {
	margin-left: 0;
	padding: 0;
}
#content ul#ihf-detail-extrainfotabs {
	margin-left: 0;
}
#content #ihf-main-container .mc-total-payment-subline {
	color: #666;
	font-size: 16px;
}

.footer .wpcf7-response-output {
    background: #fff;
    color: #000;
}


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

