#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 0px;
  z-index: 1000;
}

.topnav {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  overflow: hidden;
  background-color: #8bd7f9;
  border-radius: 5px;
}

.topnav a {    
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 5px;
  transition: 0.4s;
}

.activated {
  background: radial-gradient(circle at 10% 20%, rgb(161, 255, 206) 0%, rgb(250, 255, 209) 90%);
  border-radius: 5px;
}

.topnav .icon {
  display: none;
  font-size: 19px;
  border-radius: 5px;
}

.dropdown {
  float: left;
  overflow: hidden;
  border-radius: 5px;
}

.dropdown .dropbtn {
  font-size: 17px;    
  font-weight: bold;
  border: none;
  outline: none;
  color: black;
  padding: 0px;
  background-color: #8bd7f9;
  font-family: inherit;
  margin: 0;
  border-radius: 5px;
  transition: 0.4s;
}

.dropdown .dropbtn a{
  padding: 14px 16px;
  margin: 0px;
}


.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(0deg, rgb(247, 247, 247) 23.8%, rgb(252, 221, 221) 92%);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: 0.4s;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
  color: white;
}

.dropdown-content a:hover {
  background: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 5px;
}

@media screen and (max-width: 1030px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1030px) {
  .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;
  }
}
