.our-team{
    border: 1px solid #dedede;
    text-align: center;
    color: #8b2635;
    overflow: hidden;
    transition: all 0.3s ease 0s;
    margin-bottom: 30px;
}
.our-team:hover{
    background: #8b2635;
    color: #fff;
}

.our-team .pic{ position: relative; }
.our-team .pic img{
    width: 72%;
    height: 50%;
    transition: all 0.3s ease 0s;
    border-radius: 50px;
}
.our-team:hover .pic img{ transform: translateY(-10px); }
.our-team .social{
    width: 20%;
    height: 100%;
    background: #8b2635;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 0;
    left: -50%;
    transition: all 0.5s ease 0s;
}


.our-team:hover .social{ left: 0; }
.our-team .social li{ display: block; }
.our-team .social li a{
    display: block;
    padding: 10px 0;
    font-size: 20px;
    color: #fff;
    transition: all 0.5s ease 0s;
    text-decoration: none;
}
.our-team .social li a:hover{ color: #ff9b19; }
.our-team .social li a:hover{ color: #ff9b19; }
.our-team .team-content{ padding: 25px 0; }
.our-team .title{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    text-decoration: underline;
}
.our-team .post{
    display: block;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}

