@charset "utf-8";
/* CSS Document */



.topnav {
  overflow: hidden; 
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 18px; 
}

.active {
  background-color:rgba(255,255,255,0.80);
  color: black;
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 18px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255,255,255,0.7);
    min-width: 200px;
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
	background-color: rgba(255,255,255,0.6);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
	background-color: rgba(255,255,255,0.8);
	color:black!important;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(222,222,222,0.2);
  color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 720px) {
  .topnav a/*:not(:first-child)*/, .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 720px) {
  .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 {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}