/* Copyright 2020 CowdenAndWilcox.com */
/* Last Updated 10.11.2020 */
/* Version 1.0 */
/* Stylesheet */

@charset "UTF-8";

*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
	min-height: 100%;
}

.container {
	height: 100%;
	width: 100%;
	min-height: calc(100vh - 2.5rem);
	position: relative;
}

h1, h2, h3, h4, h5, h6 {
	color: #3b6192;
	font-family: "Josefin Slab", "Times New Roman", Times, serif;
}

a {
	color: #3b6192;
}

a:hover {
	color: #7590b2;
}

img {
	width: 100%;
}

/* IE Fix */
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section, address {
	display: block;
}

time {
	display: inline;
}

.content-wrapper {
	padding-bottom: 2.5rem;
}

/* Header */

header {
	text-align: center;
}

.main-header {
	font-size: 3em;
	margin-bottom: 0;
}

.tagline {
	font-size: 1.5em;
	margin-top: 0;
}

/* Main Text */

.main-image {
	display: block;
	height: auto;
	width: 80%;
	max-width: 480px;
	margin: 0 auto;
}

/* Featured */

.featured-wrapper {
	float: left;
	width: 90%;
	margin: 0 5%;
	margin-bottom: 2rem;
}

.featured-left-wrapper {
	float: left;
	width: 50%;
}

.featured-image {
	display: block;
	width: 90%;
	height: auto;
	max-width: 320px;
	margin: 0 auto;
}

.featured-right-wrapper {
	float: right;
	width: 50%;
}

#featured-video {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	max-width: 576px;
}

.featured-text {
	max-width: 576px;
	padding: 0 5%;
	margin: 0 auto;
}

.featured-text p {
	text-align: left;
	margin-top: 0.5rem;
}

.featured-text h3 {
	font-size: 1.75em;
	text-align: center;
	margin-bottom: 0;
}

/* Nav */

/* Buttons */

#topnav {
	margin-top: 2.5rem;
}

.nav-button {
	display: block;
	font-size: 1.5em;
	font-family: "Josefin Slab", "Times New Roman", Times, serif;
	background-color: #3b6192;
	height: 50px;
	width: 80%;
	line-height: 2.25em;
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-shadow: 0 2px 2px #333;
	box-shadow: 0 2px 2px #333;
	margin: 0 auto;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.nav-button:hover {
	color: #fff;
	background-color: #7590b2;
}

/* Columns */
.column {
	float: left;
	width: 33.3%;
	padding: 0;
}

.row {
	width: 100%;
	max-width: 991.98px;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

@media (max-width: 575.98px) {
	
	#topnav {
		margin-top: 1.5rem;
	}
	
	.column {
		float: left;
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.nav-button {
		width: 80%;
		font-size: 1.5em;
		line-height: 2.25em;
	}
	
	.main-header {
		font-size: 2em;
		margin-bottom: 0;
	}

	.tagline {
		font-size: 1em;
		margin-top: 0;
	}
	
	.featured-wrapper {
		float: left;
		width: 90%;
		margin: 0 5%;
		margin-bottom: 1rem;
	}

	.featured-left-wrapper {
		float: left;
		width: 100%;
		margin-bottom: 1rem;
	}

	.featured-image {
		max-height: 320px;
		width: auto;
	}

	.featured-right-wrapper {
		float: right;
		width: 100%;
	}

	#featured-video {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 auto;
		max-width: 576px;
	}

	.featured-text {
		text-align: left;
		padding: 0 5%;
	}
	
}

/* Footer */

footer {
	position: absolute;
	width: 100%;
	height: 2.5rem;
	text-align: center;
	font-size: 0.75em;
	bottom: 0;
	left: 0;
}

footer a {
	text-decoration: none;
}


/* Responsive Code */

@media (max-width: 479.98px) {
	
	.main-header {
		font-size: 1.75em;
		margin-bottom: 0;
	}

	.tagline {
		font-size: 0.75em;
		margin-top: 0;
	}
	
}

/* End of Stylesheet */