/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 17 2025 | 04:23:21 */
.section__heading{
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(321deg, #040404 0%, #D1D1D1 69%);
}

a.video_popup{
        background-color: #0E0E0E;
        padding: 0px 0px 0px 2px;
        display: inline-flex;
        width: 80px;
        height: 80px;
        --glow-size: 30px;
        color: #fff;
        border: 1px solid #C82AEF;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        position: relative;
}

a.video_popup:before, a.video_popup:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #C82AEF;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    -webkit-animation: button-ripple 3s infinite;
    animation: button-ripple 3s infinite;
    opacity: .6;
    z-index: 1;
}

@keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 var(--glow-size,15px) currentColor;
        box-shadow: 0 0 0 var(--glow-size,15px) currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}



