/* Styling for employee listing */
.tx-hebo-employees {
	margin-bottom: 0px !important;
}

ul.employees {
	list-style-type: none;
	padding: 0;
	margin-right: -25px;
	box-sizing: border-box;
	
	display: flex;
	flex-wrap : wrap;
	justify-content : left;
	align-items : flex-start;
}

ul.employees li {
	width: 33.33%;
	/*display: inline-block;*/
	padding-right: 25px;
	box-sizing: border-box;
	margin-right: -5px; /* remove gap between list items */
}

ul.employees li.employee {
	margin-bottom: 65px !important;
}

ul.employees li > * {
	display: block;
}

.employee-name {
	color: #333;
	font-weight: bold;
	margin-top: 20px;
}

.employee-category { 
	margin-bottom: 10px;
	text-transform: uppercase;
}

.employee-phone {
	color: #777;
}

.employee-image {
	width: 100%;
	height: auto;
	margin: 0px;
}

@media screen and (max-width: 768px) {
	ul.employees li {
		width: 50%;
	}
}

@media screen and (max-width: 475px) {
	ul.employees li {
		width: 100%;
	}
}