.b2 .box{
    display: block;
    float: left;
    background: #fff;
   
    text-align: center;
    overflow: hidden;
    position: relative;
    margin:5px;
}
.b2 .box img{
    width: 270px;
    height: 212px;
    height: auto;
    transition: all 0.4s ease-in-out 0.2s;
}
.b2 .box:hover img{
    transform: scale(0);
    transition-delay: 0s;
}
 .b2 .box .box-content{
    display: block;
    width: 235px;
    height: 192px;
    background: #425770;
    color: #fff;
    padding:20px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s ease-in 0s;
}
 .b2 .box .box-content p{
    margin-top:20px;
 }
 .b2 .box:hover .box-content{
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.4s;
}
 .b2 .box .title{
    font-size: 20px;
    font-weight: 800;
    border-bottom: 1px solid #334a65;
    padding-bottom: 10px;
    margin-top: 0;
    text-transform: capitalize;
}
 .b2 .box .description{
    font-size: 13px;
    font-style: italic;
    line-height: 20px;
    margin-bottom: 30px;
}
 .b2 .box .read{
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: #132d4d;
    padding: 7px 20px;
    text-transform: capitalize;
}
@media only screen and (max-width: 1120px){
     .b2 .box{ margin-bottom: 20px; }
}
@media only screen and (max-width: 489px){
     .b2 .box .box-content{ padding: 20px; }
}
@media only screen and (max-width: 369px){
     .b2 .box .box-content{ padding: 10px; }
}