.about-us {
    color: #333;
    display: flex;
    align-items: center;
}
.about-us__header {
    text-transform: uppercase;
    font-size: 30px;
}
@media (max-width: 767px) {
    .about-us__header {
        font-size: 25px;
        margin: 0;
    }
}
.about-us__paragraph {
    line-height: 1.9;
    color: #777;
    font-size: 18px;
}
@media (max-width: 767px) {
    .about-us__paragraph {
        font-size: 16px;
        line-height: 1.5;
    }
}
.about-us__image {
    width: 40%;
    margin-left: 30px;
}
@media (max-width: 767px) {
    .about-us__image {
        display: none;
    }
}