.col-1 {
    width: 100%;
}
.custom-row {
	/* display: grid; */
	/* gap: 20px; */
	flex-wrap: wrap;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 36px;
}
.team-box img {
	width: 100%;
	max-width: 100%;
	height: 400px;
	object-fit: cover;
}
.team-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
}
.team-box h2 a {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 0px 20px;
    text-decoration: none;
    color: #333;
}
	
@media screen and (max-width:767px) {
		
.custom-row {
	display: block;
	gap: 20px;
}
.col-1 {
	width: 100%;
}
.team-box {
	margin-bottom: 20px;
}
	
}