.Section{
    background-color: #fbfbfb;
}
.BoardMember{
    padding: 40px 35px 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.15);
    transition: all ease 0.5s;
}
.BoardMember h2{
    color: #3d5472;
    text-align: center;
    margin: 15px 0;
}
.BoardMember>p{
    text-align: center;
    color: #888;
}
.BoardMember img{
    width: 250px;
    height: 250px;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.15);
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right bottom, #BDCDD6 , #93BFCF, #6096B4) border-box;
    border-radius: 50%;
    border: 4px solid transparent;
    outline: 4px solid white;
}
.HiddenPart{
    margin-top: 30px;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: white;
}
.HiddenPart p{
    font-family: IRANSansWebFaNum , Nunito-Regular !important;
    color: #666;
}
.HiddenPart h5{
    color: #7286D3;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #7286D3;
    border-top: 2px solid #7286D3;
}
.show{
background-color: cornflowerblue;
    padding:10px 20px;
    text-align: center;
    border-radius: 7px;
    color: white;
    transform: scale(1.04);
    margin-top: 20px;
    transition: all ease 0.5s;
}
.show:active{
    transform: scale(1.2);
}