.portfolio-filter{
    line-height: 55px;
    text-transform: uppercase; 
    text-align: center;
}
.slide-up{
    position: relative;
    height: 270px;
    overflow: hidden;
    box-shadow: 0px 0px 3px 1px #b1040e;
}
.forImgs{
    position: relative;
    height: 250px;   
    top: 0%;
    left: 0%;
    width: 100%;
    transition: all .5s ease;
}
.forImgs img{
    position: absolute;
    height: auto;
    width: 100%;
}
.slide-up:hover .forImgs{
    top: -20%;
}
.otherDetail{
    position: absolute;
    color: #000;
    bottom: -100%;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    background-color: #db261c;
    color: #fff;
    padding: 5px 15px;
    z-index: 555;
    transition: all .3s ease;
}
.slide-up:hover .otherDetail{
    bottom: 0%;
}
.gall{
    padding: 0;
}

@media(min-width: 768px){
    .slide-up{
        height: 300px;
    }
    .gall{
        padding: 0 15px;
    }
    .gall .slide-up{
        margin-bottom: 30px;
    }
}

