
.container-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 46;
    margin-top: -50em;
    margin-bottom: 12em;
}
.card {
    width: 400px;
    margin: 10px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.card-header {
    background-color: #f8f9fa;
    border-radius: 16px 16px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    padding: 10px;
	position: relative;
	height: 300px;
	z-index: 1;
}
.card-header h2 {
    margin: 0;
	z-index: 10;
	padding: 10px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 16px;
}
.card-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px 16px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.card-body {
	padding: 10px;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}