@charset "UTF-8";
/* CSS DOCUMENT */

html,
html * {
	margin: auto;
	padding: 0;
	box-sizing: border-box;	
}

body {font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";}
a {text-decoration: none;}
li {list-style: none;}
body {
	background-color: #003300;
	max-width: 1450px;
}

/* NAVBAR STYLING STARTS */

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background-color: #003300;
	color: #FFFFFF;
}
.nav-links a {
	color: #FFFFFF;}

/* LOGO */
.logo {float: left; "max-width:100%; height:auto;"}


/* NAVBAR MENU */
.menu {
	display: flex;
	gap: 0.7em;
	font-size: 0.8em;
}
.menu li:hover {
	background-color: #4c9e9e;
	border-radius: 5px;
	transition: 0.3s ease;	
}
.menu li {padding: 5px
	;}


/* RESPONSIVE NAVBAR MENU STARTS */
/* CHECKBOX */
input[type=checkbox]{display: none;}

/* HAMBURGER MENU */
.hamburger {
	display: none;
	font-size: 24px;
	user-select: none;
}

/* NAV MEDIA QUERY */
@media (max-width: 800px) {
	.menu {
		display: none;
		position: absolute;
		background-color: #003300;
		right: 0;
		left: 0;
		text-align: center;
		padding: 16px 0;
	}
	.menu li:hover {
		display: inline-block;
		background-color:#4c9e9e;
		transition: 0.3s ease;
	}
	.menu li + li {margin-top: 12px;}
	input[type=checkbox]:checked ~ .menu{display: block;}
	.hamburger {display: block;}
	.dropdown {
		left: 50%;
		top: 30px;
		transform: translateX(35%);
	}
}

/* MAIN STYLING */

a {color:#FFFFFF;}


a:link {color:#FFFFFF;}
		

.intro h1 { 
		padding: 1em;
		color: #FFFFFF;  
		text-align: center; 
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
		font-size: 2em;
		font-weight: 200;
		text-transform: uppercase;
}

.intro h2 {
		padding: 1em;
		color: #FFFFFF;  
		text-align: center; 
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
		font-size: 1.5em;
		font-weight: 200;
		text-transform: uppercase
}

.intro p {
	
		color: #FFFFFF;
		font-size: 1.2em;
		text-align: center;
		font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		padding: 1em 2em
}

.detail {
	
		color: #FFFFFF;
		font-size: 1.2em;
		text-align: left;
		font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		padding: 1em 1em;
}

.detail h3 {color: #FFFFFF;}


.whitespace {
	
		background-color: #FFFFFF;
		p: color: #000000;
		font-size: 1em;
		text-align: left;
		font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		padding: 1em 2em;
			
}


h3 {
		color: #000000;  
		text-align: left; 
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
		font-size: 1em;
		font-weight: 200;
		text-transform: uppercase	
}

/* SLIDESHOW */
	
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 20px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* END OF SLIDESHOW */

.green_space {padding: 20px;}
.responsiveimage {
	max-width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* IMAGE GRID */

	.caption {
	font-size: 0.8em;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
  	text-align: center;
	color: #FFFFFF;	
	}


/* MOBILE VIEW*/


body {	margin-left: auto;
		margin-right: auto;
	}

.col {width: 100%;}

img {	width: 100%;
		max-width: 100%;
		height: auto;
		vertical-align: middle;
		padding: 5px;
			
	}
	


/* DESKTOP VIEW*/

@media (min-width: 800px){
	
body {max-width: 1450px;}
	

.col-md-one-half {width: 50%;}

.col {	float: left;}
	
	
#footer {clear: both;}}

.space { color: #003300  }





/* FOOTER */

.foot {
	background-color: teal;
	font-size: 0.9em;
	text-align: center;
	padding: 60px;
}




