#contact-form{
	flex: 0 0 50%;
	padding-right: 20px;
	box-sizing: border-box;
}
#contact-boxes{flex: 0 0 50%; padding-left: 20px; box-sizing: border-box}
#contact-form .contact-form,#contact-form .form-element{
	width:100%;
	margin-bottom:8px;
}
#contact-form h3{
	color:#0d0d0d;
	font-size:16px;
	font-weight:500;
	line-height:20px;
	margin:0 0 7px 0;
	padding:0;
}
#contact-form h3 i{
	color:#2d3a4b;
	font-size:10px;
	line-height:20px;
}
#contact-form p{
	color:#aaa;
	font-size:13px;
	width:100%;
	padding:8px 0 16px 0;
	margin:0;
}
#contact-form .form-element input[type=text]{
	width:100%;
	padding:10px 15px;
	line-height: 20px;
	box-sizing: border-box;
	border:1px solid #eaeaea;
	border-radius:2px;
}
#contact-form .form-element textarea{
	width: 100%;
	padding:12px;
	border:1px solid #eaeaea;
	border-radius:2px;
	box-sizing: border-box;
}
#contact-form .form-element label{
	font-size: 13px;
	color:#707070;
}
#contact-form button{
	background:#0d0d0d;
	color:#fefefe;
	text-align:center;
	border: none;
	border-radius:2px;
	cursor:pointer;
	transition:ease 0.25s;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	padding: 10px 20px;
	box-sizing: border-box;
	width: 100%;
	margin: 20px auto;
}
#contact-form button:hover{
	background:#fefefe;
	color:#5c8dc7;
}
#contact-boxes{
	min-height:300px;
	padding-top:30px;
	display: flex;
	flex-flow: row wrap;
}
#contact-boxes .box{
	flex: 0 0 50%;
	text-align:center;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease 0.25s;
	flex-flow: column;
}
#contact-boxes .box:hover{
	box-shadow: 0 0 20px 3px rgba(0,0,0,0.1);
}
#contact-boxes .box:nth-child(1){
	border-right:1px solid #dadada;
	border-bottom:1px solid #dadada;
	margin:0 -1px -1px 0;
}
#contact-boxes .box:nth-child(4){
	border-left:1px solid #dadada;
	border-top:1px solid #dadada;
	margin:0 -1px -1px 0;
}
#contact-boxes .icon{
	width:100%;
	height:60px;
	text-align:center;
	font-size:45px;
	color:#0d0d0d;
	line-height:60px;
	padding:10px 0;
}
#contact-boxes strong{
	width:100%;
	height:30px;
	color:#0d0d0d;
	line-height:30px;
	font-size:15px;
	text-align:center;
	margin:0;
	padding:0;
	font-weight:500;
}
#contact-boxes p{
	width:100%;
	height:30px;
	color:#707070;
	line-height:20px;
	font-size:14px;
	text-align:center;
	margin:0;
	padding:0;
}
#map{
	width:100%;
	height:450px;
	margin:40px 0 20px 0;
	background:#dadada;
}
#blog-feed{
	min-height:480px;
}
.home-title{
	width:100%;
	height:50px;
	text-align:center;
	margin:40px 0 40px 0;
	float:left;
	position:relative;
}
.home-title:before{
	content:" ";
	height:2px;
	background-color:#2d3a4b;
	width:100%;
	top:49%;
	left:0;
	position:absolute;
	z-index:1;
}
.home-title h2{
	font-size:31px;
	font-weight:700;
	color:#2d3a4b;
	margin:0;
	padding:0 20px;
	background:#fafafa;
	position:relative;
	z-index:2;
	display:inline-block;
	font-family: 'Open Sans Condensed', sans-serif;
}
.home-title-2 h2{
	background:#fff !important;	
}
#blog-feed .post{
	width:31.333%;
	float:left;
	min-height:300px;
	margin:0 1%;
}
#blog-feed  .cover{
	width:100%;
	height:270px;
	background-size:cover;
	background-position:center;
	float:left;
	margin-bottom:8px;
}
#blog-feed a h3{
	color:#2d3a4b;
	font-size:14px;
}
#errorMsg{
	width:96%;
	padding:10px 20px;
	box-sizing:border-box;
	font-size:13px;
	color:#fff;
	background:#f36a5a;
	text-align:center;
	border-radius:3px;
	display:none;
}
#errorMsg.error{
	display:block !important;
}
#errorMsg.success{
	display:block !important;
	background:#4db3a4 !important;
}
@media only screen and (max-width: 768px){
	#contact-form{flex: 0 0 100%; padding-right: 0;}
	#contact-boxes{flex: 0 0 100%; padding-left: 0;}
}
@media only screen and (max-width: 480px){
	#contact-boxes{
		flex-flow: row nowrap;
		overflow-x: auto;
		width: 100%;
		min-height: auto;
	}
	#contact-boxes .box{
		flex: 0 0 auto;
		margin-right: 30px;
		border: none;
		padding: 10px 20px;
	}
	#contact-boxes .box:nth-child(1){
		border-right: none;
		border-bottom: none;
	}
	#contact-boxes .box:nth-child(4){
		border-top: none;
		border-left: none;
	}
}