.disable-scrolling {
  overflow: hidden;
}

.disable-interaction {
  pointer-events: none;
  opacity: 0;
}

/* .ift-header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  } */
.ift-header-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* to ensure it stays above other content */
    transition: transform 0.3s ease;
  }


.sticky {
/*   position: fixed;
  top: -0;
  width: 100%;
  z-index: 100; */
}


.colored {
/*   background-color: #fff ; */
}
.menu-opened {
/* background-color: #261B6E !important; */
  transition:0s !important;
}

.ift-header-container {
/*   position: fixed; */
/*   position:relative; */
  top: 0;
  width: 100%;
  background-color: #fff;
  transition: transform 0.3s ease;
  z-index: 9999;
}

.header-color .ift-header-container {
  background: #261B6E;
}

/* Sticky menu styles */
.ift-header-container.sticky {
  background-color: #fff;
}


.ift-header-wrapper {
  max-width:1320px;
  margin:0 auto;
  padding-left:48px;
  padding-right:48px;
/*   padding: 16px 48px; */
  padding:16px 20px;
  display: flex;
  justify-content: space-between;
}



.ift-header-logo {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ift-main-menu-list {
  display:flex;
  align-items:center;
  list-style-type: none;
  margin: 10px 0px;
  gap:40px;
}

.ift-main-menu-list li {
  position:relative;
  margin: 0;
/*   padding: 20px; */
/*   padding: 18px; */
  padding:21px 0;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}


.ift-main-menu-list li a {
  color: #231F20;
  font-weight:500;
  line-height:28px;
  font-size:18px;
  text-decoration:none;
  
}

@media only screen and (min-width:1280px) {
  .ift-main-menu-list li:hover .menu-dropdown {
    display: block; 

  }
}



.list-item-dropdown {
  cursor:pointer;
}

.list-item-dropdown a {
  color: #231F20 !important;
}

.list-single-item.active-menu > a {
  font-weight: 600;
}


.menu-dropdown {
  display:none;
  position:absolute;
  padding:10px;
  margin:0;
  width:256px;
  list-style-type:none;
/*   top:45px; */
  top:65px;
  
  border-radius: 8px;
  border: 1px solid #E0E4EA;
  background: #FFF;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
}

.menu-dropdown li   {
  padding: .5rem .625rem;
}

.menu-dropdown li a {
  text-decoration:none;
  font-size:16px;
  line-height:24px;
  font-weight:500;
}

.menu-dropdown li:hover  {
  background-color: #C3DFE6;
  color: rgba(169,148,136,1);
  border-radius:6px;
}
.menu-dropdown li:hover a {
  color: #231F20 !important;
}

.menu-btn {
  height:100%; 
  margin-left:14px;
}



    
.list-single-item {
  display: inline-block;
}

.list-single-item > a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #231F20;
  text-decoration: none;
}

/* hamburger menu */
/* Existing CSS here ... */

.hamburger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1000;
}

.hamburger-menu div {
  width: 100%;
  height: 4px;
  background-color: #231F20; /* change to your desired color */
  margin: 6px 0;
  transition: all 0.3s;
}

.hamburger-menu.open div:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
  position:relative;
}

.hamburger-menu.open div:nth-child(2) {
  transform: rotate(-45deg);
  top: -4px;
  position:relative;
}


@media only screen and (min-width:1280px) {
  .ift-header-menu {
    position:relative;
    z-index:99999;
  }
  .main-a-tag svg { 
    transition: all 0.2s ease-in-out;
  }

  .main-a-tag:hover svg {
    transform:rotate(180deg);
    transition:all 0.2s ease-in-out;
  }
}


@media (max-width: 1280px) {
  .transparent{
/*     background-color: #261B6E ;  */
  }
  .ift-header-wrapper {
    padding:20px;
    align-items:center;
  }
  
  .list-single-item .menu-dropdown {
    max-width: 648px;
    width: 100%;
  }
      
  .ift-header-menu {
    display: none;
    position: absolute;
    top: 400px;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease-out;
    transform: translateY(-300px);
    /**/
    height:100vh;
    max-height:100vh;
/*     padding-bottom:15%; */
    padding-bottom:50%;
/*     padding-bottom:50px; */
    overflow-y:scroll;
    background:#fff;
  }

  .hamburger-menu {
    display: block;
  }

  .hamburger-menu.open .ift-header-menu {
    transform: translateY(0);
  }

  /* Optional: Adjust the menu item styles for small screens */
  .ift-main-menu-list {
    flex-direction: column;
    align-items: baseline;
    padding-left:20px;
    padding-right:20px;
  }

  .ift-main-menu-list li {
    padding: 10px;
    flex-direction:column;
    align-items:baseline;
    width:100%;
  }
  .main-a-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
   }
   svg.svg-icon {
     transform: rotate(-90deg);
     transition: all 0.2s ease-in-out;
   }
   svg.svg-icon.svg-open {
     transform: rotate(-180deg); 
     transition: all 0.2s ease-in-out;
  }
  .menu-dropdown {
    display:block;
    position:initial;
    background:transparent;
    box-shadow:none;
    border:none;
    padding:0l
    
  }
  
  .ift-main-menu-list,
  .ift-main-menu-list li {
    gap:0px;
  }
  
  .hamburger-menu.open div:last-child {
    display:none;
  }
 
  .open-dropdown {
    padding:0;
    
  }
  
  .open-dropdown li {
     padding:20px 0;
  }
  
  .open-dropdown li:first-child {
    padding-top:30px;
  }
  
  .open-dropdown li:last-child {
    padding-bottom:0;
  }
  
  .menu-dropdown a {
    color:#231F20 
  }
  .menu-dropdown li:hover  {
    background-color: transparent;
    color: #231F20 !important;
    border-radius:6px;
  }
  .menu-dropdown li:hover a {
    color: #231F20 !important; 
  }
  .ift-main-menu-list li a {
    color:#231F20 !important; 
    opacity: 1;
  }
  .list-item-dropdown {
    padding-left:24px !important;
  }

}
