
header {
  position: absolute;
  width: 100%;
  z-index: 999;
}

.headerHolder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0px;
}

.headerHolder .logo {
  /* max-width: 10rem; */
  width: 80%;
}

.navbar {
  z-index: 999;
  transition: all 0.5s linear;
 
}
.navbar-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  font-size: 1rem;
}

.navbar-link:link,
.navbar-link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: var(--semibold);
  line-height: 2rem;
  color: var(--black);
}

.navbar-link:hover,
.navbar-link:active {
  color: var(--primary);
  transition: all 0.3s;
}



.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-icon {
  width: 2rem;
  height: 2rem;
  color: var(--black);
}
/* 
.mobile-nav-icon[name="close-outline"] {
  display: none;
} */



@media(max-width:992px) {
  header {
    position: fixed;
    width: 100vw;
    background-color: var(--white);
  }
  .headerHolder {
    padding: 0rem;
    flex-direction: row-reverse;
    justify-content: space-between;
    column-gap: 2rem;
  }
  .mobile-navbar-btn {
      display: block;
      z-index: 999;
      color: var(--black);
  }
  /* .header {
      position: relative;
  } */
  .navbar {
      /* display: none; */
      width: 100%;
      /* height: 40vh; */
      background: var(--white);
      /* position: absolute; */
      top: 6rem;
      /* left: 0; */
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 999;
      /* margin: 8px; */
      position: fixed;
  }
  .navbar-list li {
      width: 100%;
  }
  .navbar-link:link,
  .navbar-link:visited {
      font-size: 1.2rem;
      /* line-height: 1.5rem; */
  }
  .contact-button {
      font-size: 1.2rem;
      /* line-height: 1.5rem; */
  }
  .navbar-list {
    flex-direction: column;
    align-items: revert-layer;
    justify-content: center;
    width: 40%;
    gap: 1rem;
    margin-top: 2rem;
     
  }
  .navbar-list li a {
      display: block !important;
      text-align: center;
      padding: 0.5rem;

  }
  .active .navbar {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    height: 90vh;
    display: flex;
    pointer-events: auto;
    justify-content: center;
    align-items: flex-start;
    width: 95vw;
  }

  .mobile-nav-icon {
      max-width: 3rem;
  }
  .topheader{display: none !important;}

}
