/* navigation css */
.navigation {
  backdrop-filter: hue-rotate(257deg);
  z-index: 5;
  border: var(--stdborder1);
  max-height: 120px;
  display: flex;
  position: sticky;
  top: 0;
  width: 100%;
  background: #00000066;
}
.menubtn {
    scale: 2;
    position: absolute;
    top: 20px;
    right: 30px;
    display: none;
}
.addmenuheight{
  height: 240px !important;
}
.logo {
  width: 310px;
  padding: 0px 5px;
}
.mainnavlist {
  width: -webkit-fill-available;
  border: var(--stdborder2);
  display: flex;
  align-items: center;
  padding: 0px 10px;
}
.navlist {
  display: flex;
  list-style-type: none;
  gap: 2vw 5vw;
  font-size: 1.3pc;
  width: -webkit-fill-available;
  justify-content: center;
  transition: height 0.5s ease;
}
.navlist a {
  text-decoration: none;
  display: inline-block;
  color: var(--dwhitecolor);
  transition: transform 0.5s ease;
}
.navlist a:hover {
  color: var(--cadetcolor);
  transform: scale(1.05);
}

/* responsiveness css */
@media screen and (max-width: 1500px) {
  .logo {
    width: 25%;
  }
  .logo img {
    width: 100%;
  }
}
@media screen and (max-width:908px) {
  .navigation{
    background-color: var(--bgcolor1);
    height: 70px;
  }
  .logo img{
    width: 177px;
  }
  .navlist {
    flex-wrap: wrap;
    gap: 1vw 4vw;
}
}
@media screen and (max-width:620px) {
  .navigation {
    flex-direction: column;
    align-items: center;
}
.menubtn{
  display: block;
}
.logo {
    align-self: flex-start;
}
.mainnavlist{
  display: block;
  padding:0px;
}
.navlist {
  background-color: var(--bgcolor1);
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px 0px;
  height: 0px;
  overflow: hidden;    
}
}
