CSS
.our-team{
text-align: center;
}
.pic{
position: relative;
}
.pic img{
width: 100%;
height: 100%;
}
.social_media_team{
position: absolute;
top:0;
width: 100%;
height: 100%;
opacity: 0;
transition: all 0.5s ease 0s;
}
.description{
position: relative;
top:32%;
padding: 0 30px;
color:#fff;
line-height: 23px;
font-size: 15px;
}
.team_social{
list-style: none;
padding: 0;
position: relative;
top:35%;
}
.team_social > li{
display: inline-block;
margin: 0 5px;
}
.team_social > li > a{
width: 36px;
height: 36px;
line-height: 36px;
border: 1px solid #fff;
border-radius: 50%;
display: block;
color:#fff;
transition: all 0.2s ease-out 0s;
}
.team_social > li > a:hover{
background: #e98b39;
border-color: #e98b39;
transition: all 0.2s ease-out 0s;
}
.post-title{
font-size: 18px;
color: #000;
font-weight: 500;
line-height: 1.1;
text-transform: capitalize;
}
.post{
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 10px;
display: block;
color:#93a0aa;
}
.our-team:hover .social_media_team{
background-color: rgba(233, 139, 57, 0.6);
opacity: 1;
transition: all 0.5s ease 0s;
}
@media screen and (max-width: 990px){
.our-team{
margin-bottom: 30px;
}
}