nav {
float: right; 
padding: 0px; 
margin: 0px; 
z-index: 2;
}

nav ul {
	list-style: none;
	padding:0;margin:0;
}
nav li {
	float: left;
	position: relative;
	padding:0;margin:0;
}
nav li a,
nav li a:visited {
  display: block;
  font-size:18px;
  font-weight: 600;
  color: #373d41;
  padding-right:40px;
  text-decoration: none;
}
nav li:last-child a {
  padding-right:0px;
}
nav li a:hover,
nav li.active a,
nav li a.active
 {
  color: #f5822a;
  font-weight: 600;
  text-decoration: none;
}

/*
nav a::after {
	display:block;
	content:attr(title);
    font-weight: 700;
	height:0px;
	color:transparent;
	overflow:hidden;
	visibility:hidden;
     margin-top: -1px;
}
*/

nav li a:not(:only-child):after,
nav li a:visited:not(:only-child):after {
background: url(../img/menu-plus.png) no-repeat 0 0;
  display: inline-block;
  width: 29px;
  height: 28px;
 content: "";
  position: relative;
  top: 8px;
  left: 10px;
}
		
nav li li {
  min-width: 260px;
}

nav li li a {
  padding: 12px 20px 12px 40px;
  line-height: 20px;
  color: #fff!important;
  font-weight: 400!important;
  text-decoration: none;
}

nav li li a:hover {
 color: #f5822a!important;
}

nav ul li ul.nav-dropdown {
  display: none;
  position: absolute;
  left:-40px;
  z-index: 1;
  background-color: #373d41;
  padding: 12px 0px;

 opacity:0; 
}

nav ul li ul.nav-dropdown.visible {
  display: block;

    animation: appear 0.5s ease-in;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;  
}


@keyframes appear {
    0% {
        opacity: 0;
        flex: 0;
    }
    100% {
        flex-basis: auto;
        flex-grow: 1;
        opacity: 1;
        flex: 1;
    }
}


nav ul li:hover ul.nav-dropdown {
  /* display: block!important; */
 }

/* Mobile navigation */

.nav-mobile {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  width: 70px;
  height: 70px;
}

#nav-toggle {
  position: absolute;
  left: 0px;
  top: 0px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background-image: url(../img/menu-mobil.png); 
  background-position: center center ; 
  background-repeat: no-repeat;

}

.nav-mobile,
#nav-toggle {
  outline: none !important;
 -webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;  
}



@media only screen and (max-width: 1000px) {
  .nav-mobile {
    display: block;
  }

  nav {
   float: none; 
    width: 100%;
    padding:0;
	margin:0;
	position:absolute;
	top:100px;
	background-color: #373d41;
	z-index: 30;
  }
  nav ul {
    display: none;
	padding: 12px 0;
  }
  nav li {
    float: none;
	text-align: center;
	position: relative;
	border-bottom: 1px solid #474c50;
	  }
  nav li:last-child {
	border-bottom: none;
  }
  nav li a,  nav li a:visited {
    padding: 12px 0;
	font-size: 25px;
	font-weight: 400;
    line-height: 40px;
	color: #fff!important;
  }
  
  nav li a:hover
 {
  color: #f5822a!important;
  font-weight: 400;
  text-decoration: none;
}

  nav li a.active,
  nav li.active a
  {
	font-weight: 400;
	color: #f5822a!important;
  }
  

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
background: url(../img/menu-mobil-plus.png) no-repeat 0 0;
 content: "";
  position: relative;
  top: 12px;
  left: 10px;
  display: inline-block;
   width: 35px;
    height: 35px;
}

nav ul li a.active:not(:only-child):after,
nav ul li a.active:visited:not(:only-child):after {
background: url(../img/menu-mobil-minus.png) no-repeat 0 0;
 content: "";
  position: relative;
  top: 12px;
  left: 10px;
  display: inline-block;
   width: 35px;
    height: 35px;
}

  nav ul li ul.nav-dropdown {
    position: relative;
	display:none;
	left:0;
	background-color: #f5822a;
  }
  
    nav ul li ul.nav-dropdown.visible {
	display:block;
  }
  
  nav li  li {
  	border-bottom: 1px solid #f79b55;
	margin:0 50px;
  }
  
  nav li li:last-child {
  	border-bottom:none;
  }
  
  nav li li a, nav li li a:visited {
    padding: 12px 0;
	font-size: 25px;
	font-weight: 400;
    line-height: 40px;
	color: #fff!important;
  }
  
  nav li li a:hover {
   color: #373d41!important;
}
  
}
@media screen and (min-width: 1001px) {
  .nav-list {
    display: block !important;
  }
}






