/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* Global Styles */

body {
	font-family: 'Dosis', sans-serif;
	font-size: 16px;
}

p,
ul {
	margin-bottom: 30px;
}

.content-container a {
	color:#27856E;
}

.content-container a.btn {
	color: #fff;
}

.content-container {
	font-family: 'Lato', sans-serif;
}

h1 {
	font-weight: 700;
	font-size: 3em;
}

.btn,
.form-control,
input[type="submit"] {
	border-radius: 10px;
}

.btn-primary,
input[type="submit"] {
	background: #1E3A4C;
	border-color: #0F2C4C;
	color: #fff;
}

.btn-light {
	background: #EEEEEE;
	color: #333;
}

.btn-light:hover {
	background: #1E3A4C;
	color: #fff;
}

input[type="submit"] {
	border-style: solid;
	display: block;
	outline: none;
	padding: 1rem 0.75rem;
}

input[type="submit"]:hover {
	background: #fff;
	color: #1E3A4C;
}

.remodal-confirm {
	background: #1E3A4C;
}

.remodal-confirm:hover, .remodal-confirm:focus {
	background: #01509D;
}

.remodal-close {
	left: auto;
	right: 0;
}

.lang-modal a {
	background: #1E3A4C;
	border-radius: 10px;
	color: #fff;
	display: inline-block;
	margin-right: 4px;
	padding: 8px 10px;
}

.lang-modal a:hover {
	background: #01509D;
	cursor: pointer;
	text-decoration: none;
}

.btn-ghost {
	border: thin solid #424242;
	color: #424242;
}

.btn-ghost:hover {
	background-color: #424242;
	color: #fff;
}

.form-control:focus {
	border-color: #0F2C4C;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(15,44,77,.6);
}

.inner-pad {
	padding: 1em;
}

.height-100 {
	height: 70vh;
	min-height: 600px;
	position: relative;
}

.height-100 > .container {
	position: relative;
	z-index: 5;
}

.media {
	margin-bottom: 30px;
}

.media-object {
	height: 125px;
	width: 125px;
}

.img-placeholder { height: 190px; }

.grad {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.white-grad {
	background: rgba(255,255,255,0.85);
	background: -moz-linear-gradient(left, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.85)), color-stop(20%, rgba(255,255,255,0.85)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}

.card {
	box-shadow: 1px 1px 5px rgba(0,0,0,0.6);
	transform: translateY(-0);
	
	transition: box-shadow 0.1s linear, transform 0.1s linear;
	
	will-change: auto;
}

.card:hover {
	transform: translateY(5px);
	text-decoration: none;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.card-nav a:hover {
	text-decoration: none;
}

.card-content {
	background: #1E3A4C;
	color: #fff;
	font-family: 'Dosis', sans-serif;
	padding: 1em;
}

.blog-buttons {
	margin-bottom: 3rem;
}

.blog-posts .card-body {
	min-height: 70px;
}

.page-doing-business-here .card-content {
	background-color: #B4611E;
}

.page-site-selection .card-content {
	background-color: #518328;
}

.page-location .card-content {
	background-color: #27856E;
}
.page-resources .card-content {
	background-color: #711573;
}

.card-white .card-content {
	background: #fff;
	color: #424242;
}

.card-content .card-title {
	display: block;
	font-size: 1.4em;
	margin-bottom: 0.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
}

.card-actions:after {
	content: "";
	display: table;
	clear: both;
}

.card-content .card-actions a {
	border: thin solid #fff;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	float: right;
	height: 30px;
	line-height: 26px;
	text-align: center;
	width: 30px;
}

.card-white .card-content .card-actions a {
	border-color: #424242;
	color: #424242;
}

.card-content .card-actions a:hover {
	background: rgba(255,255,255,0.4);
}

.card-white .card-content .card-actions a:hover {
	background: rgba(66,66,66,0.4);
}

.card-horizontal {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.card-horizontal .card-image {
	background-position: center;
	background-size: cover;
	margin-right: 2rem;
	min-width: 300px;
	width: 300px;
}

.card-horizontal .card-content {
	padding: 1rem;
	flex: 1 1 auto;
}

.card-horizontal .card-content .card-title {
	color: #1E3A4C;
	font-weight: 600;
	overflow: visible;
	text-overflow: initial;
	white-space: normal;
}

@media (max-width: 768px) {
	.card-horizontal {
		flex-direction: column;
	}
	.card-horizontal .card-image {
		height: 150px;
		margin-bottom: 1rem;
	}
}

.hero {
	position: relative;
	margin-top: 0;
}

.hero img {
	height: auto;
	margin: 0 auto;
	padding-top: 170px;
	max-width: 1440px;
	vertical-align: top;
	width: 100%;
}

.title-wrapper {
	background rgba(255,255,255,0.8);
	bottom: 0;
	left: 0;
	margin-bottom: 3rem;
	position: relative;
	width: 100%;
}

.content-container {
	font-family: 'Lato', sans-serif;
}

.card-nav .card,
.blog-posts .card {
	margin-bottom: 1em;
}

.blog-buttons a {
	margin-bottom: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
}

.panel {
	border-color: #424242;
}

.panel-default > .panel-heading {
	background-color: #424242;
	border-color: #424242;
	color: #fff;
}

.category-wrapper .container {
	border-bottom: thin solid #1E3A4C;
	border-top: thin solid #1E3A4C;
	margin-bottom: 25px;
	padding: 25px 0;
}

.tag {
	background: #eee;
	border-radius: 10px;
	color: #424242;
	display: inline-block;
	font-size: 0.9em;
	margin-bottom: 0.5em;
	margin-right: 0.5em;
	padding: 0.25em 0.75em;
}

.similar-posts-wrapper,
.similar-posts-wrapper h2 {
	margin-bottom: 25px;
}

.similar-posts-wrapper .card {
	margin-bottom: 2em;
}

.map-wrapper .panel {
	border-color: #518328;
}

.map-wrapper .panel-primary > .panel-heading {
	background-color: #518328;
	border-color: #518328;
}

 .map-wrapper .btn-primary {
	 background-color: #518328;
	 border-color: #518328;
 }
 
 .map-wrapper .btn-primary:hover {
	 background-color: #79E10E;
 }

#footer {
	background: #424242;
	color: #fff;
	font-family: 'Lato', sans-serif;
}

.footer-links {
	padding: 0.5em 0;
}

#footer a {
	color: #fff;
}

#footer .footer-contact {
	background: #333;
	padding: 25px 0;
}

