
.box{
    background: #333;
    overflow: hidden;
    position: relative;
}
.box img{
    width: 100%;
    height: auto;
    transform: scale(1.5) translateX(0);
    transition: all 0.4s ease-out 0s;

}
.box:hover img{
    opacity: 0.4;
    filter: blur(3px);
    transform: scale(1.5) translateY(-12px);
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}
.box .icon li{
    margin: 0 6px 0 0;
    display: inline-block;
    opacity: 0;
    transform: rotateX(90deg);
    transition: all .3s ease-in-out 0.2s;
}
.box .icon li:nth-child(2){ transition-delay: .3s;  }
.box:hover .icon li{
    opacity: 1;
    transform: rotateX(0deg);
}
.box .icon li a{
    color: #fe5762;
    background: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 33px;
    height: 36px;
    width: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease-in-out;
}
.box .icon li a:hover{
    color: #fff;
    background: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}
.box .title{
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    padding: 0 0 5px;
    border-bottom: 1px solid #fff;
    transform: rotateX(90deg);
    position: absolute;
    top: 10px;
    left: 12px;
    transition: all .5s ease-in-out;
}
.box .post{
    color: #fff;
    font-size: 15px;
    font-style: italic;
    text-transform: capitalize; 
    padding: 0 0 1px;
    border-bottom: 1px solid #fff;
    opacity: 0;
    transform: translateX(-20px);
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all 0.4s ease-in-out;
}
.box:hover .title{ transform: rotateX(0deg); }
.box:hover .post{
    opacity: 1;
    transform: translateX(0);
}
.col-md-3 .col-sm-6{

	position:relative;
	width:100%;
	min-height:1px;
	padding-right:2px;
	padding-left:2px
}
@media only screen and (max-width:990px){
    .box{ margin: 0 0 5px; }
    .box .title{
    color: #fff;
    font-size: 18px;
   
}
.box .post{
    color: #fff;
    font-size: 12px;
   
}
}

