@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.playbtn::after,
.playbtn::before {
  content: "";
  position: absolute;
  background-image: conic-gradient(from var(--angle), #6E5BFB 70%, oklch(66.7% 0.295 322.15));
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding: 2px;
  border-radius: calc(infinity * 1px);
  animation: 2s spin-1 linear infinite;
  z-index: -1;
}

.playbtn::before {
  filter: blur(0rem);
  opacity: 0.5;
}

.playbtn:hover::before {
  filter: blur(1.5rem);
}

@keyframes spin-1 {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

.up {
  transform: translateY(0px);
}

.down {
  transform: translateY(40px);
}

.scrolling:hover>div {
  animation-play-state: paused;
}

.scrolling-right {
  animation-direction: reverse;
  animation-duration: 60s;
}

.scrolling-left {
  animation-duration: 60s;
}

.menu-open {
  overflow: hidden !important;
}

/* animation 3 border */
/* .sweep-wrap {
  position: relative;
  display: inline-block;
}

.sweep-wrap .line {
  position: absolute;
  top: 50%;
  height: 1px;
  width: 0;
  pointer-events: none;
  opacity: 1;
}

.sweep-wrap .line.left {
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  background: linear-gradient(90deg, #5B7BFB 0, #5B7BFB calc(100% - 12px), transparent 100%);
  animation: sweepLeft 2.2s ease infinite;
}

.sweep-wrap .line.right {
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  background: linear-gradient(90deg, #5B7BFB 0, #5B7BFB calc(100% - 12px), transparent 100%);

  animation: sweepRight 2.2s ease-out infinite;
}

.sweep-wrap .line.up {
  left: 50%;
  top: 0;
  bottom: auto;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, #5B7BFB 0, transparent 100%);
  animation: sweepUp 2.2s ease-out infinite;
  transform: translate(-50%, 0);
}

.sweep-wrap .line.delay-1 {
  animation-delay: 2s;
} */

/* FAQ details/summary styling */
.card-item-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: hsl(292, 42%, 14%);
  width: 100%;
  border: none;
  background-color: transparent;
  text-align: left;
}

.card-item-btn .icons {
  position: relative;
  width: 14px;
  height: 14px;
  overflow: hidden;
  flex-shrink: 0;
  color: currentColor;
}

.card-item-btn .icons::before,
.card-item-btn .icons::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transform-origin: 50% 50%;
  transition: transform 200ms ease, opacity 200ms ease;
  translate: -50% -50%;
}

.card-item-btn .icons::before {
  transform: rotate(0deg) scaleX(1);
}

.card-item-btn .icons::after {
  transform: rotate(90deg);
}

.card-item-btn.active .icons::after {
  transform: rotate(180deg);
  opacity: 0;
}

.card-item-description {
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease;
}

.icon-footer::before {
  content: "";
  position: absolute;
  inset: 13px;
  background: url("img/icon_footer.svg") center/contain no-repeat;
  width: 104px;
  height: 104px;
  z-index: 1;
  animation: circTxt-rotating 8s linear infinite;
}

/* scroll to target */
:target {
  scroll-margin-top: 80px !important;
}

.btn-demo::before, .btn-demo::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  background: linear-gradient(45deg, #6E5BFB,  oklch(62.7% 0.265 303.9), oklch(66.7% 0.295 322.15), #6E5BFB);
  
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: animate 20s linear infinite;
  border-radius: calc(infinity * 1px);
}
.btn-demo::after {
  filter: blur(20px);
  opacity: 0.6;
}
@keyframes animate {
    0% {
      background-position: 0 0;
  }

  50% {
      background-position: 400% 0;
  }
  100% {
      background-position: 0 0;
  }
}