/* 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;
}

/*end of CSS reset */



/* Header CSS */
header{
	display: flex;
	justify-content: center;
	background-color: #041447;
	color: rgb(255, 255, 255);
	align-items: center;
	padding-bottom: 15px;
	padding-top: 10px;
}

header h1{
	font-size: 50px;
	font-weight: bolder;
	font-family: 'Patrick Hand', cursive;
}

.logo{
	width: 75px;
}

/* Navigation Bar Css */
.navigation ul{
    display: flex;
    list-style-type: none;
	justify-content: center;
	font-family: 'Patrick Hand', cursive;
}

.navigation li{
    width: 200px;
    text-align: center;
	padding-bottom: 10px;
	font-size: 25px;
}

.navigation{
	background-color: #041447;
}

.navigation a:link, .navigation a:visited{
    color: rgb(67, 174, 236);
    text-decoration: none;
	font-weight: bold;
}

.navigation a:hover{
	color: rgb(231, 236, 239);
}

.navigation a{
    display: block;
    padding: 5px 0;
}

/* Contact Form CSS */
input, textarea{
	width: 320px;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	border-radius: 15px;
	border: 2px black solid;
	padding-top: 5px;
	padding-bottom: 5px;
}

.form p{
	text-align: center;
	margin: 10px auto;
}

.con1{
	padding: 5px;
	line-height: 25px;
	width: 320px;
	margin: auto;
	border-radius: 75px;
	margin-top: 10px;
	background-color: #4f63a4;
	color: aliceblue;
	border: 1px black solid;
	font-size: 28px;
}

form span{
	color: red;
}

#address{
	display: none;
}

.submit input{
	background-color: #4f63a4;
	color: aliceblue;
}

/* Footer CSS */

.footer{
	position: absolute; 
    bottom: 0; 
    left: 0; 
    z-index: 10;
	background-color: #041447;
	color: aliceblue;
	width: 100%;
	text-align: center;
	font-family: 'Patrick Hand', cursive;
	padding: 10px 0 10px 0;
}

footer{
	background-color: #041447;
	color: aliceblue;
	width: 100%;
	text-align: center;
	font-family: 'Patrick Hand', cursive;
	padding: 10px 0 10px 0;
}

/* Home CSS */

.Menu{
	margin: 100px 50px 100px 50px;
	padding: 20px 10px 20px 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row: 1fr 25px 1fr;
	place-items: center;
	color: whitesmoke;
	border: 3px black outset;
	background-color: rgba(2, 34, 132, 0.75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.Menu h2{
	grid-column: 1/3;
	grid-row: 1/2;
	font-weight: bold;
	font-size: 30px;
}

.Menu ul{
	grid-column: 1/3;
	grid-row: 3/4;
	font-size: 25px;
}

.mission{
	margin: 100px 50px 100px 50px;
	padding: 20px 10px 20px 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row: 1fr 25px 1fr;
	place-items: center;
	color: whitesmoke;
	border: 3px black outset;
	background-color: rgba(2, 34, 132, 0.75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.mission h2{
	grid-column: 1/3;
	grid-row: 1/2;
	font-weight: bold;
	font-size: 30px;
}

.mission p{
	grid-column: 1/3;
	grid-row: 3/4;
	font-size: 25px;
}

.mainList ul{
	padding-left: 25px;
}

/*php CSS */

.formHead{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 22px;
	color: aliceblue;
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 150px;
    background-color: rgba(0, 42, 159, 0.747);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 35px;
}

.thanks{
	width: auto;
	font-family: 'Roboto Condensed', sans-serif;
}