.rw_team_overzicht {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.rw_team_overzicht > .teamlid {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.rw_graphic {
    float: left;
    box-sizing: border-box;
	position:relative;
	transform-style: preserve-3d;
}
.rs_portrait {
    max-width: 220px;
    height: 224px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 999;
	transform-style: preserve-3d;
	transform: translateZ(0px) translateY(0px);
}
.rs_portrait > img{
	z-index: 999;
}
.rw_bg {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding-top: 95%;
    z-index: -1;
	transform-style: preserve-3d;
	transform: translateZ(-20px)
}
.rw_gradient {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 190px;
    bottom: 0px;
    z-index: 0;
	background-image: radial-gradient(rgba(255,255,255,0.2) , rgba(255,255,255,0.0));
	transform-style: preserve-3d;
	transform: translateZ(-21px)
}
.teamlid{
		margin-top: 40px !important;
}
.teamlid > * {
    font-family: 'Montserrat', sans-serif;
    float: left;
    width: auto;
}
.teamlid > h3 {
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
	padding-bottom: 3px;
}
.teamlid > h5 {
    font-weight: 400;
    font-size: 15px;
}
.teamlid > a {
    font-weight: 700;
    color: #ec622c;
}
@media only screen and (max-width: 1100px) {
    .rw_team_overzicht {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
  }
  @media only screen and (max-width: 700px) {
    .rw_team_overzicht {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (max-width: 400px) {
    .rw_team_overzicht {
        display: grid;
        grid-template-columns: 1fr;
    }
  }