.teambox{
    position: relative;
    overflow: hidden;
    text-align: center;
}
.teambox .intro{
    position: absolute;
    bottom: 0%;
    left: 0;
    text-align: left;
    background: #1a237e;
    color: #fff;
    padding: 26px 30px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.teambox:hover .intro{
    bottom: -90px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.teambox .intro h4{
    color: #fff;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.teambox .intro h6{
    color: #ff6d00;
    font-weight: 400;
    margin-top: 6px;
    margin-bottom: 0px;
}
.teambox .details{
    position: absolute;
    bottom: 0;
    opacity: 0;
    left: 0;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,0.9);
    padding: 30px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.teambox:hover .details{
    opacity: 1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.teambox .details .details-inner{
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.teambox .details h3{
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}
.teambox .details h5{
    color: #ff6d00;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.teambox .details p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
.teambox .details a.link,.teambox .details a.link i{
    color: #ff6d00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 30px;
    margin-top: 20px;
}
.teambox .details a.link:hover,.teambox .details a.link:hover i{
    color: #fff;
}
.team-social{
    margin-top: 25px;
    list-style: none;
}
.team-social .social-item{
    float: left;
    margin-right: 20px;
    margin-left: 20px;
}
.team-social .social-item:first-child{
    margin-left: 0px;
}
.team-social .social-item:last-child{
    margin-right: 0px;
}
.team-social .social-item a{
    color: #ff6d00;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}
.team-social .social-item a:hover{
    color: #fff;
}