header#header {
    position: sticky;
    z-index: 9999;
	top: 0;
}
header#header nav{
/*   position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
	padding: 10px 0px;
}
nav .navbar{
  height: 100%;
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
/*   padding: 0 50px; */
}
/* .navbar .logo a{
  font-size: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
} */
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
.sub-menu .arrow {
    transform: rotate(270deg);
}
nav .navbar .links {
    display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000;
  font-size: 20px;
  font-weight: 400;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: normal;
  text-align: center;
  display: inline-block;
  color: #000;
  transition: all 0.3s ease;
}
nav .navbar .links > li .arrow {
    line-height: inherit;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fff;
/*   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
	    min-width: 180px;
}
.navbar .links li .sub-menu a{
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #ededed;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #ededed;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:991px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:991px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #fff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #000;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}
.logo a img {
    height: 75px;
	transition: 0.5s ease-in-out;
}
/* header.header.shrink .logo a img {
    transform: scale(0.8);
    transform-origin: bottom;
} */
.nav-links {
    display: flex;
    align-items: center;
}
.sub-menu > li > span i {
    height: 20px !important;
    line-height: 20px !important;
}
.sub-menu > li > span{
	width: 100%;
	display: flex;
	justify-content: space-between;
	    align-items: center;
}


section.history_main .container .history_row:last-child .history_right:after {
    display: none;
}

ul.links > li > i {
    margin-left: 5px;
}
ul.links > li:hover > i {
    transform: rotate(180deg);
}
ul.links li i {
    transition: 0.7s;
}

li.current-menu-parent > i {
    color: var(--blue) !important;
}
li.current-menu-parent > a {
    color: var(--blue) !important;
}
ul.links > li > a , ul.links > li > i{
	transition: 0.7s;
}

ul.links > li > a[aria-current="page"] {
    color: var(--blue) !important;
}

	/* CSS FOR INSVESTOR MEGA MENU */
@media (min-width:991px){
	ul.links > li > ul li:hover i {
    color: #fff !important;
}
	.sub-menu li:hover > a {
    color: #fff !important;
}
.sub-menu li:hover > span > a {
    color: #fff !important;
}
.sub-menu li:hover > span > i {
    color: #fff !important;
}
.sub-menu li:hover {
    background: var(--blue);
}
.navbar .nav-links ul.links li.invester_ul:hover ul {
    display: grid;
}

.navbar {
    position: relative;
}
.navbar .nav-links ul.links li.invester_ul ul {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    top: 80px;
	width: 77%;
    padding-top: 0px;
	padding-bottom: 10px;
	right: 0;
	left: auto;
}
.navbar .nav-links ul.links li.invester_ul {
    position: static;
}
.navbar .links li.invester_ul .sub-menu li {
    overflow: hidden;
}
	ul.links > li:hover > a{
	 color: var(--blue);
}
ul.links > li:hover > i{
	 color: var(--blue) !important;
}
}
header#header ul#menu-main-navigation button.sub-menu-toggle {
    display: none !important;
}