JSFiddle - React, Tailwind, and code Playground

by BurpmanJunior

HTML

<div class="arrow-cta">
    <div>
        <p>Call our UK based call-center</p>
        <p>24/7 on <strong>0800 612 7878</strong>

        </p>
        <p>and our staff will take a few details.</p>
        <p><strong>Or</strong>

        </p>
        <p>Complete the <strong>short form.</strong>

        </p>
    </div>
    <div>
        <p>One of our <strong>friendly</strong> grant staff will call you back and book your <strong>free survey</strong> on a <strong>convenient</strong> data and time.</p>
    </div>
    <div>
        <p>A <strong>qualified assessor</strong> will attend, survey your property and advise you of your options.</p>
    </div>
</div>

SCSS

* {
    box-sizing: border-box;
}
p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    &:last-child {
        margin-bottom: 0;
    }
}
html, body {
    font-family: Arial, sans-serif;
    font-size: 16px;
}
.arrow-cta {
    text-align: center;
    background-color: #ff7a01;
    background: -moz-linear-gradient(top, rgba(255, 199, 0, 1) 0%, rgba(255, 122, 1, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 199, 0, 1)), color-stop(100%, rgba(255, 122, 1, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 199, 0, 1) 0%, rgba(255, 122, 1, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 199, 0, 1) 0%, rgba(255, 122, 1, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 199, 0, 1) 0%, rgba(255, 122, 1, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 199, 0, 1) 0%, rgba(255, 122, 1, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc700', endColorstr='#ff7a01', GradientType=0);
    border-radius: 2px;
    box-shadow: 0 4px 0 #DB6900;
    color: #fff;
    p {
        margin: 0;
    }
    & > div {
        padding: 15px;
        border-bottom: 3px solid #fff;
        &:last-child{
            border-bottom: 0;
        }
    }
}

@media screen and (min-width: 640px){
    .arrow-cta{
        position: relative;
        display: table;
        width: 100%;
        padding-right: 7%;
        overflow: hidden;
        box-shadow: none;
        p{
            font-size: 1.4vw;
        }
        & > div{
            display: table-cell;
            width: 33.333%;
            border: 0;
            vertical-align: middle;
            position: relative;
            padding: 15px 4%;
            border-bottom: 3px solid #DB6900;
            &:after{
                content: '';
                display: block;
                position: absolute;
                width: 1000px;
                padding-top: 1000px;
                border-right: 2px solid...