#footer h3 {
	margin: 0;
}

.pagination {
	clear:both;
	padding:20px 0;
	position:relative;
}
 
.pagination span, .pagination a {
	background: #F3F3F3;
	color:#333;
	border-radius: 4px;
	display:block;
	float:left;
	font-family: 'Lato', sans-serif;
	margin: 2px 2px 2px 0;
	padding: 0.5em 1em;
	text-decoration:none;
	width:auto;
}
 
.pagination a:hover{
	background: #1E3A4C;
	color:#fff;
}
 
.pagination .current {
	background: #1E3A4C;
	color:#fff;
}

@media (max-width: 1200px){
	.hero img { padding-top: 150px; }
	.img-placeholder { height: 150px; }
}

@media (max-width: 992px){
	.card {
		margin-bottom: 1em;
	}
	.hero img { padding-top: 145px; }
	.img-placeholder { height: 150px; }
}

@media (max-width: 768px){
	.height-100 {
		height: auto;
	}
/* 	.img-placeholder { height: 115px; } */
}

@media (min-width: 992px){
	#footer .row > div {
		border-right: 2px solid #fff;
	}
	
	#footer .row > div:last-child {
		border: none;
	}
}

@media (min-width: 768px){
	.navbar-collapse { padding: 0; }
}


/* == Single - Property == */

.property-size {
	font-size: 2em;
	margin: 0.75em 0;
}

.property-container .faded {
	font-style: normal;
}

.card.card-property {
	text-align: center;
	margin-bottom: 1em;
}

.card.card-property .card-content {
	background: #fff;
	color: #000;
	font-size: 1.4em;
}

.card.card-property .card-footer {
	background: #6CC22C;
	color: #fff;
	font-size: 1.2em;
	padding: 1em;
}

.property-container .information {
	font-size: 1.2em;
}

.property-container .information h2 {
	font-size: 2em;
}

.property-container .information p {
	margin-bottom: 10px;
}

.property-container #map-canvas {
	margin-bottom: 1em;
}

.property-container .btn-primary {
	background: #6CC22C;
	border-color: #62AE28;
	color: #fff;
}

.property-container .btn-primary:hover {
	background: #62AE28;
}

.property-container .btn-purp {
	background: #711573;
	border-color: #6E0A70;
}

.property-container .btn-purp:hover {
	background: #6E0A70;
}

.property-container .btn-blue,
.business-wrapper .btn-blue {
	background: #1E3A4C;
	border-color: #0F2C4C;
}

.property-container .btn-blue:hover,
.business-wrapper .btn-blue:hover {
	background: #0F2C4C;
}

.single-fp_property .page-header  {
	margin-top: 0;
}

.single-fp_property .page-header img {
	width: 100%;
	padding-top: 190px;
}