.aboutUs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 104px;
}

.aboutUs__wondering {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
}

.aboutUs_wonderingTitle {
    color: var(--helper-blue);
    font-size: 16px;
    font-weight: 400;
}

.aboutUs_span {
    width: 180px;
    height: 1px;
    background-color: var(--helper-blue);
}

.aboutUs_title {
    color: var(--main-blue);
    font-size: 28px;
    font-weight: 600;
    width: 520px;
}

.aboutUs__paragraphs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 80px;
}

.aboutUs_paragraph {
    width: 520px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color);
}














@media screen and (max-width: 1023px) {
    .aboutUs {
        margin-bottom: 80px;
    }
    .aboutUs__paragraphs {
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

    .aboutUs_paragraph {
        width: 400px;
    }
}

@media screen and (max-width: 915px) {
    .aboutUs_paragraph {
        width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .aboutUs {
        margin-bottom: 10px;
    }
    .aboutUs__paragraphs {
        -webkit-box-pack: unset;
            -ms-flex-pack: unset;
                justify-content: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 12px;
    }

    .aboutUs_paragraph {
        width: unset;
        font-size: 12px;
    }

    .aboutUs_title {
        font-size: 18px;
        width: unset;
    }
}