.two-col {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 50% 50%;
}

.two-col.left > div:first-child {
    grid-column: 2;
}

.two-col.left > div:last-child {
    grid-row: 1;
    grid-column: 1;
}

.two-col h2 {
    font-size: 27px;
    font-weight: 400;
    color: #CE141B;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
}

.two-col h3 {
    font-size: 20px;
    color: #707070;
    margin-bottom: 20px;
}

.two-col p * {
    font-size: 18px;
    color: #707070;
    line-height: 35px !important;
}

@media (max-width: 767px) {
    .two-col {
        display: block;
    }

    .two-col.left > div:last-child {
        text-align: center !important;
    }
}