nav
{
	float:right;
    width: 100%;
    margin:9px 12px 0 0;
	/*-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;*/
}
/**,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/
.menu_item_bg{
    position: relative;
    float: left;
    margin-right: 45px;
}
nav .menu_item {
    font-weight: bold;
    position: relative;
    float: right;
    height: 38px;
    margin: 0;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    color: #008240;
    /*text-shadow: 0 0 1px rgba(51,51,51,0.1);
	font-family: "QuickSand-Medium";*/
    margin: 3px 0 0 36px;
    /*font-family: "SFUGillSans";*/
}
    nav .menu_item:hover{
        color:#000;
    }

    nav .menu_item:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 0;
        left: 0;
        bottom: 12px;
        background: rgba(0,130,64,0);
        -webkit-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
        transition: all 200ms linear;
        color: #000;
    }
nav .menu_item:focus:after, 
nav .menu_item:hover:after, 
nav .menu_item.selected:after{
    bottom: 6px;
    height: 3px;
    background: #008240;	
}
/*=============================================Sub Menu=============================================*/
.project_menu_item {
    position: relative;
    float: right;
}
.sub_menu_bg {
    position: absolute;
    top: 36px;   
	left: 18px; 
    background:rgba(18,18,18,0.6);
    padding: 0 20px 0 20px;
	width: 206px;
    height: 0;
    overflow: hidden;
    /*-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;*/
    /*display: none;*/
    z-index: 9;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;	
}
.project_menu_item:hover .sub_menu_bg{
    height: auto;
    padding: 2px 20px 18px 20px;
}
.sub_menu_bg a {
    position: relative;
    float: left;
    width: 100%;
	height:36px;
    line-height: 46px;
	color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);	
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.sub_menu_bg a:after {
    position: absolute;
    content: '\f0da';
    right: 0;
    top: 2px;
    font-size: 9px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
}
.sub_menu_bg a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 36px;
    left: 0;
    top: 0;
    border-bottom: 1px solid #fff;
    -webkit-transition: width 300ms linear;
    -moz-transition: width 300ms linear;
    -o-transition: width 300ms linear;
    -ms-transition: width 300ms linear;
    transition: width 300ms linear;
}
.sub_menu_bg a:hover {
    color: #FFF;
}
.sub_menu_bg a:hover:before,
.sub_menu_bg a.active {
    width: 100%;
}
/*-----------------------Mobile Menu ------------------*/
.btn10 {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 6px;
  right: 0px;
  margin:16px 1px 0 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
    z-index: 999;
}
    .btn10 .icon {
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        height: 2px;
        width: 26px;
        top: 0;
        background-color: #00B359;
    }
        .btn10 .icon:before {
            -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
            position: absolute;
            height: 2px;
            width: 26px;
            background-color: #00B359;
            content: "";
            top: -8px;
        }
        .btn10 .icon:after {
            -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
            position: absolute;
            height: 2px;
            width: 26px;
            background-color: #00B359;
            content: "";
            top: 8px;
        }
.show .btn10 .icon {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: rotateZ(-180deg);
          transform: rotateZ(-180deg);
}
.show .btn10 .icon:before {
  -webkit-transform: rotateZ(-45deg) scaleX(0.55) translate(-11px, -3.2px);
          transform: rotateZ(-45deg) scaleX(0.55) translate(-11px, -3.2px);
}
.show .btn10 .icon:after {
  -webkit-transform: rotateZ(45deg) scaleX(0.55) translate(-11px, 3.2px);
          transform: rotateZ(45deg) scaleX(0.55) translate(-11px, 3.2px);
}
.btn10:hover {
  cursor: pointer;
}