@media only screen and (max-width: 959px) {

#menu-icon {
    height: 80px;
width: 60px;
    display: inline-block;
    float: right;
    margin: 0;
    position: relative;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#hamburger {
    height: 4px;
    left: 20px;
    margin-top: -1.5px;
    position: absolute;
    top: 50%;
    width: 20px;
    z-index: 32;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background: #444;
}

#hamburger::before {
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    top: -8px;
    width: 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background: #444;
}

#hamburger::after {
    bottom: -8px;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    width: 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background: #444;
}

.collapse {
    background: #fff!important;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.collapse #hamburger {
    background: none;
}

.collapse #hamburger::before {
    top: 0px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.collapse #hamburger::after {
    top: 0px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#menubarmobile {
    display: none;
    overflow: hidden;
    width: 100%;
	position: absolute;
	top: -1px;
	background: #fff;
	z-index: 100000;
}

#menubarmobile > ul {
    padding: 5px 25px;
    width: 100%;
	border-bottom: solid 3px #690;
	overflow: hidden;
}

#menubarmobile ul > li {
    text-align: left;
	border-bottom: solid 1px #e4e4e4;
	position: relative;
		-webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
	cursor: pointer;
}

#menubarmobile ul > li:last-of-type {
	border-bottom: none;
}


#menubarmobile ul ul {
	display: none;
	padding: 0 20px;
	margin:  0px 0 10px 0;
	border-bottom: none;
}


#menubarmobile ul li ul li {
    text-align: left;
    margin: 0px 0;
	border: none;
}

#menubarmobile ul li a {
    text-transform: uppercase;
    color: #364e05;
	text-decoration: none;
	font-size: 20px;
	padding: 10px 0;
	display: inline-block;
	width: 100%;
}

#menubarmobile ul li a.disable {
   pointer-events: none;
   cursor: default;
  }

#menubarmobile ul li ul li a {
    text-transform: capitalize!important;
	text-decoration: none;
	font-size: 18px;
}

span.touch-btn {
    float: right;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    width: 34px;
    height: 34px;
	line-height: 34px;
    margin: 0;
    padding: 0;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    background: #690;
	position: absolute;
	top: 3px;
	right: 0px;
	cursor: pointer;
}

span.touch-btn::after {
    font-family: arial,sans-serif;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
}

span.touch-btn::after {
    content: '+';
}

span.open-span::after {
    content: '-'!important;
}

}