/* Header/Logo Title */
.header{
  text-align: center!important;
  background: white;
  position:relative!important;
  width: 100%;
}

/* CSS for Responsive Navigation Bar */
.topnav {
  overflow: hidden;
  background-color: rgb(51,51,51);
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Avenir Next', sans-serif;
}

.topnav a:hover {
  background-color: rgb(90,124,105);
  color: white;
}

.topnav a.active {
  background-color: rgb(90,124,105);
  color: white;
}

.topnav .icon {
  display: none;
}

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

@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;
  }
}

/* CSS for Footer */	
footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #333;
   color: white;
   text-align: center;
   font-family: Avenir Next;
   padding: 40px 0 !important;
}