/*
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
	------------------
	Generals
	------------------
*/
* {
	box-sizing: border-box;
}
body {
	line-height: 1.5;
	position: relative;
	font-size: 16px;
}
#site-wrap {
	position: relative;
	text-align: center;
}
strong{
	font-weight: 700;
}
a,
a:visited {
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
img {
	max-width: 100%;
	height: auto;
}
i.fa {
	margin-right: 6px;
	display: inline-block;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.wrapper {
	width: 90%;
	max-width: 800px;
	margin: auto;
}

/*
	------------------
	Custom
	------------------
*/
body {
	color: #333;
	font-family: 'Lato', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 30px;
	padding-bottom: 10px;
}
h1 { font-size: 250%; }
h2 { font-size: 200%; }
h3 { font-size: 180%; }
h4 { font-size: 160%; }
h5 { font-size: 140%; }
h6 { font-size: 120%; }
p {
	padding-bottom: 6px;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
a:visited,
i.fa {
	color: #9d0039;
}
html, body, #site-wrap {
	min-height: 100%;
}
#site-wrap {
	background-color: transparent;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
	padding-top: 8%;
}
#content {
	background-color: rgba(255,255,255,0.85);
	/* padding: 40px 8%; */
}
#logo {
	background-color: transparent;
	background-position: center;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	padding-bottom: 48%;
	margin: 0 auto;
	position: relative;
	max-width: 600px;
}

.flex-parent {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex {
	align-self: auto;
}

.flex-divider {
	margin: 0 10px 0 10px;
}

.announcement {
	font-size: 25px;
	margin-bottom: 20px;
}

/* --------------------------- Media Query -------------------------- */

@media screen and (min-width: 768px ) {
	body {
		font-size: 18px;
	}
}


@media screen and (max-width: 768px ) {
	.flex-divider {
		display: none;
	}
	.flex {
		width: 100%;
	}
}

/* #site-info p:before {
	content: "|";
	display: inline-block;
	float: left;
	margin: 0 10px;
}
#site-info p:first-child:before {
	content: none;
} */