body {
    font-family: 'Lato',sans-serif;
    font-size: 15px;
    line-height: 1.42857143;
    color: #6b6864;
    background-color: #fff;
	margin: 0;
}
/* Header buttons
.btn-nav {
	color: white;
	padding: 1%;
	padding-left: 3%;
	padding-right: 3%;
}
End Header buttons */

.navigation {
  overflow: hidden;
  background-color: #66c8ee; /*Blue*/
  
}

.topnav {
  overflow: hidden;
  background-color: #66c8ee; /*Blue*/
  margin-left:auto;
  margin-right:auto;
  font-weight: 700;
  text-transform: uppercase;
}

.topnav a {
  float: left;
  display: block;
  color: #45403c; /*Black*/;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
  color: #fff;
}

.dropdown-nav {
  float: left;
  overflow: hidden;
}

.dropbtn i {
  display:none;
}

.dropdown-nav .dropbtn {
  font-size: 15px;    
  border: none;
  outline: none;
  color: #45403c; /*Black*/;
  padding: 14px 16px;
  background-color: inherit;
  margin: 0;
  font-weight: 700;
}

.dropdown-nav-content {
  display: none;
  position: absolute;
  background-color: #66c8ee; /*Blue*/
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding-left: 1%;
  padding-right: 1%;
}

.dropdown-nav-content a {
  float: none;
  color: black;
  padding: 12px 0px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 400;
  
}
.dropdown-nav-content a:not(:last-child){
	border-bottom:1px solid #e5e5e5;
}

.topnav a:hover, .dropdown-nav:hover .dropbtn {
  /*background-color: #555;*/
  color: #00a4e3; /*Blue Hover*/
  
}

.dropdown-nav-content a:hover {
  /*background-color: #66c8ee; /*Blue*/
  color: #00a4e3; /*Blue Hover*/
}

.dropdown-nav:hover .dropdown-nav-content {
  display: block;
}

@media screen and (max-width: 800px) {
.topnav a {
  /*padding: 9px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;*/
}	
	
  .topnav a, .dropdown-nav .dropbtn {
    display: none;
  }
  
  .dropbtn i {
  display:inline-block;
}
  
  .topnav a.icon {
    display: block;
	position:absolute;
	right: 3%;
	margin-top: 0.5%;
	
	padding: 9px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  }
  
  /* Header buttons
.btn {
	color: white;
	padding: 11px 17px;
}
End Header buttons */
  
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown-nav {float: none;}
  .topnav.responsive .dropdown-nav-content {position: relative;}
  .topnav.responsive .dropdown-nav .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}