html {height: 100%;}
body {min-height: 100%; margin: 0;}

hr {
	margin: 10px 0;
}
.container {
	width: 320px;
	margin: 0 auto;
}

.site-header {
	background-color: black;
	background: linear-gradient(to bottom, #000000, #000000) ;
}
.site-logo {
	width: 200px;
	height: 40px;
	margin-bottom: 5px;
}
.site-header-nav-small {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;

}
.site-header-nav-small > :not(:last-child) {
	margin-right: 1em;
}


/* used so content section can grow as necessary, to push the footer down */
.vertical-flexbox {
	display: flex;
	flex-direction: column;
}
.flex-grow {
	flex-grow: 1;
}

/* generic flex helpers */
.flex {display: flex;}
.space-between {justify-content: space-between;}

.site-gray-bg {
	background-color: #f6f6f6;
	background: linear-gradient(to bottom, #f6f6f6, #d3d3d3)
}

body:not(.mobile-nav-shown) .site-mobile-nav {
	display: none;
}
body.mobile-nav-shown .site-content-footer {
	display: none;
}

.button-link {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	background-color: #2b2b32;
	color: #c4925f !important;
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 10px;
	border-radius: 10px;
}

.column-border {
	border-left: 1px solid lightgray;
	margin: 0 15px;
}

.content-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.grid-item {
	flex: 0 1 150px;
	text-align: center;
	margin-bottom: 20px;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}