
  
  
  .brand {
	width: auto;
	height: 152px;
	padding: 10px 0;
	-webkit-transition: all .3s ease-in-out;
  }
  .brand img {
	width: auto;
	height: 100%;
  }
  
  .header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 100;
	margin: 0 auto;
	background-color:transparent;
	
  }
  /* .logo-sticky {
	display: none;
  }
  .header.sticky .navbar {
	padding: 15px 0;
  }
  .header.sticky .logo-sticky {
	display: block;
    position: absolute;
    height: 120px;
    width: auto;
    top: 0px;
    background: #fff;
    padding: 8px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  }
  .header.sticky .logo-regular {
	display: none;
  }
  .header.sticky {
	position: fixed; 
	top: 0;
	background-color:#fff; 
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
	border-bottom:none;
  }
  .header.sticky .menu-link {
	color: #212121;
  }
  .header.sticky .brand {
	width: 50px;
	-webkit-transition: all .3s ease-in-out;
  } */
  .nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	-moz-column-gap: 1rem;
		 column-gap: 1rem;
	row-gap: 2rem;
	width: 100%;
	margin: 0 auto;
  }
  .navbar {
	margin-top: -50px;
  }
  @media screen and (max-width: 992px) {
	.navbar {
	  position: fixed;
	  top: 0;
	  left: -100%;
	  width: 75%;
	  height: 100%;
	  z-index: 10;
	  opacity: 0;
	  overflow-y: auto;
	  visibility: hidden;
	  background-color:#fff;
	  transition: all 0.5s ease;
	}
	.navbar.active {
	  left: 0rem;
	  opacity: 1;
	  visibility: visible;
	}
  }
  
  .menu-item {
	position: relative;
	display: inline-block;
	margin-left: 1.5rem;
  }
  .menu-link {
	display: flex;
	justify-content: center;
	align-items: center;
	-moz-column-gap: 0.25rem;
		 column-gap: 0.25rem;
	font-family: inherit;
	font-size: 18px;
	font-weight: 600;
	line-height: inherit;
	cursor: pointer;
	text-transform: capitalize;
	color: #fff;
	transition: all 0.3s ease-in-out;
  }
  .menu-link > i.bx {
	font-size: 1.35rem;
	line-height: 1.5;
	color: inherit;
  }
  .menu-link:hover {
	outline: none;
	color:#0983CE !important;
  }
  @media only screen and (min-width: 993px) {
	.menu-dropdown:hover > .submenu {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
	}
  }
  @media only screen and (max-width: 992px) {
	.menu {
	  width: 100%;
	  height: 100%;
	  padding: 1rem 0;
	}
	.menu-item {
	  display: block;
	  margin: 0 auto;
	}
	.menu-link {
	  justify-content: space-between;
	  padding: 0.5rem 1.25rem;
	  color: #212121;
	}
  }
  
  .submenu {
	position: absolute;
	top: 2.35rem;
	left: -2rem;
	min-width: 13rem;
	height: auto;
	padding: 0 1rem 1rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(1rem);
	border-radius: 0 0 0.25rem 0.25rem;
	border-top: 2px solid #0983CE;
	
	background-color: #fff;
	transition: all 0.3s ease-in-out;
  }
  .submenu-item {
	display: block;
	margin-top: 0.75rem;
  }
  .submenu-link {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: inherit;
	cursor: pointer;
	color: #212121;
	transition: all 0.35s ease;
  }
  .submenu-link:hover {
	outline: none;
	color:#0983CE;
  }
  @media only screen and (max-width: 992px) {
	.submenu {
	  position: relative;
	  top: -0.5rem;
	  left: 2.5rem;
	  width: 100%;
	  max-height: 0;
	  padding: 0px;
	  border: none;
	  outline: none;
	  opacity: 1;
	  overflow: hidden;
	  visibility: visible;
	  transform: translateY(0px);
	  box-shadow: none;
	  background: transparent;
	}
  }
  
  .burger {
	position: relative;
	display: none;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	width: 2rem;
	height: 2rem;
	opacity: 0;
	visibility: hidden;
	background: transparent;
  }
  .burger-line {
	position: absolute;
	display: block;
	right: 0;
	width: 100%;
	height: 3px;
	opacity: 1;
	border: none;
	outline: none;
	border-radius: 1rem;
	background: #fff;
  }
  /* .header.sticky .burger-line {
	background: #212121;

  } */
  .burger-line:nth-child(1) {
	top: 0px;
  }
  .burger-line:nth-child(2) {
	top: 0.8rem;
	width: 70%;
  }
  .burger-line:nth-child(3) {
	top: 1.5rem;
  }
  @media only screen and (max-width: 992px) {
	.burger {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	}
  }
  
  .overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease-in-out;
	background-color: rgba(0, 0, 0, 0.65);
  }
  @media only screen and (max-width: 992px) {
	.overlay.active {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	}
  }

  .header-right {
	margin-left: 12px;
  }
  .header-right ul{
	margin: 0 !important;
	padding: 0;
  }
  .header-right ul li{
	list-style: none; 
	display: inline-block;
  } 
  
  .header-right ul li a {
	display: inline-block;
	padding: 6px;
	color: #fff;
  }
  .header-right ul li a:hover {
	display: inline-block;
	padding: 6px;
	color: #0983CE;
  }
  /* .header.sticky .header-right ul li a {
	color: #212121;
  } */
  ul {
	margin-bottom: 0 !important;
  }