.info .item{
    position: relative;
    margin-bottom: 40px;
    padding: 30px 40px;
    overflow: hidden;
    cursor: pointer;
}
.short{
    margin-top: 20px;
    margin-bottom: 30px;
    height: 3em;
}
.info .title{
    font-size: 20px;
}
.info .date{
    font-size: 24px;
}
.info .year{
    font-size: 16px;
}
.info .img-div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -99;
}
.info .item img{
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.info .item:hover{
    background-color: rgba(0,0,0,0.5);
}
.info .item:hover img{
    width: 106%;
    opacity: 1;
}
.info a{
    text-decoration: none;
}
.search-part{
    margin-bottom: 30px;
}
