.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 0px;
	border-radius: 15px;
	margin-bottom: 15px;
	margin-top: 15px;
}

.card-img-top{
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	max-height: 336px;
	min-height: 336px;
}

.card-body{
	padding: 15px;
	background-color: #d4d4d4;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.card-title{
	text-align: center;
	font-size: 15px;
}

.card-text{
	color: #222222;
	text-align: left;
}

@media (min-width: 992px)
{
	.flexcard-container {
		text-align: center; /* set all inline elements to be centered */
	}
	
	.flexcard-container .flexcard {
	 display: inline-block; /* set the columns to inline blocks so they are centered */
	 float: none;
	}
}