/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2026 | 16:04:10 */
/* ===== WPBakery Continuous Gradient Button ===== */
.prop-firm-match{
	border-radius: 100px !important;
}
.vc_btn3-container a.vc_btn3 {
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    overflow: hidden;

	   /* spacing fix */
    margin-top: 30px;
    margin-bottom: 20px;
	

    /* Smooth continuous gradient (mirrored for loop) */
    background: linear-gradient(
        to right,
        #11585a 0%,
        #15686a 20%,
        #18797b 40%,
        #1b898b 60%,
        #1e999c 80%,
        #11585a 100%
    );

    /* Double width for seamless loop */
    background-size: 200% 100%;

    /* Continuous movement right → left */
    animation: vcGradientFlow 3s linear infinite;

    transition: transform 0.8s ease, box-shadow 0.3s ease;
}



/* Hover effect */
.vc_btn3-container a.vc_btn3:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    color: #ffffff !important;
}

/* Continuous right → left movement */
@keyframes vcGradientFlow {
    from { background-position: 200% 0; }
    to   { background-position: 0% 0; }
}
