/**Header Css**/
#header-wl, #header{
	width: 100%;
	/*height: 105px;*/
	background: #fff;
}
#header{
	height: 70px;
}
	.header-content{
		width:95%;
		height:auto;
		margin: 0 auto;
	}
	.header-left{
		width:23%;
		height: auto;
		float: left;
	}
	.header-left img {
		margin-top: 10px;
	}
	.header-middel{
		width:53%;
		height: 70px;
		float: left;
	}
	.header-right{
		width:24%;
		height: 70px;
		float: right;
	}
/*Header Middel Part*/
.header-middel ul {
  /*display: flex;*/
  flex-direction:row;
  align-items: start;
  list-style-type: none;
}
.header-middel ul li {
  padding: 25px 0;
  margin: 0 auto;
  font-weight: 600;
  float: left;
  margin-right: 20px;
}
.header-middel ul li a {
  font-family: Nunito-Regular, "OpenSans-Light", "Open Sans", Sans-serif, Arial;
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  padding: 4px 0;
  transition: 0.5s;
}
.header-middel ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 100%;
  left: 0;
  background: #FB7D17;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
}
.header-middel ul li a:hover {
  color: #95a5a6;
}
.header-middel ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.disabled a {
   pointer-events:none; 
   opacity:0.6;
}

ol, ul{
	margin-bottom: 0px !important;
}
.backBlueColor{
	background-color:#0889FF !important;
	z-index: 999;
}
