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

.nav-collapse > ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse {
	 background-color: #fff;
    max-height: 9999px;
    position: absolute;
    top: 115px;
    width: 100%;
}

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

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
	background-color: #00aabc;
    height: 5px;
    position: absolute;
    right: 40px;
    text-indent: -3000px;
    top: 35px;
    width: 40px;
}
.nav-toggle:before {
	background-color: #00aabc;
	height: 5px;
	position: absolute;
	right: 0px;
	top: -10px;
	text-indent: -3000px;
	width: 40px;
	content: " ";
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-o-transition: 0.1s;
	transition: 0.1s;
}
.nav-toggle:after {
	background-color: #00aabc;
	height: 5px;
	position: absolute;
	right: 0px;
	bottom:-10px;
	text-indent: -3000px;
	width: 40px;	
	content:" ";
	-webkit-transition: 0.1s;
  	-moz-transition:  0.1s;
  	-o-transition:  0.1s;
  	transition:  0.1s;
}

.nav-toggle.active {
	background-color: transparent;
}
.nav-toggle.active:before {
	background-color: #00aabc;
	right: 5px;
	top: 0px;
	width: 30px;	
	-webkit-transform: rotate(45deg);
  	-moz-transform:    rotate(45deg);
  	-ms-transform:     rotate(45deg);
  	-o-transform:      rotate(45deg);
  	transform:         rotate(45deg);
}
.nav-toggle.active:after {
	background-color: #00aabc;
	right: 5px;
	bottom: 0px;
	width: 30px;	
	-webkit-transform: rotate(-45deg);
  	-moz-transform:    rotate(-45deg);
  	-ms-transform:     rotate(-45deg);
  	-o-transform:      rotate(-45deg);
  	transform:         rotate(-45deg);
}


@media screen and (min-width: 1161px) {
  .js .nav-collapse {
    position: relative;
	overflow:visible;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
  .nav-collapse > ul {
	  max-width: 825px;
  }
  .nav-collapse li {
	  width: 20%;
  }
  .nav-collapse li li{
	  display: inline-block;
	  width: 244px;
  }
  
.nav-collapse {
	background-color: #0ff;
    max-height: 9999px;
    position: relative;
    top: 0px;
    width: 100%;
}

}
