
/* board members */
.tearm-container{
    background-color: white;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    margin-bottom: 50px;
    padding-bottom: 81px;
}
.tearm-title{
    font-size: 30px;
    
}
.mt-tearm{
    margin-top: 100px;
}
.profile img{
    width: 50%;
    height: 50%;
    border-radius: 50%;
}
.tearm-card{
    border-radius: 15px;
    margin-left: 30px;
    margin-right: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)

}
.tearm-body{
    position: relative;
    bottom: 0px;
}

.mt-card{
   padding-bottom: 5px;
}


.tearm-title{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.tearm-title:before,
.tearm-title:after{
    content: '';
    border-top: 2px solid;
    opacity: .2;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}
.tearm-title:after{
    margin: 0 0 0 20px;
}

/* team members */

#team {
    padding: 60px 0;
    text-align: center;
    
    
}
#team h2 {
    margin-bottom: 85px;
    font-weight: 200;
    font-size: 30px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#team h2:before,
#team h2:after{
    content: '';
    border-top: 2px solid;
    opacity: .2;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}
#team h2:after{
    margin: 0 0 0 20px;
}

#team .member {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 15px 0px 15px 0px;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.4);
   
}
#team .member .member-info {
    display: block;
    position: absolute;
    bottom: 0px;
    left: -200px;
    transition: 0.4s;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.4);
}
#team .member:hover .member-info {
    left: 0px;
    right: 0px;
}
#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}
#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: white;
}
#team .member .social-links {
    margin-top: 15px;
}
#team .member .social-links a {
    transition: none;
    color: #fff;
}
#team .member .social-links a:hover {
    color: #ffc107;
}
#team .member .social-links i {
    font-size: 18px;
    margin: 0 2px;
}
.tearm-card:hover{border-left: 2px dashed #194d86;border-bottom: 2px dashed #194d86;
}
.tearm-card img:hover{border: 2px dashed #194d86;}