.cards {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50vh;
}
.custom-card {
	position: absolute;
	width: 100%;
	top: 0px;
	color: #fff;
	background-color: var(--global-palette9);
	margin-block: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1rem;
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.custom-card > * {
	width: calc(50% - 1rem);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.custom-card > .card__content {
	padding: 1.5rem;
	color: var(--global-palette3);
}
.custom-card .card__content a.button.card__link {
    width: max-content;
    margin-block-start: 1rem;
    font-size: 0.9rem;
}
.card__img img {
	height: 40vh;
	object-fit: cover;
	object-position: center;
	border-radius: 1rem;
	box-shadow: -2px 0px 12px rgba(0,0,0,0.1);
}
.card1 { top: 0;}
.card2 { top: 1rem; }
.card3 { top: 2rem; }
.card4 { top: 3rem; }
.opacity {
	-moz-transition: 0.4s ease;
	-ms-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
	-webkit-transition: 0.4s ease;
	opacity: 0.6;
}
.scale {
	moz-transition: 0.4s ease;
	-ms-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
	-webkit-transition: 0.4s ease;
	width: 95%;
}
@media (max-width: 900px) {
	.custom-card {
		flex-direction: column;
	}
	.custom-card > * {
		width: 100%;
	}
	.card__img img {
		height: 300px;
	}
}