*{
	margin: 0;
	padding: 0;
}

a{
	text-decoration: none;
}

body{
	background-color:#F2D67D;
}

header{
	background-color:#9cb946;
}

#top_header{
	height: 90px;
	background-color:#9cb946;

	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

	container-type: inline-size;
}

#logo_container{
    height: 80px;
    width: max-content;
    margin-right: clamp(0rem, 1cqi, 40rem);
}

.logo{
	height: 100%;
}

#main_heading_container{
    margin-right: clamp(0rem, 1cqi, 40rem);
}

#heading-img{
    width: 100%;
}


#top_navbar{
	/*height: 70px;*/
	background-color:#E4FDB2;
}

#top_navbar ul{

	list-style: none;
    color: black; 

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;

	/*position: absolute;
	height: 70px;*/
	width: 100%;
}

#top_navbar li{
	position: relative;
	padding-top:20px;
	padding-right:20px;
	display: table-cell;
	left: 20px;
	margin-bottom: 10px;
}

#top_navbar a{
	font-size: 18px;
	color: black;
}

#top_navbar a:hover{
	text-decoration: underline;
}

#top_navbar i{
	font-size: 40px;
	color: #175E19;
	line-height: 65px;
	margin-left: 30px;
	cursor: pointer;
	
	display: none;
}

#lower_navbar{
	background-color: #2D7F2A;
}

#lower_navbar ul{

	list-style: none;
    height: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

#lower_navbar li{
	position: relative;
	height: 50px;
	width: 50px;
	margin: 10px;
	display: table-cell;
}

#lower_navbar a{
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	border-radius: 10px;
}

#lower_navbar a:hover{
	background-color: #E0F653;
}

#lower_navbar img{
	position: absolute;
	height: 100%;
	width: 100%;
}





footer{
	height: 157px;
  	position: relative;
  	background-color: #534D47;
	
}

#footer_text_container{
	margin: 0;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	-ms-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
}

#footer_text_container p{
	text-align: center;
	color: white;
	font-family: Arial;
}

#footer_logo_container{
	left: 40px;
	width: 80px;
	height: 80px;
	margin: 0;
  	position: absolute;
  	top: 50%;
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
}


