.about-us {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

@media (orientation: portrait) and (max-width: 767px) {
    .about-us {
        flex-direction: column;
    }
}

.about-us__image {
    width: 40%;
    margin-right: 30px;
}

@media (orientation: portrait) and (max-width: 767px) {
    .about-us__image {
        width: 100%;
        margin-bottom: 15px;
    }
}

.about-us__h3 {
    color: #87818f;
    font-size: 30px;
    text-align: right;
    margin-bottom: 50px;
}

@media (orientation: portrait) and (max-width: 767px) {
    .about-us__h3 {
        margin-bottom: 15px;
    }
}

.about-us__paragraph {
    color: #87818f;
    font-size: 20px;
    text-align: right;
}