body {
	background: #000 url("images/bkg.png") no-repeat center top;
	color:#fff;
	font-family: "Gill Sans", sans-serif;
	margin-top:0;
}

a, a:visited {
	color: #fff;
	text-decoration-color: #0178FD;
}

a:hover {
	text-decoration-color: #ccc;
}

hr {
	background: #0178FD;
	border: 0;
	margin-top:1em;
	margin-bottom:1em;
	height: 1px;
	width: 80%;
}

header {
	text-align: center;
}

header h1#header-logo-text {
	display:none;
}

header img#header-logo {
	max-width: 1000px;
	width:85%;
}

header .subtitle {
	font-size: 3em;
	font-weight: 100;
}

nav {
	display:flex;
	align-content: space-evenly;
	flex-flow: row wrap;
	justify-content: space-evenly;
}

nav a, nav a:visited {
	color: #fff;
	display: block;
	padding:0.2em;
	font-size:2em;
}

section h2 {
	font-size: 5em;
	font-weight: 100;
	text-align: center;
	margin-bottom: 0.0em;
}

.feature {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}

.feature h3 {
	font-size: 2em;
	font-weight: 100;
	text-align: center;
}

.feature .feature-left, .feature .feature-right {
	padding: 1em;
	width: 50%;
}

.feature-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-text p {
	font-size: 1.5em;
}

.feature img {
	width: 100%;
}

.feature-wide p {
	text-align: center;
}

footer {
	text-align: center;
}

/* Newsriver-web */

.newsriver {
	position:relative;
	border: solid 1px #fff;
	border-radius: 10px;
	height: 50px;
	width: 80%;
	
	background: #01013e;
	color: #fff !important;
	font-family: -apple-system, BlinkMacSystemFont, "Gill Sans", sans-serif; !important;
	margin: 0;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}
.newsriver a, .newsriver a:visited {
	color: #fff;
}
.newsriver p {
	color: #fff !important;
}
.newsriver .accent {
	color: #0000ff !important;
}
.newsriver .marquee-wrapper {
	font-size:1.5em;
	height: 100%;
	position: relative;
}
.newsriver .marquee {
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	padding-top:0.45em;
}
.newsriver .marquee p {
	display: inline-block;
	margin: 0;
	padding-left: 100%;
	animation: marquee 20s linear infinite;
}

.newsriver #nrlogo {
	background: #01013e;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	position: absolute;
	top:0;
	left:0;
	height:50px;
	width: 180px;
	font-size: 38px;
}

.newsriver #nrlogo span {
	color: #0178FD;
}

@keyframes marquee {
	0%   { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}

@media only screen and (max-width: 600px) {
	.newsriver {
		display:none;
	}
}

@media only screen and (max-width: 1000px) {
	nav {
		flex-flow: column nowrap;
	}
	.feature {
		flex-flow: column nowrap;
	}
	
	.feature-image {
		order: 1;
		text-align: center;
		width: inherit !important;
	}
	
	.feature-image-main {
		max-width: 80%;
	}
	
	.feature-text {
		order: 2;
		width: inherit !important;
	}
	
	.feature-text p {
		font-size: 1em;
	}
}