CSS
.our-team{
text-align: center;
}
.pic{
position: relative;
}
.pic img{
width: 100%;
height: auto;
}
.social_media_team{
position: absolute;
top: 0;
left:0;
width: 100%;
height: 100%;
transition: all 0.3s ease 0s;
}
.team_social{
list-style: none;
padding: 0;
position: relative;
top:90%;
transition: all 0.3s ease 0s;
opacity: 0;
}
.team_social > li{
display: inline-block;
}
.team_social > li > a{
width: 25px;
height: 25px;
display: block;
color: #000000;
border: 1px solid #000;
border-radius: 50%;
margin: 0 15px 2px 0;
line-height: 24px;
font-size: 14px;
}
.post-title{
color:#000;
font-size: 15px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 3px;
margin: 15px 0 3px 0;
}
.post{
font-size: 13px;
color:#777;
line-height: 20px;
text-transform: uppercase;
letter-spacing: 3px;
}
.our-team:hover .social_media_team{
background-color: rgba(255, 255, 255, 0.75);
transition: all 0.3s ease 0s;
}
.our-team:hover .team_social{
top:80%;
opacity: 1;
transition: all 0.3s ease 0s;
}
@media screen and (max-width: 990px){
.our-team{
margin-bottom: 30px;
}
}