
.box{
background: #ff0000;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
overflow: hidden;
position: relative;
}
.box img{
width: 100%;
height: auto;
transition: all .5s ease 0.1s;
}
.box:hover img{
opacity: 0.35;
filter: blur(3px);
transform: scale(1.1);
}
.box .box-content{
width: 100%;
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
}
.box .box-content:before{
content: "";
opacity: 0;
transform:translateY(-50%);
position: absolute;
top: 55%;
left: 50%;
right: 50%;
transition: all 0.4s;
}
.box:hover .box-content:before{
opacity: 0.6;
left: 50px;
right: 50px;
}
.box .title{
color: #fff;
font-size: 18px;
font-weight: 300;
text-transform: uppercase;
margin: 0 0 20px;
opacity: 0;
transition: all 0.5s linear 0.2s;
}
.box .post{
color: #5dff00;
font-size: 16px;
font-weight: 300;
letter-spacing: 2px;
text-transform: uppercase;
display: block;
opacity: 0;
transition: all 0.5s linear 0.2s;
}
.box:hover .title,
.box:hover .post{
text-shadow: 0 0 0 rgba(255, 255, 255, 0);
opacity: 1;
}

@media only screen and (max-width: 768px) {
.box {
margin: 0 0 30px;
max-width: 100%;
}

    .box .title {
        margin: 0 20px;
        font-size: 14px;
    }
    .box .post {
        font-size: 10px;
    }
}
