/* html {
  scroll-behavior: smooth;
} */

.topnav {
  overflow: hidden;
  background-color: #111011;
  position:fixed;
 z-index:100; 
  width:100%;
  top:0px;
  border-bottom: solid 1px #333;
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
}

.topnav a:hover {
  background-color: #FFF;
  color: black;
}

.topnav a.active {
  background-color: #A02723;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  /* .topnav span:not(:first-child) {display: none;} */
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: fixed;
    width:100%;
    z-index:100;
  top:0px;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}