.service-card,
.service-card a {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	width: 100%;
	height: 100%;
	text-align: center;

}
.service-card .card-img {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	box-shadow: 0px 8px 20px #0000004D;
    border-radius: 100%;
	overflow: hidden;
}
.service-card .card-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.service-card .card-wrapper {
	padding: 1rem;
}
@media only screen and (max-width: 781px) {
	.service-card .card-wrapper p { display: none; }
}