.lineHeading {
    &::before {
        width: 330px;
        bottom: 86px;
    }

    &::after {
        left: 120px;
    }
}

.humRgt {
    width: 400px;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* table */
.employee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    text-align: center;
}

.employee-table th,
.employee-table td {
    border: 1px solid #ccc;
    padding: 12px;
}

/* Header row */
.employee-table thead th {
    border: none;
}

.category-col {
    writing-mode: horizontal-tb;
}

.employee-table thead tr:first-child th:nth-child(2) {
    position: relative;
    border-right: 1px solid #e31837 !important;

    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 2px;
        height: 40%;
        background-color: #fff;
        transform: translateY(-50%);
    }
}

.employee-table thead tr:first-child th:first-child {
    border-top: 2px solid #4d4d4f;
    border-left: 2px solid #4d4d4f;
    border-right: 2px solid #4d4d4f;
}

.employee-table tbody td:first-child {
    border-right: 2px solid #4d4d4f;
    border-left: 2px solid #4d4d4f;
}

.employee-table tbody tr:last-child td:first-child {
    border-bottom: 2px solid #4d4d4f;
}

.employee-table tbody tr:last-child td:first-child {
    &::after {
        content: normal;
    }
}

.employee-table tbody td {
    border: none;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 60px;
        height: 2px;
        background-color: #4d4d4f;
        transform: translateX(-50%);
    }
}

/* Gender icons */
.icon {
    display: block;
    margin-bottom: 5px;
}


/* start responsive */

@media(max-width: 1440px) {
    .fz_22 {
        font-size: 20px !important;
    }
}

@media(max-width: 1280px) {
    .human-capital {
        .row_1.mb_100 {
            margin-bottom: 0px !important;
        }
    }
}

@media(max-width: 1199px) {
    .humRndAra {
        margin: 20px 0;
    }
}

@media(max-width: 991px) {
    .humanSec3 {
        .row_1 {
            .col_2 {
                .humCont {
                    .humRgt {
                        width: 100%;
                        float: unset;
                        margin-left: 0;
                        margin-bottom: 0;

                        img {
                            width: 100%;
                        }
                    }
                }
            }

            .col_3 {
                .subCol_2 {
                    margin-top: 20px;

                    .numBlockWrap.mb_40 {
                        margin-bottom: 10px !important;
                    }
                }
            }
        }
    }

    .humanSec4 {
        .humImgInn {
            width: 100%;

            img {
                width: 100%;
            }
        }

        .humSde {
            width: 100%;

            img {
                width: 100%;
            }
        }

        .row_4 {
            .col_2 {
                margin-top: 20px;
            }
        }

        .row_7 {
            .col_2 {
                margin-top: 20px;
            }
        }

        .row_9 {
            .col_2 {
                margin-top: 20px;
            }
        }
    }
}

@media(max-width: 575px) {

    .employee-table th,
    .employee-table td {
        padding: 9px 4px;
        font-size: 16px !important;
    }

    .icon img {
        width: 50px;
    }

    .employee-table {
        margin: 20px auto;
    }

    .employee-table tbody td {
        &::after {
            width: 32px;
        }
    }
}

@media(max-width: 480px) {
    .icon img {
        width: 42px;
    }
}