/*
 * Styling for CTA Block
 */
 
.fx-block--cta {
    position: relative;
    background: #0E8A9E;
    color: #fff;
    padding: 50px 0;
}

.fx-block--cta__row {
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .fx-block--cta__container {
        position: relative;
        z-index: 5;
    }

        .fx-block--cta__heading {
            margin-bottom: 0;
            text-transform: uppercase;
            text-align: center;
        }

        .fx-block--cta__subheading {
            text-align: center;
            margin-bottom: 0;
        }

        .fx-block--cta__btn { margin-top: 10px; }

@media (min-width: 768px) {
    .fx-block--cta__row { flex-direction: row; }

        .fx-block--cta__heading,
        .fx-block--cta__subheading { text-align: left; }

        .fx-block--cta__btn { margin-top: 0; }

    .fx-block--cta:after {
        content: "";
        width: 35%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #085360;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100% );
        z-index: 1;
    }
}
