.abt_team .box:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.9);
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.abt_team .box:hover:before{
    opacity: 1;
}
.abt_team .box{
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 300px;
    color: #fff;
}
.abt_team .box:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 170%;
    top: 0;
    transform: skewX(45deg);
    transition: all 1s ease 0s;
    background-color:white ;
    z-index: 1;
}
.abt_team .box:hover:after{
    left: -170%;
    top: 0;
}
.abt_team .box img{
    width: 100%;
    height: 100%;
}
.abt_team .box .box-content{
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    transition: all 0.5s ease 0s;
}
.abt_team .box:hover .box-content{
    bottom: 40%;
}
.abt_team .box .box-content .name{
    font-size:22px;
    margin: 0 0 10px;
    display: block;
    text-transform:uppercase;
    letter-spacing: 1px;
}
.abt_team .box .box-content .post{
    display: block;
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
}

@media screen and (max-width:990px){
    .abt_team .box{
        margin-bottom: 30px !important;
    }
}