@charset "UTF-8";

.topnav {
  overflow: hidden;
  background-color: #0C1947;
  margin: 0 auto;
	
}

.topnav a {
  float: left;
  display: block;
  color: #FFFFFF;
  text-align: center;
  padding: 1rem 1.3rem;
  text-decoration: none;
  font-size: 1.2rem;
	line-height: 1.8rem;
}

.topnav a:hover {
    background-color: #91B8D9;
    color: #FFFFFF;
}

.topnav span {
  font-size: 1.7rem;
}

.active {
  background-color: #0295F9;
  color: white;
}

.topnav .icon {
  display: none;
}

@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 .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}