.boxVagas {
    float: left;
    width: 100%;
    background-color: #0F1A2A;
    padding-bottom: 70px;
}

.boxVagas h2 {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 0 0 45px 0;
    font-size: 26px;
    text-align: center;
    line-height: 36px;
}

.boxVagas h2 strong {
    color: #00B9FF;
}

.boxVagas .listaTipos {
    float: left;
    width: 100%;
    border-bottom: solid 1px #999;;
}

.boxVagas .listaTipos ul {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -1px;
    padding: 0;
    margin: 0 0 -1px 0;
}

.boxVagas .listaTipos ul li {
    cursor: pointer;
    color: #fff;
    border-bottom: solid 5px transparent;
    padding: 10px 12px;
    list-style: none;
    position: relative;
    margin: 0 3px;
    transition: all 0.2s linear;
}

.boxVagas .listaTipos ul li.active,
.boxVagas .listaTipos ul li:hover {
    color: #00B9FF;
    border-color: #00B9FF;
}

/* Lista Vagas */

.boxVagas .listaVagas {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.boxVagas .listaVagas ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

.boxVagas .listaVagas ul li {
    display: inline-block;
    background-color: #fff;
    color: #156EF3;
    padding: 10px 15px;
    font-weight: bold;
    margin: 0px 5px 15px 5px;
    border-radius: 50px;
}

@media only screen and (max-width: 1100px) {

    /* Lista Tipos */

    .boxVagas .listaTipos .container {
        overflow: auto;
    }

    .boxVagas .listaTipos ul {
        min-width: 1150px;
        justify-content: flex-start;
    }

    .boxVagas .listaTipos .container::-webkit-scrollbar {
        display: none;
    }

    .boxVagas .listaTipos .container {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

}

@media only screen and (max-width: 768px) {

    .boxVagas {
        padding-bottom: 40px;
    }

    /* Título */

    .boxVagas h2 {
        font-size: 22px;
        line-height: 32px;
        margin: 0px 0 35px 0;
    }

    .boxVagas h2 br {
        display: none;
    }

}