.sec_1 {
    .grad_black {
        position: relative;

        &:before {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            position: absolute;
            background: linear-gradient(90deg, #000000bf 30%, #00000030 100%);
        }

        .arHead {
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            position: absolute;
        }
    }

    .processWrap {
        display: flex;
        flex-wrap: wrap;

        .eachProcess {
            width: 25%;
            position: relative;
            border: 2px solid #000;

            &:nth-child(1) {
                border-radius: 20px 20px 0 20px;

                &:before {
                    right: -2px;
                    bottom: 0;
                    width: 2px;
                    content: '';
                    height: 60px;
                    position: absolute;
                    background-color: #e3e9e1;
                }

                &:after {
                    right: 0;
                    bottom: -2px;
                    width: 60px;
                    height: 2px;
                    content: '';
                    position: absolute;
                    background-color: #e3e9e1;
                }
            }

            &:nth-child(2) {
                left: -2px;
                border-left: 0;
                border-radius: 0px 20px 20px 20px;
            }

            &:nth-child(3) {
                left: -4px;
                border-left: 0;
                border-radius: 0px 20px 20px 0;
            }

            &:nth-child(4) {
                left: -4px;
                border-left: 0;

                /* &:before{
                    top: 0;
                    left: -2px;
                    width: 2px;
                    content: '';
                    height: 60px;
                    position: absolute;
                    background-color: #e3e9e1;
                } */
                &:after {
                    top: -2px;
                    left: 0;
                    height: 2px;
                    width: 60px;
                    content: '';
                    position: absolute;
                    background-color: #e3e9e1;
                }

                border-top-left-radius: 0;
            }

            .eachInner {
                padding: 30px;

                .fig {
                    margin: 0 auto 15px;
                }
            }
        }
    }
}

.bg_e3e9e1 {
    background-color: #e3e9e1;
}

.fig {
    width: 80px;
    height: 80px;
    display: flex;
    padding: 15px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #fff;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.bg_green_box {
    .rel {
        &:before {
            background-color: var(--yellow);
        }
    }
}



/* Responsive */

@media screen and (max-width: 1536px) {
    .bannerWrap {
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
    }
}



@media screen and (max-width: 1280px) {
    .sec_1 {
        .grad_black {
            figure {
                height: 300px;
            }

            h2 {
                margin-bottom: 20px;
            }

            &:before {
                content: normal;
            }

            .arHead {
                position: static;
            }

            .whiteBox {
                * {
                    color: #000 !important;
                }
            }
        }
    }

    .bannerWrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}



@media screen and (max-width: 991px) {
    .sec_1 {
        .grad_black {
            figure {
                img {
                    object-position: 80% 100%;
                }
            }
        }
    }

    .sec_2 {
        .col_1 {
            margin-bottom: 30px;
        }
    }
}