
.brand {
   font-family: inherit;
   font-size: 1.6rem;
   font-weight: 700;
   line-height: 1.25;
   letter-spacing: -1px;
   text-transform: uppercase;
   color: var(--color-pink-500);
}
 .header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: auto;
   z-index: 100;
   margin: 0 auto;
   box-shadow: var(--shadow-medium);
   background-color: var(--color-white-100);
}
.menu_background{
  background: rgb(46 125 204 / 85%);
}
 .wrapper {
   display: flex;
   align-items: center;
   /* justify-content: space-between; */
   column-gap: 1rem;
   row-gap: 2rem;
   width: 100%;
/*   height: 4rem;*/
   margin: 0 auto;
}
 @media screen and (max-width: 992px) {
   .navbar {
     position: fixed;
     top: 0;
     left: -100%;
     width: 80%;
     height: 100%;
     z-index: 50;
     opacity: 0;
     overflow-y: auto;
     visibility: hidden;
     box-shadow: var(--shadow-medium);
     background-color: #fff;
     transition: all 0.5s ease;
  }
   .navbar.active {
     left: 0rem;
     opacity: 1;
     visibility: visible;
  }
}
 .menu-item {
   position: relative;
   display: inline-block;
   margin: 0 0.9rem;
}
 .menu-link {
/*   display: flex;*/
   justify-content: center;
   align-items: center;
   column-gap: 0.25rem;
   font-family: inherit;
   font-size: 1rem;
   font-weight: 500;
   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: var(--color-pink-500);
}
 @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: auto;
     padding: 1rem 0;
  }
   .menu-item {
     display: block;
     margin: 0 auto;
  }
  .menu-item  a{
    color: #000;
  }
   .menu-link {
     justify-content: space-between;
     /* padding: 0.5rem 1.25rem; */
     color: #000;
  }
  
}
 .submenu {
   position: absolute;
   top: 3.35rem;
   left: -2rem;
/*   min-width: 30rem;*/
   height: auto;
   padding: 0 1rem 1rem;
   opacity: 0;
   visibility: hidden;
   transform: translateY(1rem);
   background: #1a4eaae6;
   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
   transition: all 0.3s ease-in-out;
   white-space: nowrap;
}
 .submenu-item {
   display: block;
   margin-top: 0.75rem;
   border-bottom: 1px solid rgba(255,255,255,0.1);
}
 .submenu-link {
   font-family: inherit;
   font-size: 1rem;
   font-weight: 500;
   line-height: inherit;
   cursor: pointer;
   color: #fff;
   transition: all 0.35s ease;
}
 .submenu-link:hover {
   outline: none;
   color: #6ef0d2;
}
 @media only screen and (max-width: 992px) {
   .submenu {
      position: relative;
      top: 0.5rem;
      left: 0.50rem;
      width: 91%;
      max-height: 0;
      padding: 0px;
      border: none;
      outline: none;
      opacity: 1;
      overflow: hidden;
      visibility: visible;
      transform: translateY(0px);
      box-shadow: none;
      margin-bottom: 1rem;
      /* background: transparent; */
  }
    
}
 .burger {
   position: relative;
   display: none;
   cursor: pointer;
   user-select: none;
   width: 1.6rem;
   height: 1.15rem;
   opacity: 0;
   visibility: hidden;
   background: transparent;
}
 .burger-line {
   position: absolute;
   display: block;
   right: 0;
   width: 100%;
   height: 2.1px;
   opacity: 1;
   border: none;
   outline: none;
   border-radius: 1rem;
   background: #fff;
}
 .burger-line:nth-child(1) {
   top: 0px;
}
 .burger-line:nth-child(2) {
   top: 0.5rem;
   width: 70%;
}
 .burger-line:nth-child(3) {
   top: 1rem;
}
 @media only screen and (max-width: 992px) {
   .burger {
     display: block;
     opacity: 1;
     visibility: visible;
  }
}
 .overlay {
   position: fixed;
   top: 0;
   left: 0;
   height: 100%;
   width: 80%;
   z-index: 9;
   opacity: 0;
   visibility: hidden;
   transition: all 0.35s ease-in-out;
   background-color: rgb(0 0 0 / 0%);
}
 @media only screen and (max-width: 992px) {
   .overlay.active {
     display: block;
     opacity: 1;
     visibility: visible;
  }
}
 

nav{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;
  height: 70px;*/
  /*background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
  z-index: 99;
}
nav .navbar{
  /*height: 100%;
  max-width: 1250px;
  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: #fff;
  text-decoration: none;
  font-weight: 600;
}
.navBar_icon i {
    font-size: 20px !important;
}
nav .navbar .nav-links{
/*  line-height: 70px;*/
  height: 100%;
}
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:#000000;
  font-size: 15px;
  font-weight: 500;
}
.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: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 50px;
  left: 0;
  line-height: 40px;
  background:#1a4eaae6;
  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);
}
.navbar .links li .sub-menu a{
  color: #fff;
  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: #fff;
  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: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  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:920px) {
  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:800px){
  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:  #3E8DA8;
    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: #fff;
    }
  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%;
} 
}


@media (min-width: 1200px) and (max-width: 1400px) {
  nav .navbar .links li {
    padding: 0 8px;
  }
  .nav-link {
    padding-left: 0px !important;
}

}  

@media screen and (min-width: 1100px) and (max-width: 1400px){
  .menu-item {
      /* margin: 0rem 1rem; */
      margin: 0 3px;
  }
  .menu-link {
      font-size: 1rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1100px){
.menu-item {
      margin-left: 0.5rem;
  }
  .menu-link {
    font-size: 0.9rem;
}
  .navBar_icon {
    font-size: 15px;
    width: 23px;
}
.minister img {
    width: 200px;
    height: auto;
}
}
@media screen and (min-width: 768px) and (max-width: 992px){

.minister img {
    width: 160px;
    height: auto;
}
}
@media screen and (min-width: 300px) and (max-width: 480px){
  .navbar {
    width: 275px !important;
}

}
@media screen and (min-width: 300px) and (max-width: 992px){
  .menu_background {
    padding: 10px 0px;
}
}
/* .odia_menu ul li{
  margin: 0 0.6rem;
  padding: 3px 0px;
} */



 /* outer submenu */

 .submenu {
  position: absolute;
 
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.submenu .submenu {
  left: 100%;  
  top: 0;   
  margin-left: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease-in-out;
}

.submenu-item:hover > .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu-item {
  position: relative;
}

.submenu-link {
  /* padding: 7px 13px; */
  text-decoration: none;
  display: block;
}

/* .submenu-link:hover {
  background-color: #f1f1f1;
} */


@media only screen and (max-width: 992px) {

  .submenu {
    position: relative;
    
    min-width: 100%;
    box-shadow: none;
    z-index: 1;
  }

  .submenu .submenu {
    /* left:0rem;
    top: 0;
    width: 100%;
    margin-left: 0;
    opacity: 3 !important;
    visibility: visible !important; */

    left: 0rem;
    top: 0;
    width: 100%;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
  }
  

  .submenu > .submenu {
      margin-top: -1rem; 
  }
  .icon_cust{
    color: #fff;
  }
  .outer_submenu{
    width: 100%;
  }
  .menu_cust{
    display: flex;
  }
  .cust_scroll {
    overflow-y: auto;
    transition: max-height 0.3s ease-in-out;
  }
  
}
 .menu_cust_i{
  display: flex;
  justify-content: space-between;
 }
/* end */



