.sigmaweb-btn32 .elementor-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  transition: all 1.2s linear;
}

.sigmaweb-btn32 .elementor-button::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #1993e4, #1993e456);
  border-radius: 30%;
  height: 96px;
  width: 96px;
  animation: spin infinite linear 1.8s;
  animation-delay: 0;
  bottom: -38px;
  right: -112px;
  transition: all 1.2s linear;
  z-index: 0;
}

.sigmaweb-btn32 .elementor-button:hover {
  transition-duration: 1.2s;
  color: #fff !important;
}

.sigmaweb-btn32 .elementor-button:hover::after {
  right: -60px;
  bottom: -92px;
  width: 256px;
  height: 256px;
}

.sigmaweb-btn32 .elementor-button .elementor-button-text {
  position: relative;
  z-index: 2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}