.capSec_4 {
    background: linear-gradient(to right, #d2e7db 0%, #fafad1 100%);

    .devgTable {
        width: 100%;

        .tableInner {
            border-bottom: none;
            width: 100%;
            overflow: hidden;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        table {
            width: 100%;
            border-collapse: collapse;

            th,
            td {
                padding: 12px 18px;
            }

            thead {
                tr {
                    background: linear-gradient(to right, #008449 0%, #97b43d 100%);

                    th {
                        color: var(--white);
                        font-weight: 700;
                        text-align: center;
                        white-space: nowrap;

                        &:first-child {
                            text-align: left;
                        }

                        &:not(:last-child) {
                            border-right: 3px solid var(--white);
                        }
                    }
                }
            }

            tbody {
                tr {
                    td {
                        text-align: center;
                        border-bottom: 1px solid #000;

                        &:first-child {
                            text-align: left;
                            position: relative;

                            &::after {
                                content: "";
                                position: absolute;
                                bottom: -2px;
                                left: 0px;
                                right: 0px;
                                height: 2px;
                                background: linear-gradient(to right, rgb(0, 132, 73), rgb(151, 180, 61));
                            }
                        }
                    }

                    &.totalRow {
                        td {
                            font-weight: 700;
                        }
                    }
                }
            }
        }
    }
}


@media only screen and (max-width: 1366px){
    .capSec_3{
        .row_4{
            .comm_col{
                margin-bottom: 30px;
                .imgBox{
                    height: 100%;
                    margin-bottom: 0;
                }
            }
        }
    }
}