@charset "utf-8";
/* CSS Document */

.intMenu{
    display: none;
}

.topnav {
  overflow: hidden;
  background-color: var(--primary);
	position: fixed;
	width: 100%;
	top: 0;
}

.topnav a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
	transition: .5s;
}

.topnav a:hover {
  background-color:var(--second);
  color:var(--second-light);
}

.topnav a.active {
  background-color:var(--second);
  color: var(--third);
}

.topnav .icon {
  display: none;
}

#bodyMenuFixedTop{
	margin-top:50px;
}

	
@media screen and (max-width: 768px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {position:fixed;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	
	#icon-hamburger{
		max-width:20px;
	}
    
    a.icon{
        background-color:var(--primary);
    }
    a.icon:hover{
        background-color:var(--primary);
    }
	
	
}
