/* Hero com duas colunas */
.una-hero-two-opt__ou {
    font-size: 40px;
    height: 100%;
    color: #fff;
    font-weight: 600;
    margin: auto;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.mx-auto {
    margin: auto;
}
.background {
    background-image: -webkit-gradient(linear,left top,right top,from(#098fb9),color-stop(50%,#2564a4),to(#1183b3));
    background-image: linear-gradient(90deg,#098fb9 0,#2564a4 50%,#1183b3 100%);
    padding: 40px 0;
}
.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.una-hero-two-opt__content {
    text-align: center;
    color: #fff;
    position: relative;
}
.una-hero__content>p {
    text-align: justify;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .mx-auto {
        margin: unset;
    }
    .row-flex {
        display: contents;
    }
}