/*===networkSec_1 start==*/
.highway-network .secHead {
    text-align: center;
}

.roadTle {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #727272;
    margin-bottom: 20px;
}

.highWayTable {
    background-color: #F0F0F0;
    border-radius: 10px;
    /* overflow: hidden; */
    height: 100%;
    width: 100%;

    .tableWrap {
        width: 100%;
        overflow-x: auto;
    }

    .tableHeading {
        padding: 20px;

        h3 {
            font-weight: 600;
            font-family: "Oxygen", sans-serif;
            font-size: 24px;
        }

        h4 {
            font-family: "Oxygen", sans-serif;
            font-size: 20px;
        }
    }

    table {
        width: 100%;
        border-spacing: 0px;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;

        th {
            border-bottom: 1px solid #ccc;
            border-right: 1px solid #ccc;
            font-weight: 600;
            color: #E30011;
            padding: 20px 15px;

            &:last-child {
                border-right: none;
            }
        }

        td {
            border-bottom: 1px solid #ccc;
            border-right: 1px solid #ccc;
            padding: 20px 15px;

            &:last-child {
                border-right: none;
            }

            a {
                color: #000;
                transition: all 0.5s;

                &:hover {
                    color: #E30011;
                }
            }
        }

        tr:last-child {
            td {
                border-bottom: none;
            }
        }
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.networkSecWrap {
    .ntWrkInn {
        padding: 100px 0;
        border-bottom: 1px solid #ccc;

        &:first-child {
            padding-top: 0;
        }
    }

    .ntWrkInn:nth-child(2) {
        background-color: #F0F0F0;

        .highWayTable {
            background-color: #fff;
        }
    }
}

.networkSec_1 {
    background-color: #F0F0F0;

    .highWayTable {
        background-color: #fff;
    }
}

.networkSec_2 {
    background-color: #F0F0F0;

    .highWayTable {
        background-color: #fff;
    }
}

.networkSec_3 {
    border-top: none;
}

.networkSec_1 {
    &:nth-child(2) {
        background-color: #F0F0F0;

        .highWayTable {
            background-color: #fff;
        }
    }

    .row_2 {
        row-gap: 35px;
    }
}

/* Responsive */

@media(max-width: 1440px) {
    .networkSecWrap {
        &:first-child {
            padding-top: 0;
        }

        .ntWrkInn {
            padding: 80px 0;
        }
    }
}

@media(max-width: 1366px) {
    .roadTle {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .highWayTable {
        .tableHeading {
            h3 {
                font-size: 20px;
            }

            h4 {
                font-size: 17px;
                margin-top: 6px;
            }
        }

        table {

            th,
            td {
                text-align: center;
            }
        }
    }
}

@media (max-width: 768px) {
    .highWayTable {
        table {

            th,
            td {
                font-size: 14px;
                white-space: nowrap;
            }
        }
    }
}

@media(max-width: 650px) {
    .networkSecWrap {
        &:first-child {
            padding-top: 0;
        }

        .ntWrkInn {
            padding: 45px 0;
        }
    }

    .roadTle {
        font-size: 28px;
    }
}

/* end responsive */

/* start min-width responsive */
@media(min-width: 1921px) {
    .highWayTable {
        .tableHeading {
            h3 {
                font-size: 26px;
            }

            h4 {
                font-size: 22px;
            }
        }

        table {
            th {
                font-size: 20px;
            }
            td {
                font-size: 18px;
            }
        }
    }
}

@media(min-width: 2134px) {}

@media(min-width: 2400px) {
    .highWayTable {
        .tableHeading {
            h3 {
                font-size: 28px;
            }

            h4 {
                font-size: 24px;
            }
        }
        table {
            th {
                font-size: 22px;
            }
            td {
                font-size: 20px;
            }
        }
    }
}

@media(min-width: 2560px) {
    .highWayTable {
        .tableHeading {
            h3 {
                font-size: 30px;
            }

            h4 {
                font-size: 26px;
            }
        }
        table {
            th {
                font-size: 24px;
            }
            td {
                font-size: 22px;
            }
        }
    }
}

@media(min-width: 2880px) {
    .highWayTable {
        .tableHeading {
            h3 {
                font-size: 32px;
            }

            h4 {
                font-size: 28px;
            }
        }
        table {
            th {
                font-size: 26px;
            }
            td {
                font-size: 24px;
            }
        }
    }
}

@media(min-width: 3840px) {
    .highWayTable {
        .tableHeading {
            h3 {
                font-size: 44px;
            }

            h4 {
                font-size: 32px;
            }
        }
        table {
            th {
                font-size: 30px;
            }
            td {
                font-size: 28px;
            }
        }
    }
}

/* end min-width responsive */