/*RESPONSIVE MENU*/
.responsive_btn{
    cursor: pointer;
    display: none;
    text-align: center;
    width: 40px;
	height:26px;
    position: absolute;
    right: 10px;
    top: 75%;
    margin: 0;
    z-index: 2;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    -ms-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_btn span{
    background: #029CEC;
    border-radius: 6%;
    display: block;
    height: 3px;
    width: 28px;
    position: relative;
    top: 50%;
    margin: -1.5px auto;
}
.responsive_btn span:before, .responsive_btn span:after{
    height: 100%;
    width: 100%;
    background: #029CEC;
    position: absolute;
    content: "";
    display: inline;
    left: 0;
}
.responsive_btn span:before{top: -6px;}
.responsive_btn span:after{bottom: -6px;}
.responsive_btn:hover span, .responsive_btn:hover span:before, .responsive_btn:hover span:after{background: #E42F1A;}
.responsive_nav{
    background: #111;
    box-shadow: 0 1px 3px 0 #666;
    width: 75%;
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    right: -75%;
    top: 0;
    transition: all 250ms ease-in-out 0s;
    z-index: 9999;
}
.responsive_nav ul {
    margin: 0;
    padding: 0;
}
.responsive_nav ul li {
    border-top: 1px solid #222;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.responsive_nav ul li a {
    color: #fff;
    display: block;
    font-size: 17px;
    padding: 7px 10px;
    transition: all 250ms ease-in-out 0s;
}
.responsive_nav ul li a:hover, .responsive_nav ul li a:focus, .responsive_nav ul li.active a {
    background-color: #029CEC ;
    color: #fff;
}
.responsive_nav ul ul {
    background: #f0f0f0 none repeat scroll 0 0;
    border-bottom: medium none;
    margin: 10px 23px;
	display: block !important;
}
.responsive_nav ul ul li a {
    color: #444;
    font-size: 15px;
}
.responsive_nav ul li a i {display: none;}
.responsive_nav ul ul li a:hover, .responsive_nav ul ul li a:focus {
    background-color: #ff9000 ;
    color: #222;
}
.nav_wrapper .container {position: relative;}
.res_overlay {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    bottom: 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 250ms ease-in-out 0s;
    visibility: hidden;
    width: 100%;
    z-index: 99999;
}
.responsive .res_overlay {
    opacity: 1;
    visibility: visible;
}
.responsive .responsive_nav {
    right: 0;
}
.nav > ul > li > ul.submenu{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	z-index:999;
	width:220px;
	background:url(../images/sub_menubg.png);
}
.responsive_nav > ul > li > ul.submenu > li a{
	display:block;
	padding:12px;
	color:#fff;
	font-size:13px;
	line-height:13px;
	text-transform:uppercase;
	-webkit-transition:all 250ms ease-in-out 0s;
	-o-transition:all 250ms ease-in-out 0s;
	-ms-transition:all 250ms ease-in-out 0s;
	-moz-transition:all 250ms ease-in-out 0s;
	transition:all 250ms ease-in-out 0s;
}
.responsive_nav > ul > li > ul.submenu > li{float:none; text-align:left;}
.responsive_nav > ul > li > ul.submenu > li a:hover{
	color:#fff;
	background:#029CEC ;
}.responsive_nav > ul > li > ul.submenu > li a{
	color:#fff;
	background:#333;
}


/* @media only screen and (min-width: 1024px) and (max-width: 1169px) {
	.container{width:1000px;}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.container{width:750px;}
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
	.container{width:570px;}
}
@media only screen and (min-width: 480px) and (max-width: 599px) {
	.container{width:450px;}
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
	.container{width:300px;}
}*/

@media only screen and (max-width: 767px) {
	.nav_menu{display: none;}
	.responsive_btn{display: block;}
}
