.text p {
	display: flex;
	flex-wrap: wrap;
}

/*Button animated*/
.awm-animated-button .elementor-button {
	overflow: hidden !important;
    position: relative;
}
.awm-animated-button .elementor-button-content-wrapper {
	position: relative;
	z-index: 10;
}
.awm-animated-button .awm-circle {
	position: absolute;
	z-index: 5;
	width: 12px; /* Initial size of the circle */
	height: 12px; /* Initial size of the circle */
	border-radius: 50%; /* Circle */
	background-color: var(--e-global-color-52a3952); /* Circle color */
	transform: translate(-50%, -50%); /* Center the circle */
	pointer-events: none; /* Prevent interactions with the circle */
	opacity: 0; /* Initially hidden */
	transition: opacity .4s ease; /* Opacity transition */
}