*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif;
}


.humburger-menu{
  background-color: white;
  position: absolute;
  display:flex;
  flex-direction: column;
  width: 60%;
  height: 100vh;
  z-index: 1000;
  left: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
  gap: 2rem;
  display: none;
}
.menu-heading{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.heading-menu h3{
  font-size: 2rem;
  font-weight: 600;
  color: black;
}

#nav-icon2{
  font-size: 1rem;
}


.humburger-menu ul{
 display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2rem;
}
.humburger-menu ul li a{
  text-decoration: none;
  color: #666;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}
.login2{
  width:100px ;
  padding: 6px 0;
  font-size: 1rem;
  display: flex;
  font-weight: 600;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color:#3eb489;
  border: none;
  color: white;
}
.nav-tribe img{
 height: 50px;
 
}
.nav-tribe{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navbar{
  height: 7vh;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 1rem;
  position: relative;
  background-color: white;
  
}

.navbar ul{
  flex-direction: row;
  display: flex;
   list-style: none;
  gap: 1.5rem;
  
}

.navbar ul li a{
   text-decoration: none;
  color: #666;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-tribe h4{
  font-weight: 600;
  font-size: 1rem;
}
.nav-logo .span1{
   height: 30px;
   width: 30px;
   background-color: yellow;
   border-radius: 50px;
}
.navbar2{
  height: 5vh;
  
}
.navbar2{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
 
}

.navbar2 ul{
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 1.5rem;
}
.navbar2 ul li a{
  text-decoration: none;
  color: #666;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}
.active{
  color: black !important;
  font-weight: 600;
}
.nav-buttons{
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.nav-buttons .search{
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  border: none;
  background-color: transparent;
}
.nav-buttons .search i{
  font-size: 1rem;
}
.nav-buttons .login{
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;  border: none;
  background-color: transparent;

}
.nav-buttons .login i{
  font-size: 12px;
   transition: transform 0.3s ease;
}


.login.active2 i{
  transform: rotate(-180deg);
}



.navbar ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
  width: 100%;
}

#menu{
  display: none;
}