.just-content {
    margin-bottom: 80px;
}
.just-content__wrap {
    padding: 45px 55px;
    border-radius: 8px;
    background-color: rgba(138, 180, 70, .2);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    display: flex;
    align-items: flex-start;
}
.just-content__img {
    margin-right: 70px;
}
.just-content__text {
    align-self: center;
    color: var(--grey-color);
}

@media screen and (max-width: 800px) {
    .just-content {
        margin-bottom: 40px;
    }
    .just-content__wrap {
        flex-direction: column;
        align-items: center;
    }
    .just-content__img {
        margin-right: 0;
    }
}