.five-column-grid-container{
    margin: auto;
    max-width: calc(278px * 5 + 20px);
    text-align: center;
}
.grid{
    width: 100%;
    padding: 0 10px;
}
.grid h4{
    color: #fff;
}
.grid a:hover h4{
    color: #24C2E8;
}
.grid-item{
    width: 258px;
    height: 240px;
    margin: 0px 10px 20px 10px;
    color: #fff;
    position: relative;
    text-align: left;
    display: block;
}
.grid-item.large{
    height: 500px;
}
.grid-item::after{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(227,227,227,0) 55%, rgba(128,128,128,1) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}
.grid-item *:not(:first-child){
    z-index: 2;
}
.grid-item-content{
    padding: 25px 20px;
}
.five-column-grid-container .subtitle{
    max-width: 730px;
    margin: auto;
}
@media screen and (max-width:1439px) {
    .five-column-grid-container{
        max-width: calc(288px * 3);
    }
}
@media screen and (max-width:767px) {
}