.topnav2 {
  overflow: hidden;
  background-color: #000;

}

.topnav2 a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 26px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Titillium Web', sans-serif;
}

.active2 {
  background-color: #00a0e3;
  color: white;
}

.topnav2 .icon {
  display: none;
}

.dropdown2 {
  float: left;
  overflow: hidden;
  
}

.dropdown2 .dropbtn2 {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  margin: 0;
}

.dropdown-content2 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content2 a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav2 a:hover, .dropdown2:hover .dropbtn2 {
  background-color: #555;
  color: white;
  text-decoration:none;
}

.dropdown-content2 a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown2:hover .dropdown-content2 {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav2 a:not(:first-child), .dropdown2 .dropbtn2 {
    display: none;
  }
  .topnav2 a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav2.responsive {position: relative;}
  .topnav2.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav2.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav2.responsive .dropdown2 {float: none;}
  .topnav2.responsive .dropdown-content2 {position: relative;}
  .topnav2.responsive .dropdown2 .dropbtn2 {
    display: block;
    width: 100%;
    text-align: left;
  }
}