/*
 * navigation
 */
.topnav {
  overflow: visible;
  background-color: #14467b;
  padding-left: 50px;
  padding-right: 50px;
}

.topnav::after {
  content: "";
  display: table;
  clear: both;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.topnav-right {
  float: right;
}

.topnav-left {
  float: left;
}

.topnav a:hover {
  color: #37c8ff;
  font-weight: bold;
}

.topnav a.active {
  color: #37c8ff;
  font-weight: bold;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav {
    padding: 0px;
  }

  .topnav-right {
    float: left;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}