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

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

.boxDepoimento h2 {
    float: left;
    width: 100%;
    font-size: 35px;
    line-height: 48px;
    color: #fff;
    font-style: italic;
    font-weight: 600;
    margin: 0;
}

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

.boxDepoimento p {
    float: left;
    width: 100%;
    color: #fff;
    margin: 20px 0 5px 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.boxDepoimento span.nome {
    float: left;
    color: #fff;
    width: 100%;
    margin: 10px 0 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.boxDepoimento span.descricao {
    color: #00B9FF;
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
}

.boxDepoimento figure {
    text-align: right;
}

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

    .boxDepoimento {
        padding: 40px 0;
    }

    .boxDepoimento .container {
        flex-direction: column-reverse;
    }

    .boxDepoimento .col-sm-7,
    .boxDepoimento .col-sm-5 {
        float: left;
        width: 100%;
        max-width: 100%;
    }

    .boxDepoimento figure {
        margin-bottom: 40px;
        text-align: center;
    }

    .boxDepoimento figure img {
        max-width: 80%!important;
    }

    .boxDepoimento h2 {
        font-size: 22px;
        line-height: 34px;
    }

    .boxDepoimento span.descricao br {
        display: none;
    }

}