.row_flex{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
	justify-content: center;
}
.row_flex .column{
    max-width: 20%;
    flex-basis: 20%;
    margin-bottom:25px; 
}
.row_flex .column .column-inner{
    box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
    text-align: center;
}
.row_flex .column .column-inner a{
    display: inline-block;
}
.row_flex .team_img{
    width:180px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
}
.row_flex .team_img img{
    border-radius: 100px;
    object-fit: cover;
    height: 100%;
    max-width: 100%;
}
.row_flex .team_text{
    display: inline-block;
    padding-top:20px;
    text-align: center;
    width:80%;
    margin:0 auto;
}
.row_flex .team_text h4{
    font-size:20px;
}
.row_flex .team_text h4,
.row_flex .team_text p{
    margin:0;
}
.row_flex .team_text p{
    padding-bottom:12px;
    color:#d77f35;
    font-family: 'Roboto';
    font-weight: 500;
}
@media (min-width:500px) and ( max-width: 1023px){
    .row_flex .column{
        max-width: 33.3333%;
        flex-basis: 33.3333%;
    }
    .row_flex .column{
        margin-bottom:25px;
    }
}
@media screen and ( max-width: 560px){
    .row_flex .column{
        max-width: 50%;
        flex-basis: 50%;
    }
    .row_flex .column{
        margin-bottom:25px;
    }
    
}
@media (min-width:340px) and ( max-width: 400px){
    .row_flex .column .team_img{
        width:120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    .row_flex .column .team_title{
        font-size: 20px;
    }
}
@media screen and ( max-width: 339px){
    .row_flex .column{
        max-width: 100%;
        flex-basis: 100%;
    }
}