@charset "utf-8";

.header {
  position: fixed;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
/* gnb
================================================================================= */
.gnb {
  display: flex;
  gap: 16px;
  padding: 4px 28px;
  justify-content: center;
  align-items: center;

  border-radius: 50px;
  background: var(--gray5, #fdfdfd);
  box-shadow: 4px 4px 10px 0px rgba(153, 153, 153, 0.25);
}
.frame-inner {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}
.menu-text {
  position: relative;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 16px;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
  cursor: pointer;
  z-index: 10;
}
.frame-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 245, 230, 0.5) 0%,
    rgba(255, 240, 235, 0.4) 25%,
    rgba(250, 235, 245, 0.3) 50%,
    rgba(245, 240, 255, 0.2) 75%,
    rgba(250, 250, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.frame-inner:hover::before {
  opacity: 1;
}
.frame-inner:hover .menu-text {
  color: #000;
}
.point {
  position: absolute;
  width: 112px;
  height: 40px;
  top: 11%;
  /* transform: translateY(-5%); */
  left: 16px;
  /* bottom: 8px; */
  display: flex;
  padding: 8px 36px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 50px;
  background: #fff;
  box-shadow: -1px -1px 2px 0px rgba(189, 189, 189, 0.2) inset,
    4px 4px 10px 0px rgba(189, 189, 189, 0.2);
}
/* gnb end 
  =================================================================================*/
