.boxwrap section {
    position: relative;
    background-color: #5389c2;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 50px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.boxwrap section * {
    color: #fff !important;
}

.boxwrap section h2 {
    font-size: 24px;
    text-transform: none;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.boxwrap section:hover {
    background-color: #fff;

}

.boxwrap section:hover * {
    color: #5389c2 !important;
}

.boxwrap section .textwrap {
    padding: 30px 20px 60px 20px;

}

.boxwrap .boxlink {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #494949;
    text-align: center;
}

.boxwrap .columns:hover .boxlink {
    background-color: #b1c800;
}

.boxwrap .boxlink a {
    display: block;
    color: #fff !important;
    padding: 15px 25px;
    text-decoration: none;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

@media screen and (min-width: 640px) {
    .boxwrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .boxwrap section {
        width: calc(33.33% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}