@import url('https://fonts.googleapis.com/css?family=Roboto');

body{
	font-family: 'Roboto', sans-serif;
}
/*----------multi-level-accordian-menu------------*/
.navbar-logo{
	padding: 0px;
	color: #fff;
}
.navbar-mainbg{
    width:100%;
    margin-top:2%;
	margin-left: 8%;
}
#navbarSupportedContent{
	overflow: hidden;
	position: relative;
}
#navbarSupportedContent ul{
	padding: 0px;
	margin: 0px;
}

#navbarSupportedContent li {
	list-style-type: none;
    border-right: 3px solid white;
	float: left;
}
#navbarSupportedContent ul li a{
    color: white;
    background-color: #0F6C73;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 12px 14px;
    transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border-bottom: 2px solid #236EA6;
}
    #navbarSupportedContent ul li a:hover {
        background-color: #86BBB1;
        color:white;
    }
#navbarSupportedContent>ul>li.active>a{
	color: black !important;
	background-color: #86BBB1;
    border-top: 2px solid #236EA6;
    border-right: 2px solid #236EA6;
    border-left: 2px solid #236EA6;
    border-bottom: none;
	transition: all 0.7s;
}
#navbarSupportedContent a:not(:only-child):after {
	content: "\f105";
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 14px;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	padding-right: 4px;
	vertical-align: middle;
	font-weight: 900;
	transition: 0.5s;
}
#navbarSupportedContent .active>a:not(:only-child):after {
	transform: rotate(90deg);
}

@media(min-width: 992px){
	.navbar-expand-custom {
	    -ms-flex-flow: row nowrap;
	    flex-flow: row nowrap;
	    -ms-flex-pack: start;
	    justify-content: flex-start;
	}
	.navbar-expand-custom .navbar-nav {
	    -ms-flex-direction: row;
	    flex-direction: row;
	}
	.navbar-expand-custom .navbar-toggler {
	    display: none;
	}
	.navbar-expand-custom .navbar-collapse {
	    display: -ms-flexbox!important;
	    display: flex!important;
	    -ms-flex-preferred-size: auto;
	    flex-basis: auto;
	}
}