.toggleMenu {
    display:  none;
     
    border: solid 1px #ff9b24;
    padding: 10px 15px;
    color: #fff;
    margin-top: 10px; 
    margin-right: 12px; 
    float: right;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    background: #ff9b24;
}
.nav2 {
    list-style: none;
     *zoom: 1;
     /*background:#175e4c;*/
}
.nav2:before,
.nav2:after {
    content: " "; 
    display: table; 
}
.nav2:after {
    clear: both;
}
.nav2 ul {
    list-style: none;
    width: 9em;
}
.nav2 a {
    padding: 10px 15px;
    margin: 0;
    font-size: 15px;
    font-weight:600 !important;
    color:#57575a;
    
    
}
.nav2 a:hover { color: #f96b35; }




.nav2 li {
    position: relative;
}
.nav2 > li {
    float: left;
  /*  border-top: 1px solid #104336;*/
}
.nav2 > li > .parent {
    /*background-image: url("../images/downArrow.png");*/
    background-repeat: no-repeat;
    background-position: right;
}
.nav2 > li > a {
    display: block;
}
.nav2 li  ul {
    position: absolute;
    left: -9999px; 
    width: 250px;
    
    border-top: 2px solid#f96b35;
    background: var(--colorWhite);
     
    box-shadow: var(--boxShadow);
    


}
.nav2 > li.hover > ul {
    left: 0;  
}
.nav2 li li.hover ul {
    left: 100%;
    top: 0;
}
.nav2 li a.active {
    color: #f96b35;
}
 

.nav2 li li a {
    display: block;
    background: #fff;
    position: relative;
    z-index:100;
    color:#57575a;
    font-size: 14px;
     
}
.nav2 li li li a {
    /*background:#249578;*/
    z-index:200;
    /*border-top: 1px solid #1d7a62;*/
}

 

@media screen and (max-width: 768px) {
  .nav2 { background: #fff; }
    .active {
        display: block;
    }

.nav2 li  ul { 
    width:100%; border-top: none;
    background:none;
     box-shadow: none;
  }
.nav2 li li a {
    display: block;
    background:#f7f7f7;
    position: relative;
    z-index: 100;
   color: #6e6e6e !important;
    font-size: 14px;
    padding: 5px 27px;
}

.nav2 i{ float: right; }

    .nav2 > li {
        float: none;
    }
    .nav2 > li > .parent {
        background-position: 95% 50%;
    }
    .nav2 li li .parent { 
        /*background-image: url("images/downArrow.png");*/
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav2 ul {
        display: block;
        width: 100%;
    }
.nav2 li li.hover ul li { padding: 2px 13px; }


   .nav2 > li.hover > ul , .nav2 li li.hover ul {
        position: static;
    }

}