section.block_team {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.team_member {
    display: flex;
    /* flex-grow: 1; */
    flex-direction: column;
    position: relative;
    width: calc(25% - 40px);
    margin: 0 20px 65px;
    text-align: center;
}

.team_member_image img {
    border-radius: 50%;
}

h3.team_member_name {
    font-size: 18px;
    margin: 20px 0 0;
}

span.team_member_position {
    font-size: 18px;
}

.team_member_content {
    position: absolute;
    width: calc(100% + 60px);
    background: #fff;
    top: 62.5%;
    left: -30px;
    padding: 20px 20px 5px;
    text-align: left;
    box-shadow: 0 10px 25px 0 rgb(0 0 0 / 30%);
    border-radius: 8px;
    font-size: 15px;
    z-index: 99;
    /*z-index: -1;
    opacity: 0;
    -webkit-transition: all 1.35s ease .35s;
       -moz-transition: all 1.35s ease .35s;
        -ms-transition: all 1.35s ease .35s;
         -o-transition: all 1.35s ease .35s;
            transition: all 1.35s ease .35s; */
}
/*
.team_member.active .team_member_content {
    z-index: 2;
}

.team_member .team_member_content.open {
    opacity: 1;
}*/



@media only screen and (max-width: 900px) {

.team_member {
    width: calc(50% - 40px);
}

.team_member_content {
    width: 100%;
    left: auto;
}

}



@media only screen and (max-width: 900px) {

.team_member_content {
    width: 200%;
}

.team_member:nth-child(even) .team_member_content {
    width: 200%;
    left: -100%;
}

}



