.warp_cardstack_block {
	overflow-x: clip;
	-webkit-overflow-scrolling: auto;
}

.center {
	width: 100%;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.stack-area {
	width: 100%;
	max-width: 100vw;
	/* height: 300vh; */
	height: 500vh;
	min-height: 200vw;
	position: relative;
	/* display: flex;
	justify-content: center; */
}

.cardstack-right,
.cardstack-center {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 0;
	box-sizing: border-box;
	flex-basis: 50%;
}

.cardstack-cardstack-cards {
	width: 100%;
	height: 100%;
	max-width: 80%;
	position: relative;
}

.cardstack-card {
	width: 350px;
	max-width: 80%;
	height: 350px;
	box-sizing: border-box;
	/* padding: 35px; */
	border-radius: 2rem;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.5s ease-in-out;
	perspective: 1000px;
}




.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	border-radius: 2rem;
}

.cardstack-cards.flip_on
.cardstack-card.current:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 35px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 2rem;
}

.flip-card-front {
	color: black;
}

.flip-card-back {
	transition: transform 0.6s;
	background-color: purple;
	color: white;
	transform: rotateY(180deg);
	border-radius: 2rem;
	overflow: hidden;
}

.flip-card-back iframe {
	position: absolute;
	left: -7rem;
	top: 4rem;
	bottom: 0;
	right: 0;
	transform: scale(2);
}






.cardstack-card:nth-child(1) .flip-card-front {
	background: rgb(64, 122, 255);
}

.cardstack-card:nth-child(2) .flip-card-front {
	background: rgb(221, 62, 88);
}

.cardstack-card:nth-child(3) .flip-card-front {
	background: rgb(186, 113, 245);
}

.cardstack-card:nth-child(4) .flip-card-front {
	background: rgb(247, 92, 208);
}

.cardstack-card:nth-child(1) {
	z-index: 4;
}

.cardstack-card:nth-child(2) {
	z-index: 3;
}

.cardstack-card:nth-child(3) {
	z-index: 2;
}

.cardstack-card:nth-child(4) {
	z-index: 1;
}











.sub {
	font-family: poppins;
	font-size: 20px;
	font-weight: 700;
}

.content {
	font-family: poppins;
	font-size: 44px;
	font-weight: 700;
	line-height: 54px;
}

.cardstack-card.active {
	transform-origin: bottom left;
}