.edu-items{
    position: relative;
    margin-top: 20px;
}
.edu-items .image{
    overflow: hidden;
}

.edu-items .image img{
    width: 100%;
    transition: all 0.5s;
}
.edu-list a:hover .image img{
    transform: scale(1.1);
}

.edu-items p{
    position: absolute;
    width: 100%;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    bottom: 0;
    left: 0;
    content: '';
    text-align: center;
}

@media (max-width: 992px) {
    .edu-items p{
        font-size: 14px;
        line-height: 1.6;
    }
    .edu-items{
        margin: 10px 0;
    }
}