.inner_container {
    position: relative;
    max-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.play_icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: #7351fd;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    z-index: 1;
}
.play_icon::after,
.play_icon1::after {
    position: absolute;
    content: "";
    width: 78px;
    height: 78px;
    background: rgba(115, 81, 253, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: video_download 2000ms ease-out infinite;
    top: 50%;
    left: 50%;
}
.play_icon::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid #0000;
    border-bottom: 12px solid #0000;
    border-left: 22px solid #fff;
    top: 30%;
    left: 38%;
    z-index: 3;
}
.play_icon1::after {
    z-index: 0;
    animation-delay: 0.75s;
}
@keyframes video_download {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
