*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style: none;
}
#wrapper{
		background-color: #edf0f1;
	}



/* NAVBAR */

	/* MENU BARS */
	#show_menu{
		display: none;
	}

	header{
		color: #edf0f1;
		background-color: #221f20;
		display: flex;
		align-items: center;
		padding: 20px 5%;
		text-transform: uppercase;
		z-index: 1;
	}
	
	.logo{
		cursor: pointer;
	}
	.logo img{
		width: 150px;
	}
	nav ul li{
		position: relative;
		padding: 0px 20px;
		display: inline-block;
	}
	nav ul li a{
		font-family: "Noto Sans", sans-serif;
		font-size: 16px;
		text-decoration: none;
		letter-spacing: 3px;
		font-weight: lighter;
		transition: all .5s linear 0s;
	}
	nav ul li a:link {
		color: #edf0f1;
	}
	nav ul li a:visited {
		color: #edf0f1;
	}
	nav ul li a:hover {
		color: #96C688;
		padding-bottom: 65px;
	}
	#highlight_nav{
		color: #96C688;
	}


	/* VISIT US BUTTON */
	.nav_button button{
		font-family: "Noto Sans", sans-serif;
		font-size: 16px;
		text-decoration: none;
		letter-spacing: 3px;
		font-weight: lighter;
		background-color: #006838;
		text-transform: uppercase;
		color: #edf0f1;
		padding:  9px 25px;
		border: none;
		transition: all .5s ease-out 0s;
		cursor: pointer;
	}

	.nav_button button:hover{
		background-color: #edf0f1  ;
		color: #221f20;
	}
	

/* HERO IMAGE */
.home_heroimage{
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("home.jpeg");
	height: 670px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.about_heroimage{
	background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("about.hero.jpeg");
	height: 670px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.herotext{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #edf0f1;
	font-family: "Noto Sans", sans-serif;
	font-size: 3vw;
	letter-spacing: 4px;
	white-space: nowrap;
}
.herotext h2{
	font-family: "Bradley Hand", cursive ;
	font-size: 3vw;
}


/* MAIN */
main{
	
}


/* FOOTER- NAV*/
.first_footer{
		width: 100%;
		overflow: hidden;
		padding: 40px 20px;
		box-sizing: border-box;
		background-color: #4a4849;

}
.footer_nav{
		text-transform: uppercase;
		margin: auto;
		text-align: center;
		padding: 0;
		margin: 0;
		justify-content: center;
}

#footer_highlight_nav{
		color: #96C688;
}

/* FOOTER- COPYRIGHT */
.second_footer{
	background-color: #221f20;
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 20px 5% ;
	text-align: center;
}
.second_footer p{
	color: #edf0f1;
	font-family: "Noto Sans", sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: lighter;
	font-size: 10px;
}



@media screen and (max-width: 900px){
	header{
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.logo img{
		width: 110px;
		margin-left: 25px;
	}
	/* NAV BAR */
	nav {
		display: flex;
	}
	nav .nav_menu{
		position: absolute;
		background-color: #4a4849;
		height: 400px;
		width: 100%;
		top: 90px;
		left: -100%;
		margin-left: 0;
		transition: all 0.3s linear;
	}
	.nav_menu li{
		display: block;
		margin: 15px 20px;
	}
	.nav_menu li a{
		line-height: 30px;
		font-size: 15px;
	}

	nav ul li a{
		font-size: 2vw;
	}

	/* MENU BARS */
	.menu_icon{
		height:40px;
 		width:20px;
  		cursor:pointer;
  		margin:10% auto;
  		display:flex;
  		justify-content:center;
  		align-items:center;
	}
	.line{
  		position:absolute;
  		height:3.5px;
  		width:25px;
  		background-color: #edf0f1;
  		transition: .4s ease;
  	}
	#show_menu{
		display: none;
	}
	.line::before{
	  content:'';
	  position:absolute;
	  height:3.5px;
	  width:25px;
	  background-color: #edf0f1;
	  top:-9px;
	  transition: .4s ease;
	}
	.line::after{
	  content:'';
	  position:absolute;
	  height:3.5px;
	  width:25px;
	  background-color: #edf0f1;
	  top:9px;
	}

	/*MENU BAR- CLICKED */
	nav #show_menu:checked ~ .nav_menu{
		left: 0%;
	}
	#show_menu:checked + label #active{
	  transform:rotate(45deg);
	 }
	#show_menu:checked + label #active::before{
	  transform:rotate(-90deg) translateX(-8px);
	}
	#show_menu:checked + label #active::after{
	  display:none;
	}
	
	/* VISIT US BUTTON */
	.nav_button button{
		font-family: "Noto Sans", sans-serif;
		font-size: 12px;
		padding:  9px 15px;
	}


	/* 	HERO IMAGE */
	.home_heroimage{
		height: 400px;
	}
	.about_heroimage{
		height: 400px;
	}



	/* FOOTER- NAV*/
	.first_footer{
		padding: 15px 10px;
	}
	.footer_nav ul li{
		padding: 0px 8px ;
	}

	/* FOOTER- COPYRIGHT */
	.second_footer{
		padding: 10px 5% ;
	}
	.second_footer p{
		font-size: 8px;
	}

}

@media screen and (min-width: 900px){
	header{
		justify-content: flex-end;
		padding: 40px ;
	}
	

	/* NAV */
	.logo{
		position: absolute;
		left: 70px;
	}
	nav {
		align-items: center;
		margin-right: 20px;
		display: flex;
		justify-content: center;
	}
	nav .nav_menu{
		margin-left: 80px;
	}
	.underline_nav a:hover{
		text-decoration: underline;
		text-underline-offset: 1em;
	}
	#highlight_nav{
		text-decoration: underline;
		text-underline-offset: 1em;
	}
	

	/* DROP DOWN */
	.dropdown{
		position: absolute;
		background-color: #4a4849;
		left: 0;
		display: none;
		padding:  10px;
		top: 67px;
	}
	.dropdown::after{
		position: absolute;
		content: "";
		border-left: 17px solid transparent;
		border-right: 17px solid transparent;
		border-bottom: 15px solid #4a4849;
		top: -14px;
		left: 15%;
	}
	nav ul li:hover  ul{
		display: block;
		z-index: 1;
	}
	.dropdown li{
		width: 15em;
		color: #221f20;
		float: none;
		position: relative;
		padding:  10px;
		margin: 0;
	}
	.dropdown li a:link{
		color: #edf0f1;
	}
	.dropdown li a:hover{
		color: #96C688;
		text-decoration: none;
	}

}




