.blkBorRt {
    border-right: 1px solid #000;
}

.blkBorTop {
    border-top: 1px solid #000;
}

.section_2 {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -250px;
        width: 500px;
        height: 500px;
        background-image: url(../images/corporate/circle.png);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }

    .row_1 {
        .col-lg-4 {
            position: relative;

            &::after {
                content: "";
                position: absolute;
                top: -15px;
                left: 0;
                width: 101%;
                height: 1px;
                background-color: #000;
            }

            &:nth-child(4) {
                &::after {
                    left: 15px;
                }
            }

            &:first-child,
            &:nth-child(2),
            &:nth-child(3) {
                &::after {
                    display: none;
                }
            }

        }
    }
}



/* Responsive */

@media only screen and (max-width: 991px) {
    .section_2 {
        .row_1 {
            .col-lg-4 {
                &::after {
                    display: none;
                }
            }
        }
    }

    .blkBorRt,
    .blkBorTop {
        border: 0px;
    }

    .pt_30 {
        border-top: 1px solid #000;
    }
}