#contact-hero {
	margin-top: 5px;
	position: relative;
	z-index: 9999999;
	margin-bottom: -150px;
	border-bottom: solid 3px #002133;
}
.white-background-full {
	background-color: #fff;
	padding-top: 40px;
	padding-bottom: 40px;
}

.white-background-full h3 {
	font-size: 28px;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: solid 2px #7a2434;
    padding-bottom: 3px;
}

.white-background-full p {
	margin-bottom: 20px;
}
#map-container {
	display: flex;
	flex-direction: row;
	align-items: center;
}
#map-left {
	width: 300px;
	margin-right: 15px;
}
#map-right a {
	font-weight: bold;
	color: #000;
}
#map-right br {
	display: block;
	margin-bottom: 15px;
}
.error {
	display: none;
}
#contact-form input {
	width: calc(100% - 5px);
	margin-bottom: 15px;
	height: 30px;
	padding-left: 5px;
	border: solid 2px #204A80;
	color: #204A80;
	box-shadow: 7px 7px 5px #ddd;
}
#contact-form textarea {
	height: 100px;
	width: calc(100% - 5px);
	padding-left: 5px;
	border: solid 2px #204A80;
	color: #204A80;
	box-shadow: 7px 7px 5px #ddd;
}
#contact-form input::placeholder, #contact-form textarea::placeholder {
	color: #204A80;
}
#submit {
	display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 40px;
    position: relative;
    background: #204A80;
	cursor: pointer;
	width: 150px;
	float: right;
	margin-bottom: 15px;
	color: #fff;
	text-align: center;
	margin-right: 20px;
	margin-top: 15px;
}
#submit:before {
	content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #204A80;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
#contact-form {
	clear: both;
	margin-bottom: 40px;
	margin-top: 20px;
}
#rcaptcha {
	float: right;
	margin-top: 25px;
}
@media(max-width:768px) {
	#map-container {
    	flex-direction: column;
    	align-items: flex-start;
	}
	#map-right {
		margin-top: 30px;
	}
}