.team{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
.team_member{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    box-sizing: border-box;
    padding: 0 20px;
}
.team_member_image{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
.team_member_name{
    font-size: 1.2em;
    margin:0;
    margin-bottom: 10px;
    color: #424242;
}
.team_member_position{
    font-size: 1.2em;
    margin: 0;
    margin-bottom: 20px;
    color: #636e74;
}
.team_member_degree{
    font-size: 1.2em;
}
.team_member_description{
    font-size: 1.1em;
    line-height: 1.3em;
    max-height: 95px;
    overflow: hidden;
    margin: 0;
    color: #6f7c81;
    transition: max-height 1s ease-in-out;
    margin-bottom: 10px;
}
.team_member_description_open{
    max-height: 850px;
}
.team_see_more_button{
    margin-bottom: 20px;
    background-color: #AD0016;
    border: none;
    color: white;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    transition: all 0.3s;
}
.team_see_more_button:hover{
    background-color: #c0001a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
}
.team_member_mailto{
    margin-bottom: 80px;
    text-decoration: none;
    font-size: 1.3em;
    color: #444a4d;
    font-weight: 600;
}
@media only screen and (min-width: 700px) {
    .team{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-evenly;
        padding: 60px 0;
    }
    .team_member_description_open{
        max-height: 550px;
    }
}
