@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
.portalapps-data-tables {
    box-sizing: border-box;
    text-align: center;
    font-size: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
    .portalapps-data-tables .portalapps-data-box {
        display: block;
        background-color: #fff;
        box-sizing: border-box;
        border: 1px solid #f0f0f0;
        text-align: center;
        width: 100%;
        margin:2px;
        font-size: 16px;
        text-decoration: none !important;
    }
        .portalapps-data-box:hover {
            box-shadow: 0px 3px 1px rgba(0,0,0,.25);
            border-color: rgba(0,0,0,.125);
        }
.portalapps-main-heading {
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Roboto', arial, sans-serif;
}
.portalapps-heading-box {
    display: flex;
    flex-wrap: wrap;
    background-color: #fafafa;
    margin: 0 0 2em;
    position: relative;
    align-items: center;
    height: calc(100% - 100px - 4em);
    min-height: 150px;
}
    .portalapps-heading-box:after {
        content: '';
        align-self: flex-end;
        display: table;
        margin: 0;
        background: #333;
        height: 1.5px;
        width: 60%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
.portalapps-content-box {
    display: flex;
    flex-wrap: wrap;
    height: 100px;
    background-color: #fff;
    margin: 0 0 2em;
    position: relative;
    align-items: center;
}
.portalapps-heading {
    width: 100%;
    margin: 1em;
    line-height: 1.4;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto', arial, sans-serif;
    position: relative;
}
.portalapps-sub-heading {
    min-height: 50px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    font-family: 'Roboto', arial, sans-serif;
    width: 100%;
    text-align: center;
}
.portalapps-btn {
    font-family: 'Roboto', arial, sans-serif;
    display: inline-block;
    margin: 0 auto 30px;
    background-color: #999;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    padding: 10px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
    .portalapps-btn:hover {
        background-color: lighten(#999, 5%);
        border-color: lighten(#999, 5%);
    }
@media screen and (min-width: 480px) {
    .portalapps-data-tables .portalapps-data-box {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 5px);
    }
    .portalapps-heading {
        font-size: 24px;
    }
}
@media screen and (min-width: 960px) {
    .portalapps-data-tables .portalapps-data-box {
        width: calc(33.334% - 5px);
        min-height: 300px;
    }
}