#threeColumns {
    display: table;
    height: 100%;
    margin: 1em -15px -1em;
    border-spacing: 1em;
    padding: 0;
}
#threeColumns .column {
    display: table-cell;
    margin: 0;
    float: none;
    height:100%;
    border: 1px solid #E2E2E2;
    padding: 0;
    position: relative;
}
#threeColumns .columnWrap {
    height: 100%;
}
#threeColumns .columnWrap2 { padding-bottom: 30px; height: 100%; }
#threeColumns .columnHeaderWrap{
    margin: -1px -1px 0;
}
#threeColumns .columnHeader {
    width: 100%;
}
#threeColumns .title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    margin: 1em 1em 1em 1em;
    color: #333;
}
#threeColumns .subtitle {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #0069bc;
    margin: -1.5em 1em 2.5em 1em;
    font-weight: 600;
}
#threeColumns .content {
    font-size: 16px;
    font-weight: 500;
    padding: 0 32px;
    line-height: 1.75em;
}
#threeColumns .textLinksWrap {
    padding: 0.5em 32px 2em;
}
#threeColumns .textLink {
    display: block;
    margin: 0.5em 0;
    text-decoration: none;
}
#threeColumns .textLink i {
    margin-left:0.5em
}
#threeColumns .buttonLinksWrap {
    padding: 0.5em 0 0em; 
    /* position: absolute; */ bottom: 0; left: 0; right: 0;
}
#threeColumns .buttonLink {
    background-color: #0069BC;
    color: #FFFFFF;
    display: block;
    text-transform: uppercase;
    margin: 0em 1em 1em;
    padding: 1em;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition:0.5s;
}

#threeColumns .buttonLink:hover {
    background-color:#00569A;
}

@media (max-width:1200px) {
    #threeColumns .content{
    font-size: 14px;
    padding: 0 24px;
}

#threeColumns .title {
    font-size: 24px;
}

#threeColumns .textLinksWrap {
    padding: 0.5em 24px 2em;
}
}
@media (max-width:767px) {
    #threeColumns {
        display: block;
    
        margin: 2em 0 0;
}
    #threeColumns .column {
        display: block;
        float: none;
        height: 100%;
        max-width: 500px;
        margin: 0 auto;
        margin-bottom: 1em;
    }
}
