html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
a, em, img, strong, sub, sup, b, u, i, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, footer, header, nav, main, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, footer, header, nav, main, section {
	display: block;
}
body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
	background: url(images/body-background.png) repeat;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1 {
	color: #fff;
	font-size: 47px;
	font-weight: 800;
}

h2 {
	color: rgba(239,100,35,1);
	line-height: 1.4em;
    font-size: 34px;
	font-weight: 700;
}

h3 {
	color: rgba(239,100,35,1);
	line-height: 1.4em;
    font-size: 40px;
	font-weight: 700;
	text-shadow: #ffffff 0px 0px 6px;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

input, textarea {
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	color: rgb(244,242,235);
	background: #333;
	width: calc(100% - 20px);
	padding: 5px 10px;
	border: 0;
	margin-top: 6px;
}

input::placeholder, textarea::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder { /* Edge 12-18 */
  color: #fff;
}

button {
	background: rgb(239,100,35);
	color: #fff;
    border: 0;
    padding: 5px 10px;
    font-size: 18px;
	cursor: pointer;
	margin-top: 6px;
}

.error {
  color: red;
  font-size: 14px;
}

.success {
	color: green;
	font-size: 14;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mt-20 {
	margin-top: 20px;
}

.mt-40 {
	margin-top: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-70 {
	margin-bottom: 70px;
}

.text-right {
	text-align: right;
}

.divider {
	height: 1px;
	background: rgba(79,33,11,.35);
}

.container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 30px;
}

.header {
	padding: 10px 0;
}

.header-top {
	text-align: right;
}

.header-logo-section {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.header-logo, .header-contact {
	width: 50%;
	text-align: center;
}

.header-phone {
	font-size: 18px;
	color: #fff;
	font-weight: 700;
}

.header-phone span {
	display: block;
}

.phone-text {
	margin-bottom: 25px;
}

.header-phone a {
	font-size: 30px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.navigation {
	display: flex;
}

.navigation a {
	display: block;
	width: 50%;
	text-align: center;
	background: #888;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, .60));
	color: rgb(0,46,93);
	text-decoration: none;
	font-size: 16px;
	font-weight: 300;
	padding: 12px 0;
	transition: background-image 2s;
}

.navigation a.active, .navigation a:hover {
	background: rgb(0,46,93);
	color: #fff;
	transition: background-image 2s;
}

.navigation a.active {
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .4));
}

.navigation a:hover {
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, .4));
}

.section1 {
	padding: 40px 0;
	text-align: center;
}

.section2 {
	padding: 60px 0;
	background: rgba(244,242,235,.75);
	text-align: center;
}

.section2 p {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.section2 p.style2 {
	color: rgb(79,33,11);
	font-size: 26px;
}

.contact-section {
	max-width: 980px;
	margin: 0 auto;
	border-radius: 5px;
	background: rgb(236,233,224);
}

.contact-section p {
	font-size: 14px;
	line-height: 1.4;
}

.contact-section .sub-heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact-content {
	display: flex;
	justify-content: space-between;
	padding: 30px;
}

.contact-text, .contact-form {
	width: 425px;
}

.footer {
	background: rgba(79,33,11,.69);
	padding: 20px 0;
	margin-top: 10px;
}

.copyright-text {
	text-align: center;
}

.copyright-text p {
	font-size: 14px;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.header-logo-section, .contact-content {
		flex-direction: column;
	}
	
	.header-logo, .header-contact, .contact-text, .contact-form {
		width: 100%;
	}
	
	.header-logo {
		margin-bottom: 30px;
	}
	
	.phone-text {
		margin-bottom: 15px;
	}
	
	.contact-text {
	    margin-bottom: 30px;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 40px;
	}
	
	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 35px;
	}
	
	.section2 p.style2 {
		font-size: 22px;
	}
}