/* MENU */

.page-header{
    width: 100%;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    background-color: white;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #fff;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #666;
  text-align: center;
  padding: 23px 16px;
  text-decoration: none;
  font-size: 14px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #e74f22;
  color: white;
}

/* Add an active class to highlight the current page */
.topnav a.active {
    background-color: white;
    color: white;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 8%;
}

/* Hide the link that should open and close the topnav on small screens */

.topnav .icon {
    display: none;
    font-size: 26px;
    padding: 14px 16px;
}

/* MEDIA QUERY */

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

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