.intro-title p{
    margin-bottom: 50px;
}
.single-intro{
    overflow: hidden;
}
.intro-img{
    width: 100%;
    height: 222px;
    background-size: cover;
    background-position: center;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.intro-img:after{
    content: "";
    position: absolute;
    top: 0px; 
    left: 0px; 
    width: 100%;
    height: 100%;
    background: rgba(76,137,226, .5);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
}
.single-intro:hover .intro-img:after{
    opacity: 1;
}
.single-intro:hover 
.intro-details{
    border-bottom: 4px solid #133D7A;
}
.intro-details{
    background: #fff none repeat scroll 0 0;
    border-radius: 4px;
    box-shadow: 0 2px 29px 0 rgba(15, 46, 64, 0.12);
    max-height: 210px;
    margin: -50px auto 50px;
    padding: 10px 20px;
    position: relative;
    width: 88%;
    overflow: hidden;
    border-bottom: 4px solid #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0.8;
    filter:alpha(opacity=80);
}
.intro-details h3{
    margin-top: 0;
}