/* section-funfact-about css */
.section-funfact-about {
    border-top: 0.1rem solid rgba(var(--light-rgb), 0.07);
    border-bottom: 0.1rem solid rgba(var(--light-rgb), 0.07);
    background: #0C0C0C;
    padding-inline: 1.5rem;
    margin-bottom: 11rem;
}
.funfact-about-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.stat-card {
    padding: 4.8rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.stat-card:nth-child(odd){
    border-right: 0.1rem solid rgba(var(--light-rgb), 0.07);
}
.stat-card:nth-child(even){
    border-right: 0.1rem solid rgba(var(--light-rgb), 0.07);
}
.stat-card:last-child { border: 0; }
.stat-value {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    text-align: center;
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.stat-text {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    color: rgba(var(--light-rgb), 0.4);
}
@media (max-width: 1050px) {
    .section-funfact-about {
        margin-bottom: 7rem;
    }
    .stat-card {
        padding: 3.8rem 0;
    }
    .stat-value {
        font-size: 3rem;
    }
}
@media (max-width: 991px) {
    .funfact-about-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stat-card {
        padding: 2.8rem 0;
    }
    .stat-card:nth-child(odd),
    .stat-card:nth-child(even){
        border-right: 0;
    }
}