.section_1 {
    position: relative;
    background-position: bottom center;
    overflow: hidden;
}

/* -----------expandingHorizons------------- */

.tabelWrap{
    .tableInner{
        table{
            width: 100%;
            table-layout: fixed;
            th, td{
                width: 20%;
                padding: 20px;
                font-weight: 400;
            }
            thead{
            }
            tr{
                &:nth-child(odd){
                }
                &:nth-child(even){
                }
                td{
                    border-bottom: 1px solid #616faf;
                    &.bg_7378b9{
                        border-color: #fff;
                    }
                }
            }
        }
    }
}

/* Responsive */

@media (max-width: 1199px) {
    .tabelWrap .tableInner table th,
    .tabelWrap .tableInner table td {
        padding: 14px;
    }
}

@media (max-width: 991px) {
    /* let the wide 5-column table scroll horizontally instead of crushing the columns */
    .tabelWrap .tableInner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tabelWrap .tableInner table {
        min-width: 780px;
    }

    .tabelWrap .tableInner table th,
    .tabelWrap .tableInner table td {
        padding: 12px;
        font-size: 14px;
        overflow-wrap: break-word;
    }
}

@media (max-width: 575px) {
    .tabelWrap .tableInner table th,
    .tabelWrap .tableInner table td {
        padding: 10px;
    }
}