/*
Theme Name: Website Theme
Text Domain: website-theme
*/

.services-display {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	gap: 10px;
}
.services-display li {
	background: #ffffff;
	padding: 15px;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 5px;
	font-size: 0.9em;
}

@media (min-width: 999px) {
	.services-display li {
		flex-basis: calc(25% - 10px);
	}
}
@media (min-width: 500px) and (max-width: 999px) {
	.services-display li {
		flex-basis: calc(50% - 10px);
	}
}
@media (max-width: 500px) {
	.services-display li {
		flex-basis: 100%;
	}
}