/* CSS Document */


.topnav {
  overflow: hidden;
  background-color: #06171d;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  border-top-left-radius:0px 0px;border-top-right-radius:20px 20px;border-bottom-right-radius:0px 0px;border-bottom-left-radius:20px 20px;
  border-width: 1px;
  border-bottom: solid #637d83;
  border-right: solid #637d83;
  border-color: #213a41;
  font-size:22px;
  font-weight:400;
  font-family: 'Poiret One', sans-serif;
  color: #D7C378;
  margin-top: 169px;
  
}

.topnav a {
  float: left;
  display: block;
  color: #D7C378;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 22px;
  
}

.topnav a:hover {
  background-color: #4B676E;
}

.topnav a.active {
  background-color: #466269;
}

/*mobil hamburger menu*/
.topnav .icon {
  display: non;
}



@media screen and (min-width: 601px) and (max-width: 1080px) {
  .topnav a {
  padding: 14px 10px;
  }
  
  .topnav {
  margin-top: 123px;
  
}
}



@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
	background: #06171d url(../img/icon-hamburger-open.svg) no-repeat left 100%;
  }


  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
	background: #06171d url(../img/icon-hamburger-close.svg) no-repeat left 100%;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .topnav {
  margin-top: 123px;
  
}
}




/*animated menu icon*/
.container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
/*animated menu icon*/