.r_office {
    padding: 30px 0;
    @media (max-width: 480px) {
        padding: 20px 0 0;
    }
}

.office_block {
    margin-top: 20px;
    display: flex;
    gap: 90px;

    > img {
        width: 50%;
        height: auto;
        object-fit: contain;
    }

    .office_content {
        /*width: 100%;*/
        position: relative;

        > h4 {
            font-size: 24px;
            line-height: 36px;
            font-weight: 500;
        }

        > p {
            margin: 12px 0 0 40px;
            font-size: 22px;
            line-height: 30px;
            position: relative;
        }

        > p:first-child {
            margin-top: 20px;
        }

        > p::after {
            content: "";
            display: block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #4B8D9D;
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
        }

        > .red_btn {
            margin-top: 30px;
        }

        .bottom_str {
            position: absolute;
            bottom: 0;
            right: 0;
            color: #4B8D9D;
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;

            > span {
                color: #C96065;
            }
        }

        @media (max-width: 940px) {
            > h4 {
                font-size: 18px;
            }

            > p {
                margin: 8px 0 0 20px;
                font-size: 16px;
            }

            > p::after {
                width: 8px;
                height: 8px;
            }
        }
        @media (max-width: 860px) {
            .bottom_str {
                display: none;
            }
        }

        @media (max-width: 600px) {
            > .red_btn {
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            > h4 {
                line-height: 24px;
            }

            > p {
                margin: 6px 0 0 16px;
            }

            > p::after {
                width: 6px;
                height: 6px;
                left: -12px;
            }
        }
    }

    @media (max-width: 1200px) {
        gap: 3%;
    }
    @media (max-width: 600px) {
        flex-direction: column;
        > img,
        .office_content {
            width: 90%;
            margin: 10px auto;
        }
    }
    @media (max-width: 480px) {
        margin-top: 8px;
    }
}

.office_b_gap {
    column-gap: 40px;
    @media (max-width: 600px) {
        flex-direction: column-reverse;
    }
}