.grid-sizer {
    width: 25%;
}
.grid-item {
    position: relative;
    overflow: hidden
}
.grid-item .image-defaultWrapper img {
    display: block;
    width: 100%
}
.grid-item .image-defaultWrapper img {
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.video-defaultCaption,.image-defaultCaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90px;
    background-color: rgb(35, 41, 103);
    background-color: rgba(35, 41, 103, 0.9);
}

.grid-item:hover .image-defaultWrapper img {
    filter: grayscale(1) blur(1px);
    -webkit-filter: grayscale(1) blur(1px);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.grid-item .item-text-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.grid-item .item-text-wrapper-body {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 15px 0;
}

@media screen and (max-width: 575.98px) {
    .video-defaultCaption,.image-defaultCaption {
        position: relative;
    }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
    .video-defaultCaption {
        position: relative;
    }
}