.elementor-407 .elementor-element.elementor-element-0a6d91a{--display:flex;}.elementor-widget-button .elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-407 .elementor-element.elementor-element-ad7633c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-af992ff *//* Button default state */
button {
    padding: 10px 20px;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    border: 4px solid transparent; /* Initial transparent border */
    border-radius: 8px; /* Optional: for rounded corners */
    position: relative;
    overflow: hidden; /* Ensures the gradient stays within the button */
    font-weight: bold;
    transition: color 0.3s ease; /* Smooth transition for text color */
}

/* Button hover state */
button:hover {
    color: #fff; /* Change text color on hover */
}

/* Create the animated gradient border */
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px; /* Same as the button's border-radius */
    background: linear-gradient(45deg, #ff5733, #ff9900, #33cc33, #3399ff); /* Gradient colors */
    z-index: -1; /* Place behind the button content */
    background-size: 200% 200%; /* Make the gradient larger to animate smoothly */
    transition: all 0.3s ease;
}

/* Apply animation on hover */
button:hover::before {
    animation: gradientAnimation 3s linear infinite; /* Animate the gradient */
}

/* Define the keyframes for the animated gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%; /* Start the gradient from top-left */
    }
    50% {
        background-position: 100% 100%; /* Move the gradient to bottom-right */
    }
    100% {
        background-position: 0% 0%; /* Reset to top-left */
    }
}/* End custom CSS */