#about {
    width: 100%;
    margin-top: 100vh;
    background: #fff;
    position: relative;
    z-index: 2;
}

.about {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 100px 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.about-text h1 {
    display: flex;
    flex-wrap: nowrap;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 5px;

}

.about-text p {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.6;
}


.about-statistics {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-line-1 {
    width: 100%;
    height: 3px;
    fill: #ae0000;
    margin-bottom: 30px;
}

.about-line-2 {
    width: 80%;
    height: 3px;
    fill: #ae0000;    
    margin-top: 30px;
}

.about-statistics-ul-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 100px;
    row-gap: 40px;
}

.about-statistics-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.about-statistics-bk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-statistics-bk-title {
    display: flex;
    flex-wrap: nowrap;
    text-align: end;
    font-size: 1rem;
    font-weight: 600;
}

.about-statistics-bk-text {
    display: inline-block;
    min-width: 3ch;
    text-align: left;
    font-size: 3.25rem;
    color: #ae0000;
}

.about-statistics-bk-text-x6 {
    display: inline-block;
    min-width: 6ch;
    text-align: left;
    font-size: 3.25rem;
    color: #ae0000;   
}

@media (max-width: 1000px) {

    .about {
        padding: 60px 0;
        gap: 30px;
    }

    .about-text {
        gap: 20px;
    
    }

    .about-text h1 {
        letter-spacing: 3px;

    }

    .about-line-1,
    .about-line-2 {
        margin: 0;
    }

    .about-statistics-ul-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-statistics-ul {
        gap: 40px;
    }

    .about-statistics-bk {
        flex-direction: column;
        gap: 0;
    }

    .about-statistics-bk-title {
        order: 1;
        text-align: center;
    }
}