.about {
    background-color: var(--bg-sub-color);
    padding: 50px 0;
    min-height: 350px;
}
.about .container {
    background-color: var(--bg-sub-color);
}
.about__title {
    font-size: 28px;
    font-weight: 600;
    background-color: var(--bg-sub-color);
}
.about__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    background-color: var(--bg-sub-color);
    row-gap: 30px;
}
.about__item {
    width: 100%;
    background-color: var(--bg-sub-color);
    display: flex;
    align-items: center;
    gap: 30px;
}
.about__item-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--text-sub-color);
    background-color: var(--bg-color);
    border-radius: 10px;
}
.about__item-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    background-color: var(--bg-sub-color);
}
.about__item-text span {
    color: var(--accent-color);
    background-color: var(--bg-sub-color);
}

@media (min-width: 768px) {
    .about__inner {
        row-gap: 50px;
    }
    .about__item-number {
        width: 70px;
        height: 70px;
        font-size: 45px;
    }
    .about__item-text {
        width: 600px;
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 1200px) {
    .about__inner {
        margin-top: 70px;
        justify-content: space-between;
        align-items: start;
    }
    .about__item {
        width: 30%;
        align-items: start;
    }
    .about__item-text  {
        font-size: 18px;
    }
}