.our-team{
    text-align: center;
}

.our-team .pic{
    position: relative;
    overflow: hidden;
}

.our-team .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(248, 152, 29, 0.5), rgba(248, 152, 29, 0.4));
    opacity: 0;
    transition: all 0.4s ease 0s;
}

.our-team:hover .pic:after{
    opacity: 1;
}

.our-team .pic img{
    width: 100%;
    height: auto;
    transition: all 0.4s ease 0s;
}

.our-team:hover img{
    transform: scale(1.8,1.8);
}

.our-team .social-link{
    width: 80%;
    position: absolute;
    top: 80%;
    left: 10%;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    text-align: center;
    border: 2px solid #fff;
    opacity: 0;
    transform: scale(0.8);
    z-index: 1;
}

.our-team:hover .social-link{
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease 0s;
}

.our-team .social-link li{
    display: inline-block;
    margin: 0 5px;
}

.our-team .social-link li a{
    display: inline-block;
    font-size: 19px;
    color: #fff;
}

.our-team .social-link li a:hover{
    text-decoration: none;
}

.our-team .post{
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 15px;
    text-transform: uppercase;
	font-family: 'PT Sans', sans-serif;
}

.our-team .team-title{
    font-size: 1em;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 0 0;
font-family: 'Oswald', sans-serif;
}

.our-team .team-title:after{
    content: "";
    display: block;
    width: 20%;
    margin: 15px auto;
}

.our-team .description{
    font-size: 14px;
    color: #666;
    line-height: 25px;
}

@media screen and (max-width: 990px){
    .our-team{ margin-bottom: 25px; }
}