@charset "utf-8";
/* CSS Document */

 .dropbtn {
	border: none;
	cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
	background-color: #05acd6;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #05acd6;
	min-width: 300px;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);/*margin-top:52px;*/
	z-index:999;
	text-align:left;
 }
.dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover {
	color: black;
	background-color: #05acd6;
}
.show {
	display:block;
	 z-index: 2;
}


 @media only screen and (max-width: 766px) {

section.navigation-section {
  width: 100%;
}
.dropdown-content {
  position: relative;
  text-align: center;
  width: 100%;
}
 }