.toggleMenu {
    display:  none;
    background:#f39314;
    padding: 5px 10px;
    color: #000;
	float:right;
	margin-bottom:10px;
	margin-top:10px;
}
.toggleMenu i:focus, i:hover{
	color:#000;
}
#logo{
	z-index: 1;
    position: absolute;
}
.nav {
    list-style: none;
    float:right;
	margin-top:10px;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 13em;
}
.nav a {
    padding: 10px 15px;
    color:#fff;
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
    z-index: 1;
    margin-right: 8px;
}
.nav > li > .parent {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
    font-weight: 600;
    padding: 10px 15px;
    color: #fff;
    font-family: "Exo", sans-serif;
    font-size: 15px;
    transition: all .25s ease;
    cursor: pointer;
}
.nav > li > a {
    display: block;
    font-size: 15px;
    font-weight: 600;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
	margin:0;
	padding:0;
}
.nav li li.hover ul {
    left: 100%;
	top: 0;
    margin: 0;
    padding: 0;
}
.nav li li a {
    display: block;
    background: #0098da;
    position: relative;
    z-index:100;
    border-top: 1px solid #175e4c;
    font-weight: 600;
    padding: 5px 10px;
    color: #fff;
    font-family: "Exo", sans-serif;
    font-size: 15px;
    transition: all .25s ease;
    cursor: pointer;
}
.nav li li li a {
    background: #539dbd;
    z-index: 200;
    border-top: 1px solid #1d7a62;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
	.nav {
		background: #f39314;
	}
    .nav > li {
        float: none;
		width:100%;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url("../images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }
	.btn.btn-icon i {
		border-left: 1px solid rgba(255, 255, 255, 0.09);
		padding-left: 5px;
	}
}