.box{
    position: relative;
    overflow: hidden;
}
.box img{
    width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 0.30s ease 0s;
}
.box:hover img{
    transform: translateY(-10%);
}
.box-content{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: #1b1b1b;
    transform: translateY(100%);
    transition: all 0.30s ease 0s;
}
.box:hover .box-content{
    transform: translateY(0);
}
.box-content .title{
    color: #fff;
    margin: 0;
    padding: 0;
    display:inline-block;
    text-transform: capitalize;
}
.box-content .read{
    float: right;
    display: inline-block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    background: #1dcfd1;
}
.box-content .read:hover{
    text-decoration: none;
}
@media only screen and (max-width: 990px){
    .box{ margin-bottom: 20px; }
}
@media only screen and (max-width: 359px){
    .box-content .title{ font-size: 19px; }
    .box-content .read{ width: 85px; }
}


/*-----*/
.boxpdf{
    overflow:hidden;
    position:relative;
}
.boxpdf .box-img img{
    width: 100%;
    height: auto;
}
.boxpdf .content{
    width: 100%;
    height: 100%;
    padding:60px 30px;
    background:rgba(0,0,0,0.8);
    position: absolute;
    top: 0;
    left: -100%;
    transition:all 0.50s ease 0s;
}
.boxpdf:hover .content{
    left:0;
}
.boxpdf .title{
    font-size:18px;
    color:#fff;
    text-transform:capitalize;
    font-weight: bold;
    margin:0 0 30px 0;
}
.boxpdf .description{
    font-size:14px;
    color:#fff;
    margin-bottom:30px;
}
.boxpdf .read-more{
    padding:7px 15px;
    background:#cc0d0d;
    color:#fff;
    margin: 10px;
    text-transform: capitalize;
}
.boxpdf .read-more span {background-color: #000; padding:4px 6px;}
.boxpdf .read-more:hover span {background-color: #fff; color: #000; padding:4px 6px;}
@media only screen and (max-width: 990px){
    .boxpdf{
        margin-bottom:20px;
    }
}
@media only screen and (max-width: 480px){
    .boxpdf .content{
        padding: 20px 30px;
    }
}