/*** Two Column Feature ***/

.two-col-feature .row-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.two-col-feature .row-inner h2,
.two-col-feature .row-inner p.subheader {
    width: 100%;
}

.two-col-feature .row-inner .f-text {
    width: calc(50% - 40px);
}

p.subheader {
    color: #5c5c5c;
    font-family: industry, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

p.subheader span {
    color: #dddddd;
}

@media only screen and (max-width:900px) {
    .two-col-feature .row-inner .f-text {
        width: 100%;
        margin-bottom: 40px;
    }

    .two-col-feature .row-inner .f-text.feature-2 {
        margin-bottom: 0;
    }
}