#menu-btn > div div {
  transition: 0.2s ease-in-out;
}

#menu-btn > div.active div:nth-child(1),
#menu-btn > div.active div:nth-child(3) {
  transform: translate(15%, 115%) rotate(45deg);
  transition: 0.2s ease-in-out;
  transform-origin: left;
}

#menu-btn > div.active div:nth-child(3) {
  transform: translate(15%, -115%) rotate(-45deg);
}

#menu-btn > div.active div:nth-child(2) {
  opacity: 0;
  transition: 0.1s ease-in-out;
}

#mobile-menu {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), transparent, rgba(125, 211, 252, 0.2));
}

.icon-btn-active span .icon-top {
  transform: translateY(10px) rotate(45deg);
}
.icon-btn-active span .icon-bottom {
  transform: translateY(-10px) rotate(-45deg);
}
.icon-btn-active span .icon-mid {
  scale: 0.8;
  opacity: 0;
}

.stripes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(315deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 1px, transparent 0, transparent 14px);
  z-index: -1;
  pointer-events: none;
}

._element-stripes {
  background-image: repeating-linear-gradient(315deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 1px, transparent 0, transparent 14px);
}

.dark ._element-stripes,
.dark .stripes::before {
  background-image: repeating-linear-gradient(315deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 1px, transparent 0, transparent 14px);
}

span.cursor {
  display: inline-block;
  width: 2px;
  height: 1.4rem;
  background-color: oklch(90.5% 0.182 98.111deg);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  transform: translateY(25%);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.scrollbar-hide {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1882352941) transparent;
}
.scrollbar-hide::-webkit-scrollbar {
  width: 8px;
}
.scrollbar-hide::-webkit-scrollbar-track {
  background: transparent;
}
.scrollbar-hide::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1882352941);
  border-radius: 6px;
}/*# sourceMappingURL=style.css.map */