@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;700&display=swap');

body {
	background: #f9f9f9 !important;
}
#hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-flow: column;
	position: relative;
	gap: 20px;
	z-index: 1;
}
#hero ._title {
	font-family: var(--playfair), serif;
	color: var(--red2);
	font-size: 5rem;
	padding: 20px 0 0;
	line-height: 1;
	z-index: 2;
}
#hero ._title._lesser {
	color: rgb(64, 64, 64);
	font-size: 2rem;
	padding: 0;
	font-family: "Cormorant Infant", serif;
	text-transform: uppercase;
}
#hero ._sub {
	width: 100%;
	height: 40px;
	text-transform: uppercase;
	font-family: var(--sansM);
	font-size: .8rem;
	letter-spacing: .1em;
	opacity: .7;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: .5em;
	border-top: 1px solid rgba(0,0,0,.1);
	border-bottom: 1px solid rgba(0,0,0,.1);
	z-index: 2;
}
main {
	background: #fff;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 30px;
}
.bundle_card {
	width: 300px;
	max-width: 100%;
	height: 320px;
	display: block;
	perspective: 1000px;
}

.bundle_card_inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: all .3s ease-in-out;
	transform-style: preserve-3d;
	background: #f1f1f1;
	border-radius: 20px;
	box-shadow: 0 4px 6px rgba(0,0,0,.2);
	background-image: url("https://www.transparenttextures.com/patterns/white-paperboard.png");
}

.bundle_card:nth-of-type(5n+1) .bundle_card_inner {
	background-color: #6a6f5b;
}
.bundle_card:nth-of-type(5n+2) .bundle_card_inner {
	background-color: #a5a58d;
}
.bundle_card:nth-of-type(5n+3) .bundle_card_inner {
	background-color: #b6b7a5;
}
.bundle_card:nth-of-type(5n+4) .bundle_card_inner {
	background-color: #cfad97;
}
.bundle_card:nth-of-type(5n)   .bundle_card_inner {
	background-color: #97b7c0;
}

.bundle_card:nth-of-type(5n+1) .icon svg path {
	fill: #6a6f5b;
}
.bundle_card:nth-of-type(5n+2) .icon svg path {
	fill: #a5a58d;
}
.bundle_card:nth-of-type(5n+3) .icon svg path {
	fill: #b6b7a5;
}
.bundle_card:nth-of-type(5n+4) .icon svg path {
	fill: #cfad97;
}
.bundle_card:nth-of-type(5n)   .icon svg path {
	fill: #97b7c0;
}


.bundle_card:nth-of-type(5n+1) .bundle_card_front h2 {
	color: #6a6f5b;
}
.bundle_card:nth-of-type(5n+2) .bundle_card_front h2 {
	color: #a5a58d;
}
.bundle_card:nth-of-type(5n+3) .bundle_card_front h2 {
	color: #b6b7a5;
}
.bundle_card:nth-of-type(5n+4) .bundle_card_front h2 {
	color: #cfad97;
}
.bundle_card:nth-of-type(5n)   .bundle_card_front h2 {
	color: #97b7c0v;
}

.bundle_card:hover .bundle_card_inner {
	transform: rotateY(180deg);
}

.bundle_card_front,
.bundle_card_back {
	position: absolute;
	top:  20px; 
	left: 20px;
	width:  calc(100% - 40px);
	height: calc(100% - 40px);
	backface-visibility: hidden;
}

.bundle_card_front {
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	display: flex;
	align-items: center;
	text-align: center;
	flex-flow: column;
	gap: 20px;
	box-shadow: 0 2px 3px rgba(0,0,0,.2);
}

.bundle_card_back {
  transform: rotateY(180deg);
}

.icon {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	text-align: center;
}
.icon svg {
	height: 70px;
}
.bundle_card_front h2 {
	font-size: 1.4rem;
	font-family: var(--sansM);
	color: rgb(64, 64, 64);
	margin: 0;
	padding: 0;
}

.bundle_pricing {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	font-size: 1.2rem;
}
.bundle_reg {
	position: relative;
	font-size: .8em;
}
.bundle_reg::before {
	content: "";
	width:  calc(100% + 4px);
	height: 2px;
	position: absolute;
	left: -2px;
	top:  50%;
	margin-top: -1px;
	background: var(--red);
	rotate: -3deg;
}

.bundle_card_front .divider {
	margin-top: auto;
	width: 50%;
	height: 1px;
	background: #000;
}

.bundle_card_back {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0,0,0,.3);
	font-size: 2rem;
	font-family: "Cormorant Infant", serif;
	font-weight: bold;
}