*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
body {
	background-color: #036;
}
.bg-grey {
	background-color: #e6e6e6;
}
header {
	height: 130px;
	padding: 1rem 0;
	background-color: #fff;
	/* box-shadow: 0 4px 4px #000; */
	transition: 0.75s;
}
header.header-shrink {
	height: 70px;
	padding: 0.5rem 0;
	background-color: #f0f0f0;
	transition: 0.75s;
}
.logo img {
	max-height: 100px;
	transition: 0.5s;
}
.logo img.logo-shrink {
	max-height: 50px;
	transition: 0.5s;
}
.navbar.move-nav {
	margin-top: 0;
	transition: 0.5s;
}
/* navbar */
.navbar{
	margin-top: 60px;
	padding: 0;
	transition: 0.5s;
}
.navbar a.nav-link {
    color: #333;
}
.navbar a.nav-link:hover, .navbar a.nav-link.active {
	color: #c00;
}
#navbar button{
    color: #fff;
}

/* Masthead */
#_masthead {
	margin-top: 130px;
	background-image: url('../images/masthead-bg.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: auto;
	padding: 8rem 0 16rem 0;
}
#masthead {
	margin-top: 130px;
	padding: 8rem 0 16rem 0;
}
#masthead h1, #masthead h2 {
	color: #def;
	text-shadow: 0px 0px 8px #000;
	font-weight: normal;
}
#masthead h1 {
	font-size: 2.5rem;
	border-bottom: solid 1px #fff;
}
#masthead h2 {
	font-size: 1.5rem;
}
#background-video {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	opacity: 0.5;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
section:not(#masthead) {
	padding: 40px 0 80px 0;
	border-top: solid 10px #900;
}
section:before {
    display: block;
    content: "";
    height: 80px;
    margin: -30px 0 0;
}
/* Contact */
#contact .address-block p {
	margin: 0;
}
#contact .form-container {
	background-color: #e6e6e6;
}
#contact .ww-icon {
	max-width: 50%;
}

/* Footer */
footer {
	padding: 1rem;
	background-color: #900;
}
footer p {
	font-size: 0.9rem;
	color: #fff;
	margin: 0;
}

@media (min-width: 768px) {
	.navbar-nav li a {
		font-size: 0.8rem;
	}
	#masthead h1 {
		font-size: 3.5rem;
		border-bottom: solid 1px #fff;
	}
	#masthead h2 {
		font-size: 2.25rem;
	}
	#contact .ww-icon {
		max-width: 100%;
	}
}
@media (min-width: 992px) {
	.navbar-nav li a {
		font-size: 1rem;
	}
}
@media (max-width: 767px) {
	#mainNav {
		padding: 0.5rem;
		background-color: #fff;
		border: solid 1px #999;
		border-radius: 0.25rem;
	}
}