
.site_header.sticky{
  padding-block: 15px;
  background: hsl(var(--bg_clr_black) / 90%);
}

.site_header{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: clamp(20px, 10vw, 40px);
  z-index: 9999;
  transition: all 0.5s ease-in-out;
}
.openMenu{
  cursor: pointer;
}

#menu {
  background: hsl(var(--bg_clr_white) / 90%);
  color: hsl(var(--text_clr_black));
  padding: 1rem;
  position: fixed;
  top: 20px;
  left: 20px;
  width: clamp(200px,60vw,400px);
  transition: 1.5s ease-in-out;
  height: calc(100% - 40px);
  z-index: 1000;
  border-radius: 10px;

}
#menu.hidden {
  left: -100%;
}
#menu ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid hsl(var(--border_clr_01));
  padding-top: 0.5rem;
}

#menu li {
  margin: 1rem 0;
}

#menu a {
  color: hsl(var(--text_clr_black));
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  display: inline-flex;
  position: relative;
}
#menu a::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: hsl(var(--clr_primary_04));
  bottom: 0px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-in-out;
}
#menu a:hover::before,#menu a.active::before{
  width: 100%;
  transform: scaleX(1);
}

#content {
  transition: all 0.5s ease-in-out 0.5s;
  transform: scale(0);
  transform-origin: top left;
}

#content.blur {
  filter: blur(4px);
  transform: scale(1);
  backdrop-filter: blur(40px);
  width: 100%;
  height: 100vh;
  z-index: 999;
  position: fixed;
  top: 0;
  overflow: hidden;
  left: 0;
}
#closeMenu{
  background: transparent;
  border: 0;
  font-size: 20px;
  margin-bottom: 1rem;
}