.header {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  height: 100vh;
  width: 14vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding:60px 20px;
  background-color: var(--blue-color);
  border-radius: 50px 0 0 50px;
}

.header img {
  width: 50%;
  filter:brightness(0) invert(1);
}

.head-item {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 5px;
  color: var(--white-color);
  align-items: center;
  border:1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.head-item.active {
  background: var(--white-color);
  color:var(--black-color);
}

.head-item:hover {
  background-color: var(--white-color);
  color:var(--black-color);
}

.head-item p {
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
}

.head-menu {
  background-color: var(--black-color);
  padding: 10px 0;
  width: 100%;
  border-radius: 10px;
  max-height: 0;
  display: none;
  overflow: hidden;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  transition: max-height 0.5s ease-in-out;
}

.head-menu a {
  color:var(--white-color);
} 

.head-menu.open {
  max-height:1000px;
}


/* Mobile Header */
.mob-header {
  width: 86%;
  padding: 4%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
  top:10px;
  right:7%;
  background: var(--blue-color);
  color: #fff;
  z-index: 20;
}

.mob-header a {
  display: flex;
  align-items: center;
  width: 10%;
}

.mob-header a img {
  filter:brightness(0) invert(1);
}

.header-btn {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  transition: color 0.5s ease;
}
.header-btn:hover, .header-btn:focus {
  color: var(--light-blue-color);
}

.active {
  right: 0 !important;
}

.mobile-menu {
  background: var(--blue-color);
  width: 80%;
  color: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-radius: 20px 0px 0 20px;
  height: 100vh;
  padding: 30px;
  transition: right 0.6s ease;
  z-index: 100;
}

.mobile-menu img {
  width: 40%;
  filter:brightness(0) invert(1);
}

.mobile-main ul {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.mobile-main li {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1px);
  padding: 10px;
  border-radius: 10px;
  transition: all 0.7s ease;
}

.mobile-main li a {
  color: #fff;
}

.mobile-main li:hover {
  background: rgba(255, 255, 255, 1);
}
