.slider-project .item::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    

    background-color: rgba(0, 0, 0, 0);
    transition: all 0.7s ease;

    
}
.slider-project .item .overlay-title{
    visibility: hidden;
    opacity: 0;
    transition: all 0.7s ease;
    bottom: -30px;
}
.slider-project .item:hover .overlay-title{
    visibility: visible;
    opacity: 1;
    bottom: 0;
}
.slider-project .item{
    overflow: hidden;
}
.slider-project .item:hover::before{
    background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 1024px){
    .project-home .item .img img{
        height: 220px!important;
    }
}
