/* Füge hier Dein eigenes CSS ein */


/* Buttons mit Effekt */
.elementor-button {
  display: inline-block;
  margin-top: 5%;
  padding: 1em 2em;
  color: #fff;
  position: relative;
  background-image: linear-gradient(to left, #0C65E6, #1DACF0);
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

.elementor-button:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	color: #fff;
 
  background-image: linear-gradient(to left, #1DACF0, #0C65E6);
  transition: opacity 0.5s ease-out;
  z-index: 2;
  opacity: 0;
}
.elementor-button:hover:after {
  opacity: 1;
	color: #fff;
	z-index: 1;
}

.elementor-button span {
  position: relative;
  z-index: 3;
}
