.benefitBanner__sectionTitle {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;

    padding-top: 50px;
    padding-bottom: 30px;

    color: #000000;

    white-space: normal;

    position: relative;
    left: 50%;
    right: 50%;

    margin-left: -50vw;
    margin-right: -50vw;

    width: 100vw;

    background: #FFFFFF;

    display: block;
}


/* Mobil - pouze oprava posunutí prvku */
@media (max-width: 768px) {

    .benefitBanner__sectionTitle {
        left: 0;
        right: auto;

        margin-left: 0;
        margin-right: 0;

        width: 100%;

        box-sizing: border-box;

        font-size: 20px;
        line-height: 1.4;

        padding-top: 30px;
        padding-bottom: 20px;
    }

}