section#about_us {
    background-color: white;
    * {}
    h4 {
        color: var(--avs-color-02);
    }
    img {
        mix-blend-mode: multiply;
        width: 40%;
    }
    .content1,
    .content2 {
        transition: 0.3s ease-in-out all;
    }
    .content2 {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        text-align: start;
        * {}
        div:has(>h4){
            margin-left: 50%;
        }
        p {
            display: inline-flex;
            flex-direction: column;
            width: 50%;
            text-indent: 32px;
        }
        p:nth-child(3) {
            display: none;
        }
        p:has(>img){
        }
        strong {
            display: contents;
        }
        img {
            width: 80%;
        }
    }
}
@media screen and (max-width: 787px) {
    img {
        width: 80%;
    }
}
