.missionDiv {
    min-height: 320px;
    border: 1px solid #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);

    .missionImg {
        width: 80px;
        height: 80px;
        margin: 0px auto 12px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .missionTxt {
        h6 {
            font-size: 60px;
            font-weight: 400;
            color: #000 !important;
        }
    }
}

.section_1 {
    .row_1 {
        .bg_green_box {
            position: relative;
            overflow: hidden;

            &::after {
                content: '';
                position: absolute;
                bottom: -100px;
                left: -100px;
                width: 300px;
                height: 300px;
                background-image: url(../images/about/circle.png);
                background-repeat: no-repeat;
                background-size: contain;
            }
        }
    }
}

.blkBorBtm {
    border-bottom: 2px solid #000;
}

.gredientBg {
    background: linear-gradient(90deg,
            #d6e9de 0%,
            #e8f2dd 20%,
            #f7f8d8 50%,
            #e8f2dd 80%,
            #d6e9de 100%);

    .tableWrap {
        width: 100%;
        overflow-x: auto;
        background-color: #fff;

        table {
            width: 100%;

            th {
                background-color: #a0dbeb;
                text-align: center;
                padding: 8px 15px;
            }

            td {
                text-align: center;
                padding: 20px 15px;
            }

            tbody {
                tr {
                    border-bottom: 1px solid #000;
                }
            }

            .imgBox {
                width: 150px;
                height: auto;
                margin: 0px auto;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
    }
}

.bg_deedd6 {
    background-color: #deedd6;
}

.eachIconH {
    .numMain {
        position: relative;
        font-size: 40px;
        font-weight: 400;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 2px;
            width: 50px;
            background-color: #008449;
        }
    }
}

.greyBorBtm {
    border-bottom: 2px solid #939598;
}

.businessDiv {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 40px;

    .businessInn {
        width: 100%;

        .businessHead {
            background-color: #008449;
            border-radius: 20px 20px 0px 20px;
            display: flex;
            align-items: center;
            padding: 15px 20px;
            position: relative;
            margin-bottom: 20px;

            &::after {
                content: '';
                position: absolute;
                bottom: -59px;
                right: 0;
                background-image: url(../images/about/greenBg.png);
                background-repeat: no-repeat;
                background-size: contain;
                width: 170px;
                height: 65px;
            }

            .absImg {
                position: absolute;
                right: 30px;
                bottom: -40px;
                width: 70px;
                height: 70px;
                filter: brightness(0) saturate(100%) invert(47%) sepia(10%) saturate(2191%) hue-rotate(61deg) brightness(109%) contrast(87%);
                z-index: 1;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            .businessIcon {
                background-color: #fff;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                padding: 12px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            h6 {
                width: calc(100% - 60px);
                padding-left: 15px;
            }
        }

        .businessBody {
            .businessBodyTop {
                .businessBodyTopHead {
                    display: inline-block;
                    width: calc(100% - 170px);
                    border: 1px solid #9fdbeb;
                    border-radius: 20px 20px 0px 0px;
                    border-bottom: none;
                    padding: 15px 15px;
                    background: #fff;
                    position: relative;
                    margin-bottom: -1px;

                    &::after {
                        content: '';
                        position: absolute;
                        right: -171px;
                        top: 24px;
                        width: 178px;
                        height: 135px;
                        background-image: url(../images/about/whiteBg.png);
                        background-repeat: no-repeat;
                        background-size: contain;
                    }

                    h5 {
                        background-color: #fff;
                        border-radius: 30px;
                        display: inline-flex;
                        padding: 5px 25px 10px;
                        border: 1px solid var(--sky);
                        box-shadow: 5px 5px 12px var(--sky);
                        margin-bottom: 0;
                    }
                }

                .businessBodyCont {
                    border: 1px solid #9fdbeb;
                    border-bottom: none;
                    border-top: none;
                    border-radius: 0px;
                    padding: 10px 15px;
                    position: relative;

                    /* &::before {
                        content: '';
                        position: absolute;
                        width: 28px;
                        height: 57px;
                        background-image: url(../images/about/curve.png);
                        background-repeat: no-repeat;
                        background-size: contain;
                        top: -22px;
                        left: -1px;
                    } */

                    &::after {
                        content: '';
                        position: absolute;
                        bottom: -57px;
                        right: -1px;
                        background-image: url(../images/about/whiteBgBtm.png);
                        background-repeat: no-repeat;
                        background-size: 100% 100%;
                        width: 160px;
                        height: 65px;
                    }

                    >ul {
                        column-count: 2;
                    }

                    ul {
                        ul {
                            padding-top: 12px;

                            li {
                                padding-left: 25px;

                                &:not(:last-child) {
                                    margin-bottom: 12px;
                                }
                            }
                        }
                    }
                }
            }

            .businessBodyBtm {
                background-color: #9fdbeb;
                border-radius: 0px 0px 20px 20px;
                padding: 30px;
            }
        }

        &:first-child {
            .businessBodyCont {
                ul {
                    li {
                        &:not(:last-child) {
                            margin-bottom: 20px;
                        }
                    }

                    ul {
                        li {
                            &:not(:last-child) {
                                margin-bottom: 12px;
                            }
                        }
                    }
                }
            }
        }

        &.businessInnTwo {
            .businessBodyTop {
                &.businessBodyTopTwo {
                    .businessBodyCont {
                        border-bottom: 1px solid #9fdbeb;
                        border-radius: 0px 0px 20px 20px;

                        &::before,
                        &::after {
                            content: normal;
                        }

                        &::before {
                            content: '';
                            position: absolute;
                            width: 28px;
                            height: 57px;
                            background-image: url(../images/about/curve-2.png);
                            background-repeat: no-repeat;
                            background-size: contain;
                            top: -22px;
                            left: -1px;
                        }

                        &::after {
                            content: '';
                            position: absolute;
                            width: 28px;
                            height: 57px;
                            background-image: url(../images/about/curve-3.png);
                            background-repeat: no-repeat;
                            background-size: contain;
                            top: -22px;
                            right: -1px;
                        }
                    }
                }
            }
        }
    }
}

/* Responsive */
@media (max-width: 1440px) {
    h2 {
        margin-bottom: 20px;
    }

    .missionDiv {
        min-height: 300px;

        .missionTxt {
            h6 {
                font-size: 40px;
            }
        }
    }

    .gredientBg {
        .tableWrap {
            table {
                .imgBox {
                    width: 100px;
                }
            }
        }
    }

    .fz_28 {
        font-size: 26px !important;
    }
}

@media (max-width: 1366px) {
    .arHead {
        padding-bottom: 30px !important;
    }

    .missionDiv {
        .missionTxt {
            h6 {
                font-size: 30px;
            }
        }
    }
}

@media (max-width: 1280px) {
    .fz_28 {
        font-size: 24px !important;
    }
}

@media (max-width: 1199px) {
    .businessDiv {
        .businessInn {
            .businessHead {
                margin-bottom: 15px;

                &::after {
                    bottom: -56px;
                    width: 112px;
                    height: 60px;
                }

                .absImg {
                    right: 15px;
                    bottom: -25px;
                    width: 50px;
                    height: 50px;
                }
            }

            .businessBody {
                .businessBodyTop {
                    .businessBodyTopHead {
                        width: calc(100% - 110px);

                        &::after {
                            right: -110px;
                            top: 35px;
                            width: 115px;
                            height: 50px;
                        }
                    }

                    .businessBodyCont {
                        &::after {
                            bottom: -44px;
                            width: 120px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .arHead {
        p {
            font-size: 18px;
        }
    }

    .missionDiv {
        min-height: auto;

        .missionImg {
            width: 65px;
            height: 65px;
        }

        .missionTxt {
            h6 {
                font-size: 25px;
            }
        }
    }

    .fz_32 {
        font-size: 26px !important;
    }

    .fz_28 {
        font-size: 22px !important;
    }
}

@media (max-width: 767px) {
    .row_1 {
        .bg_green_box {
            padding: 20px;
        }
    }

    .fz_32 {
        font-size: 22px !important;
    }

    .fz_28 {
        font-size: 20px !important;
    }

    .gredientBg {
        .tableWrap {
            table {
                td {
                    white-space: nowrap;
                }
            }
        }
    }

    .businessDiv {
        .businessInn {
            .businessHead {
                padding: 12px 15px;

                .businessIcon {
                    width: 52px;
                    height: 52px;
                    padding: 10px;
                }
            }
        }
    }
}

@media (max-width: 640px) {
    .businessDiv {
        .businessInn {
            .businessBody {
                .businessBodyTop {
                    .businessBodyCont {
                        >ul {
                            column-count: 1;
                        }
                    }
                }
            }
        }
    }

    h5,
    .h5 {
        font-size: 18px !important;
    }

    .businessDiv {
        .businessInn {
            .businessHead {
                .fz_28 {
                    font-size: 18px !important;
                }

                .absImg {
                    bottom: -28px;
                    width: 42px;
                    height: 38px;
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .arHead {
        padding-bottom: 20px !important;

        p {
            font-size: 16px;
        }
    }
}