.Features_Section {
    /* background: transparent linear-gradient(180deg, #090A0C 0%, #232323 100%) 0% 0% no-repeat padding-box; */
    padding: 70px 0;
    overflow: hidden;
}

.Features_Section .video_wrapper {
    width: 500px;
    margin: auto;
}

.Features_Section .video_wrapper .top_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .Features_Section .stats_grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
} */

.Features_Section .stats_grid .stat_card {
    background: #000000 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #FFFFFF;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    color: #ffffff;
    padding: 15px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Exo';
}

.Features_Section .stats_grid .stat_card .gold_shape {
    position: absolute;
    right: 0;
}

.Features_Section .stats_grid .stat_card .gold_shape .shapes {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Features_Section .stats_grid .stat_card h3 {
    font-size: 30px;
    font-weight: 800;
}

.Features_Section .stats_grid .stat_card p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.Features_Section .stats_grid .stat_card:hover {
    background: #000000 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #F7B006;
}

.Features_Section .stats_grid .stat_card:hover .shapes {
    filter: grayscale(1);
}

/* ===================== Media Queries ===================== */

@media (min-width:0px) and (max-width:575px) {
    .Features_Section .stats_grid .stat_card h3 {
        font-size: 24px;
    }

    .Features_Section .stats_grid .stat_card p {
        font-size: 15px;
    }

    .Features_Section .video_wrapper {
        width: 300px;
    }
}

@media (min-width:576px) and (max-width:991px) {
    .Features_Section .stats_grid .stat_card h3 {
        font-size: 24px;
    }

    .Features_Section .stats_grid .stat_card p {
        font-size: 15px;
    }

    .Features_Section .video_wrapper {
        width: 400px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .Features_Section .stats_grid .stat_card h3 {
        font-size: 26px;
    }

    .Features_Section .stats_grid .stat_card p {
        font-size: 16px;
    }
}