/*! responsive-nav.js 1.0.25 by @viljamis */

.nav-collapse{
	width: 100%;
	display: block;
	border-bottom: 5px solid #000;
}

.nav-collapse ul {
    font-family: "fira-sans",sans-serif;
    font-size: 14pt;
	font-weight: 300;
	line-height: 24pt;
	font-style: normal;
	color: #fff;
	padding: 20px 30px 30px 30px;
	width: 100%;
	display: block;
	list-style: none;
}

.nav-collapse li {
  width: 100%;
  display: block;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
  background-color: rgba(25, 25, 25, .75);
}

.nav-collapse.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -moz-user-select: none;
    background: url("../../img/hamburger.png") no-repeat ;
    padding-right: 10px;
    display: block;
    float: right;
    height: 60px;
    overflow: hidden;
    text-indent: -9999px;
    width: 60px;
    margin-top: 0px;
}

@media screen and (min-width: 767px) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}
