.our-team{
text-align: center;
background: #161616;
border-radius: 353px 353px 0 0;
transition: all 0.3s ease 0s;
}
.our-team:hover{
background: #816eda;
}
.our-team .pic{
overflow: hidden;
position: relative;
border-radius: 50%;
}
.our-team .pic:before{
content: "";
width: 100%;
height: 100%;
background: #000;
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: all 0.5s ease 0s;
}
.our-team:hover .pic:before{
opacity: 0.5;
}
.our-team .pic img{
width: 100%;
height: auto;
}
.our-team .team-content{
padding: 30px 0;
}
.our-team .title{
font-size: 20px;
font-weight: bold;
line-height: 30px;
color: #fff;
margin: 0;
}
.our-team .post{
display: block;
font-size: 16px;
color: #fff;
margin-bottom: 16px;
}
.our-team .social{
padding: 0;
margin: 0;
list-style: none;
}
.our-team .social li{
display: inline-block;
margin-right: 10px;
}
.our-team .social li:last-child{
margin-right: 0;
}
.our-team .social a{
display: inline-block;
width: 33px;
height: 33px;
border-radius: 50%;
font-size: 16px;
color: #404041;
line-height: 30px;
transition: all 0.3s ease 0s;
}
.our-team .social a:hover{
background: #151515;
color: #fff;
}
@media only screen and (max-width: 990px){
.our-team{ margin-bottom: 30px; }
}