.motion-border-btn .elementor-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: none !important;
}

.motion-border-btn .elementor-button::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 260%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  background: conic-gradient(
    from 0deg,
    rgba(44, 177, 169, 0),
    rgba(44, 177, 169, 0.18),
    #2CB1A9,
    rgba(255, 255, 255, 0.95),
    #2CB1A9,
    rgba(44, 177, 169, 0.16),
    rgba(44, 177, 169, 0)
  );

  animation: motion-border-spin 3s linear infinite;
  z-index: -2;
}

.motion-border-btn .elementor-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}

.motion-border-btn .elementor-button-content-wrapper,
.motion-border-btn .elementor-button-text,
.motion-border-btn .elementor-button-icon {
  position: relative;
  z-index: 2;
}

@keyframes motion-border-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}