/**
 * Pathway
 */
.c-pathway {
    display: flex;
    width: 1000px;
    height: 100px;
}

/**
 * Steps
 */
.c-step {
    display: flex;
    width: 200px;
    /*background: red;*/
}

.c-step__image-wrapper {
    width: 50px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: green;*/
}

.c-step__image {
    display: block;
    height: 50px;
    justify-content: center;
    align-items: center;
    /*background: orange;*/
}

/**
 * Anchor tag wraps a block in the doc.
 */
.c-pathway__link-wrap {
    text-decoration: none;
    color: black;
}

.c-step__text {
    width: 150px;
    display: flex;
    color: black;
    justify-content: flex-start;
    margin-left: 20px;
    align-items: center;
    text-align: center;
    font-weight: bold;
    /*background: magenta;*/
}

/**
 * Arrows
 */

.c-arrow-wrapper {
    display: flex;
    width: 50px;
    justify-content: center;
    align-items: center;
    /*background: cyan;*/
}

.c-arrow {
    font-size: 50px;
    color: rgba(214, 114, 149);
}

@media only screen and (max-width: 768px)
{
    /**
     * Redefining all here!
     */
    .c-pathway {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    /**
     * Steps
     */
    .c-step {
        display: flex;
        width: 250px;
        /*background: red;*/
    }

    .c-step__image-wrapper {
        width: 50px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        /*background-color: green;*/
    }

    .c-step__image {
        display: block;
        height: 50px;
        justify-content: center;
        align-items: center;
        /*background: orange;*/
    }

    .c-step__text {
        width: 250px;
        font-weight: bold;
        display: flex;
        justify-content: flex-start;
        margin-left: 10px;
        align-items: center;
        text-align: left;
        font-size: 1rem;
        /*background: magenta;*/
    }

    .c-arrow-wrapper {
        display: flex;
        height: 20px;
        width: auto;
        justify-content: center;
        align-items: center;
        /*background: cyan;*/
    }

    .c-arrow {
        font-size: 75px;
        color: rgba(214, 114, 149);
    }

    .c-arrow-wrapper {
        transform: rotate(90deg);
    }

    .c-cta-button {
        margin-top: 30px;
    }
}
