.about__wrapper {
    background-color: var(--darkGray70);
    padding-bottom: 80px;
    padding-top: 480px;
}
.about__bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1024px;
}
.about__bg::before {
    user-select: none;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(to bottom, #0b0e17 0%, #0b0e1700 100%);
}
.about__wrapper h2 {
    text-align: center;
}
.about__wrapper > div > p {
    text-align: center;
}
.about__stats {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.about__stats_item > p:first-child {
    color: var(--lightGray95) !important;
    font-family: "outfit", sans-serif !important;
}
@media (max-width: 768px) {
    .about__bg {
        width: 100%;
    }
    .about__wrapper {
        padding-top: 46vw;
    }
    .about__stats {
        justify-content: space-between;
        gap: 16px;
    }
}
