@charset "utf-8";
/* CSS Document */

.our-team .team{
    position: relative;
    padding: 10px 0 10px 13px;
}
.our-team .team:before{
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #a6d3b2;
}
.our-team .pic{
    position: relative;
    overflow: hidden;
}
.our-team .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(44,55,64, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .pic:after{
    opacity: 1;
}
.our-team .pic img{
    width: 100%;
    height: auto;
}
.our-team .social-links{
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    position: absolute;
    bottom: -40%;
    left: 0;
    text-align: center;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.our-team:hover .social-links{
    bottom: 20px;
}
.our-team .social-links li{
    display: inline-block;
    margin-right: 5px;
}
.our-team .social-links li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #fdfffc;
    font-size: 18px;
    color: #fdfffc;
    transition: all 0.5s ease 0s;
}
.our-team .social-links li a:hover{
    background: #50B9CE;
    border: 1px solid #50B9CE;
}
.our-team .team-info{
    padding: 20px;
    background: #fff;
	font-family: 'poppins', sans-serif;
    color: #8494A0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.our-team .team-info:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: #2C3740;
    z-index: -1;
    transition: all 0.5s ease 0s;
}
.our-team:hover .team-info:before{
    left: 0;
}
.our-team .title{
    font-family: 'Raleway', sans-serif;
	font-size: 18px;
	Color: #1c5566;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}
.our-team:hover .title{
    color: #13bdca;
}
.our-team .post{
	font-family: 'Raleway', sans-serif;
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: ##13bdca;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.our-team:hover .team-info{
    color: #B2B7BB;
}
.our-team:hover .post{
    color: #fdfffc;
}
.our-team .description{
    font-size: 14px;
    line-height: 22px;
}
@media screen and (max-width: 990px){
    .our-team{ margin-bottom: 20px; }
}
