@charset "utf-8";
/* CSS Document */

html, body {
	margin: 0px;
	padding: 0px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Roboto', sans-serif;
}
main {
	min-height: calc(100vh - 189px);
}
img {
	vertical-align: bottom;
}
.wrapper {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.subhead {
	border-bottom: solid 3px rgba(251, 4, 4, 0.40);
}
/**Hamburger menu**/

#navmenu ul li:first-child {
	display: none;
}
/****/

/**Header**/

#header-nav .wrapper {
	background-color: #004BAF;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
	border-radius: 0px 0px 10px 10px;
	display: flex;
	justify-content: center;
}
#header-nav {
	margin: 35px 0px;
}
#navmenu ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
}
#navmenu ul li {
	float: left;
}
#navmenu ul li a {
	display: block;
	padding: 25.5px 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
}
#navmenu ul li a:link, #navmenu ul li a:visited {
	color: #fff;
}
#navmenu ul li a:hover {
	background-color: #003174;
	transition: linear .4s;
}
/****/

/**Main**/

#intro-text h2 a:link, #intro-text h2 a:visited, .body-text ol li a:link, .body-text ol li a:visited {
	color: #004BAF;
}
#intro-text h2 a:hover, .body-text ol li a:hover {
	color: #003174;
}
.wrapper>h1, #intro-text {
	text-align: center;
}
.date h3 {
	text-align: center;
	margin: 35px 0px;
	padding: 10px 0px;
	border-left: solid 5px #FB0404;
	background-color: rgba(251, 4, 4, 0.40);
}
/****/

/**Footer**/

#copyright {
	background-color: #000;
}
#copyright p {
	text-align: center;
	padding: 15px 10px;
	color: #fff;
	margin: 0px;
}
#copyright p a {
	text-decoration: none;
}
#copyright p a:link, #copyright p a:visited {
	color: #fff;
}
#copyright p a:hover {
	color: #004BAF;
}

/****/

/**Responsive**/

@media only screen and (min-width: 900px) and (max-width: 1200px) {
.wrapper {
	width: 880px;
}
#navmenu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
}

@media only screen and (max-width: 899px) and (min-width: 768px) {
.wrapper {
	width: 760px;
}
#navmenu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
}

@media only screen and (max-width: 767px) {
main, footer {
	font-size: 14px;
}
.wrapper {
	width: 90%;
}
#navmenu {
	width: 100%;
}
#navmenu ul li {
	float: none;
	display: none;
}
#navmenu ul li:first-child {
	display: block;
}
#navmenu.responsive ul li {
	display: list-item;
}
#navmenu.ham-nav a:hover {
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
#navmenu.responsive a:hover {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
}

/****/
