.bancoDeQuestoes {
    float: left;
    width: 100%;
    background: #141414;
    padding: 50px 0;
}

.bancoDeQuestoes .container {
    display: flex;
    align-items: center;
}

.bancoDeQuestoes h2 {
    color: #fff;
    font-weight: bold;
    margin: 0 0 30px 0;
    font-size: 26px;
    flex: 1;
    line-height: 36px;
}

.bancoDeQuestoes h2 strong {
    color: #EFBD5E;
}

.bancoDeQuestoes p {
    color: #fff;
    margin: 0 0 20px 0;
}

.bancoDeQuestoes ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.bancoDeQuestoes ul li {
    list-style: none;
    color: #EFBD5E;
}

.bancoDeQuestoes ul li span {
    color: #fff;
}

.bancoDeQuestoes figure {
    text-align: center;
}

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

    .bancoDeQuestoes {
        padding: 30px 0;
    }

    .bancoDeQuestoes .container {
        flex-direction: column;
    }

    .bancoDeQuestoes .col-sm-6 {
        float: left;
        width: 100%;
        max-width: 100%;
    }

    .bancoDeQuestoes h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .bancoDeQuestoes h2 br {
        display: none;
    }

    .bancoDeQuestoes figure {
        margin-top: 40px;
    }

}