/* ------------------------------------------------------- */
/* Global CSS
/* ------------------------------------------------------- */
body {
	font-family: 'Open Sans', sans-serif;
}

.content {
	padding: 50px 0;
	background-color: #fff;
}

.content-alt {
	background-color: whitesmoke;
}

.content h1 {
	font-size: 35px;
	color: navy;
	margin: 15px 0;
}

.content p {
	font-size: 16px;
	line-height: 32px;
}

.content ul li {
	position: relative;
	margin-left: 25px;
	font-size: 18px;
	line-height: 35px;
}

.content ul li i {
	position: absolute;
	top: 8px;
	left: -25px;
	color: blue;
}



/* ------------------------------------------------------- */
/* Header
/* ------------------------------------------------------- */
#header {
	padding: 10px 0;
}

#header img {
	width: 100%;
}

#header h1 {
	font-size: 25px;
	margin: 0;
	margin-top: 12px;
}

.bold {
	font-weight: 700;
}

#header p {
	font-size: 15px;
	margin-top: -10px;
	margin-bottom: 0;
}

.call-us {
	text-align: right;
}

.call-us a {
	font-size: 25px;
}

.call-us a:hover {
	text-decoration: none;
}

.call-us p {
	margin-bottom: 0;
	font-weight: 600;
}



/* ------------------------------------------------------- */
/* Form
/* ------------------------------------------------------- */
#form {
	background-image: url('../images/love.jpg');
	background-size: cover;
	background-position: top;
	position: relative;
	z-index: 0;
}

#form::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

#form img {
	width: 350px;
	border: 2px solid lightgray;
	margin-bottom: 10px;
	opacity: 0;
}

#form form {
    background-color: white;
    padding: 55px 25px;
    border: 1px solid lightgray;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.3);
}

#form h2 {
	font-size: 35px;
	margin-bottom: 20px;
	color: navy;
}

#form h1 {
	color: #fff;
	font-size: 65px;
}

#form ul li {
	color: #fff;
	font-size: 20px;
}

#form ul li i {
	color: #fff;
}

.form-text p {
	color: #fff;
	margin-bottom: 15px;
	font-size: 20px;
}

#form .form-control:focus {
	box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.3);
	border: 1px solid lightgray;
}

#form form p {
	margin-bottom: 0;
	line-height: 25px;
	margin-top: 10px;
	font-size: 15px;
}


/* ------------------------------------------------------- */
/* Partners
/* ------------------------------------------------------- */
#partners i {
	font-size: 50px;
}

#partners img {
	width: 200px;
}



/* ------------------------------------------------------- */
/* Description
/* ------------------------------------------------------- */
.table-dark th {
	font-size: 17px;
	color: orange;
}

.zip_code {
	background-color: #222;
    padding: 20px 10px;
    border-radius: 10px;
}

.zip_code h1 {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 0;
}

#zipCode .form-control, #zipCode .btn-primary {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0!important
}




/* ------------------------------------------------------- */
/* Footer
/* ------------------------------------------------------- */
#footer {
	background-color: #222;
}

#footer p {
	text-align: center;
	color: #ddd;
	margin-bottom: 0;
}

#footer p a {
	font-weight: 600;
	color: #fff;
}







/* Form Response Message */
#responseMsg, #zipMsg {
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.error {
	margin: 10px auto;
	padding: 16px;
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid rgba(185, 74, 72, 0.3);
}
.success {
	margin: 10px auto;
	padding: 16px;
    color: #468847;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
}