@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@charset "utf-8"
html {
	background-color: white;
}

body {
	background-color:white;
	width: 100%;
}

img#logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 35%;
	min-width: 300px;
	min-height: auto;
}

.desc {
	margin-top: 20px;
	background-color: #2870b8;
	color: white;
	line-height: 1.5em;
	font-size: 3.5em;
	text-align: center;
}

.cap {
	margin-top: 30px;
	max-width: 49%;
	line-height: 1.5em;
	font-size: 1.5em;
	text-align: left;
	float: left;
	border-right: 5px solid #2870b8;
}

.cap1 {
	float: left;
	line-height: 1.5em;
	font-size: 1.5em;
	text-align: center;	
	max-width: 49%;
	margin-top: 30px;
	padding-left: 20px;
	margin-bottom: 100px;
}

.cap1 > a {
	background-color: #ffab3e;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}


.misc img#smol {
	float: right;
}

.misc img:hover {
	opacity: 0.5;
}	

img#manu {
	width: 75%;
	display: block;	
	margin: auto;
}

header {
	height: 100px;
	background-color: white;
}


img#logo {
	margin-bottom: 20px;
	margin-top: 20px;
}

nav.horizontal {
	width: 100%;
	float: right;
}

nav.horizontal li {
	font-size: 1em;
	font-family: 'Montserrat', "Lucida Grande", sans-serif;
   	line-height: 1.5em;
	width: 35%;
	margin-bottom: 5px;
	padding-top: 5px;
	background-color: #444747;
	padding-bottom: 5px;
}

nav.horizontal li:hover {
        transition: background-color 1s;
        background-color: orange;
}

nav.horizontal a {
	padding-top: 10px;
	display: block;
	color: white;
	font-weight: bold;
	text-align: center;
	padding-bottom: 4px;
}

nav.horizontal ul {
	display: flex;
	flex-flow: row nowrap;
	flex: 1 1 auto;
}



article {
	padding-left: 30px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding-top: 30px;
	width: 85%;
	font-family: 'Montserrat', Calibri, sans-serif;
}

article > p {
	line-height: 1.7em;
	font-size: 1.7em;
}

img#m:first-of-type {
	padding-top: 20px;
}

img#m {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	width: 40%;
	min-width: 250px;
}

footer {
	float: left;
	width: 100%;
	background-color: gray;
	color: white;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 1.1em;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

@media screen and (max-width: 600px) {
	
nav.horizontal ul {
	display: none;
}

a#navicon {
	display: block;
	background-color: gray;
}


a#navicon:hover+ul, nav.horizontal ul:hover {
	background-color: #444747;
	display: block;
}

nav.horizontal li {
	width: 100%;
}


}
	
@media screen and (min-width: 601px) {

a#navicon {
	display: none;
}

}

