.image-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	width: 100%;
	height: 100%;
	padding: 15px;
	border: 0;
	box-shadow: 0px 8px 20px #0000004D;
    border-radius: 6px;
	overflow: hidden;
}
.card-img {
	width: 100%;
	height: 0;
	padding-bottom: 62%;
	overflow: hidden;
}
.card-img img {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	object-fit: contain;
}
.image-card h2 {
	font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
	.card { margin-left: -24px; margin-right: -24px; width: calc(100% + 48px); border-radius: 0; }
}