@charset "utf-8";
/* CSS Document */

.ham-menu { display: inline-block; position: relative; margin: 8px 0px 4px 0px; } /* margin = (width-height)/2 */
.ham-menu, .ham-menu::before, .ham-menu::after { width: 35px; height: 3px; border-radius: 3px; background-color: rgba(210,240,220,1.00); }
.ham-menu::before, .ham-menu::after { content: ""; display: block; position: absolute; }
.ham-menu::before { bottom: 250%; } .ham-menu::after { top: 250%; }		
	
.dropbtn {
	margin-left: 5px;
	width: 50px;
	padding: 5px;
	border: 2px solid rgba(210,240,220,1.00);
	border-radius: 5px;
	background-color: #2A3B28;
	box-shadow: 3px 3px 10px #2A3B28
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
  border-radius: 0px 15px 15px 15px;
  min-width: 300px;
  margin-left: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 5;
}

.dropdown-content a {
  color: rgba(210,240,220,1.00);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: rgba(255,255,255,0.2);}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #ECDFC8; border-radius: 5px 5px 0px 0px;}
	
.phonebtn {
	margin-left: 5px;
	width: 200px;
	padding: 5px;
	border: 2px solid #6F4A38;
	border-radius: 15px;
	background-color: #2A3B28;
	text-align: center;
	color: #ECDFC8;
	box-shadow: 3px 3px 10px #2A3B28
}	
.phonebtn:hover {background-color: #ECDFC8; color: black; box-shadow: 3px 3px 10px #2A3B28; border: 2px solid #AF5C39}
	