:root {
	--shadow_color: rgba(0, 0, 0, 0.37);
	--hero_background: black;
	--try_a_sample: black;

	--BRAND-PURPLE: #7d00e3;
	--BRAND-PURPLE-HOVER: #6500b8;
	--BRAND-GOLD: #f5d211;
}

body {
	perspective: 1000px; /* Adjust the perspective value to control the depth */
}

.hero {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	overflow: hidden;

	width: 100%;

	height: auto;
	max-height: 750px;

	padding-top: min(55px, 10vh); /* To account for header */

	color: white;
	background-color: var(--hero_background);
	background: radial-gradient(
		circle at 100% 100%,
		var(--BRAND-PURPLE) 0%,
		var(--hero_background) 60%
	);
}

.hero_container {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	overflow: hidden;

	width: 100%;
	max-width: 1450px;
	height: 100%;

	padding: min(55px, 10vh) 0px;

	text-align: center;

	/* color: white; */
	/* background-color: var(--hero_background); */
	/* background: radial-gradient(circle at 100% 100%, var(--BRAND-PURPLE) 0%, var(--hero_background) 60%); */

	/* background: pink; */
}

.hero_text {
	width: 90%;
}

.hero_text br {
	display: none;
}

.hero_text h2 {
	font-size: 2em;

	line-height: 1.2em;
}
.hero_text h2 i {
	font-size: 1em;
}
.hero_text p {
	font-size: 1.1em;
	line-height: 1.25em;

	margin: min(2vh, 30px) 0px;
}

.hero_text p em,
.hero_text p b,
.hero_text p i,
.hero_text p u {
	font-size: 1em;
}

.items_figure {
	display: none;
}

.cta {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	/* width: 200px; */
	padding: 5px 20px;
	height: auto;

	margin-top: 5px;

	background-color: var(--BRAND-PURPLE);
	color: white;
	text-decoration: none;
	font-size: 1.1em;

	border: 1px solid white;
	border-radius: 8px;

	transition: background-color 0.3s;
}
.cta:hover {
	border: 1px solid var(--BRAND-GOLD);
	background-color: black;
	color: var(--BRAND-GOLD);
}

h2 {
	font-size: 1.75em;
	line-height: 1.1em;
}
h2 i {
	font-size: 1em;
}
.hero p {
	font-size: 1em;
	line-height: 1.35em;

	margin: 20px 0px;
}
.hero em {
	font-style: normal;
	font-weight: bold;
}

@media screen and (min-width: 800px) {
	.hero_container {
		padding-left: 0%;
		padding-right: 0%;
	}

	.hero_text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: baseline;

		text-align: left;

		width: 32vw;
		max-width: 400px;

		/* background-color: orange; */
	}

	.items_figure {
		display: flex;
		flex-direction: row;
		justify-content: baseline;
		align-items: baseline;
		flex-wrap: nowrap;
		overflow: visible;

		/* background-color: rgba(0, 128, 0, 0.431); */

		margin-left: max(-80px, -60%);

		width: auto;
		height: auto;

		padding-bottom: min(25px, 15%);
	}

	.items_figure img {
		border: none;

		box-shadow: 15px 5px 15px 1px var(--shadow_color);
		-webkit-box-shadow: 15px 5px 15px 1px var(--shadow_color);
		-moz-box-shadow: 15px 5px 15px 1px var(--shadow_color);
	}

	#hero_anki_screenshot {
		display: inline-block;

		width: 45vw;
		max-width: 600px;

		height: auto;

		/* background-color: pink; */

		border-radius: 10px;
	}

	#hero_pdf_cover {
		display: inline-block;

		transform: translateX(min(80px, 60%)) translateY(min(25px, 15%));

		width: 20vw;
		max-width: 215px;

		height: auto;

		border-radius: min(1vw, 15px);

		/* background-color: lime; */
	}

	.cta {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;

		/* width: 200px; */
		padding: 0px 20px;
		height: 50px;

		margin-top: 5px;

		background-color: var(--BRAND-PURPLE);
		color: white;
		text-decoration: none;
		font-size: 1.1em;

		border: 1px solid var(--BRAND-PURPLE);
		border-radius: 8px;

		transition: background-color 0.3s;
	}
	.cta:hover {
		border: 1px solid var(--BRAND-GOLD);
		background-color: black;
		color: var(--BRAND-GOLD);
	}
}

section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 100%;

	padding-top: 10px;

	background-color: white;
}

#our_products {
	padding-top: 50px;
	padding-bottom: 20px;
}

.products {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	/* margin-top: 30px; */

	padding-top: 30px;

	max-width: 1500px;
}

.product {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;

	min-height: 400px;
	max-width: 370px;

	margin: 20px;
	padding: 20px 10px;

	box-shadow: 0px 0px 15px 0.5vh rgb(210, 210, 210);

	border-radius: 20px;

	color: black;
	background-color: white;
}

.product-title {
	display: block;
	width: 100%;

	margin-bottom: 25px;

	font-size: 1.25em;
	text-align: center;
	line-height: 1.5em;
}
.product-price {
	font-weight: normal;
	font-size: 1em;
}

.product-image {
	width: 45%;
	padding: 5%;
	background-color: black;

	aspect-ratio: 1 / 1;

	border-radius: 100%;
}

#bio130 .product-image {
	padding: 1%;
	width: 54%;
	background-size: 500%;
}

#mgy377 .product-image {
	padding: 0%;
	width: 56%;
	background-size: 500%;
}

.product-description {
	display: block;

	width: 90%;

	margin: 30px 0px;

	/* line-height: 1em; */
	text-align: center;

	font-size: 1.1em;

	/* background-color: red; */
}

.product-description i {
	font-size: 1em;
}

.view_button {
	display: block;

	width: 66%;

	padding: 10px 0px;

	text-align: center;
	text-decoration: none;

	border-radius: 5px;
	border: 1px solid var(--BRAND-PURPLE);

	color: white;
	background-color: var(--BRAND-PURPLE);
}
.view_button:hover {
	background-color: var(--BRAND-PURPLE-HOVER);
}
.view_button {
	display: block;

	width: 66%;

	padding: 10px 0px;

	text-align: center;
	text-decoration: none;

	border-radius: 5px;
	border: 1px solid var(--BRAND-PURPLE);

	color: white;
	background-color: var(--BRAND-PURPLE);
}
#bio130 .view_button,
#mgy377 .view_button {
	border-color: lightgray;

	color: gray;
	background-color: transparent;
}
#bio130 .view_button:hover,
#mgy377 .view_button:hover {
	cursor: default;
}

#flow_pdf .product-image,
#custom .product-image {
	padding: 5%;
	/* width: 50%; */

	border: 1px solid black;
	background-color: white;
}

#testimonials {
	/* display: block; */
	text-align: center;

	padding-bottom: 0px;

	background: gray;
	/* background-color: red; */
	background: linear-gradient(
		0deg,
		var(--still_not_convinced) 0%,
		black 100%
	);
	background: var(--still_not_convinced);
}

#testimonials h2 {
	display: inline-block;

	width: 80%;

	text-align: center;

	padding-top: 50px;

	margin: 0 auto;
	margin-bottom: 30px;

	color: white;

	/* background-color: rebeccapurple; */
}

.hallOfTestimony {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* overflow: hidden; */
	/* flex-wrap: wrap; */
	/* overflow-x: auto; */
	/* scroll-snap-type: x mandatory; */

	width: 100vw;
	max-width: 2000px;

	/* padding-bottom: 60px; */
	padding-bottom: min(50px, 5vh);

	/* background: gray; */
	/* background-color: red; */
	/* background: linear-gradient(0deg, var(--realisation_background) 50%, white 90%);  */
}

.testimony {
	display: inline-flex;
	align-self: stretch;
	justify-self: stretch;
	flex-direction: column;
	justify-content: space-between;

	scroll-snap-align: start;

	width: 75vw;
	/* max-width: 270px; */

	/* height: max(210px, 17.5vw); */
	height: auto;

	/* display: inline-block; */
	text-align: left;

	border-radius: min(
		2vw,
		10px
	); /* Optional: Makes the image a perfect circle */
	/* border: 2px solid var(--accent); */

	/* box-shadow: 0px 0px 15px 0.5vh lightgray; */
	/* color: black; */
	background-color: white;

	margin: 10px auto;

	padding: 20px;
}

@media screen and (min-width: 900px) {
	.hallOfTestimony {
		flex-direction: row;
		flex-wrap: wrap;
		width: 90vw;
	}

	.testimony {
		width: 20%;
		min-width: 300px;
		margin: 10px;
	}
}

.testimony p {
	font-style: italic;

	font-size: 0.9em;
}

.testimony em {
	font-style: italic;
	font-size: 1em;
	font-weight: bold;
}

.testimony .name {
	font-weight: bold;
	font-size: 1em;
}

.testimony .course,
.testimony .course sup {
	color: black;
	opacity: 80%;
	font-size: 0.9em;
}

.guarantee {
	text-align: center;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding: 20px;

	width: min(77.5%, 600px);

	margin-top: 20px;
	margin-bottom: 30px;

	border-radius: 10px;

	color: white;
	background-color: black;

	box-shadow: 1px 1px 40px 22px rgb(50, 50, 50) inset;
	-webkit-box-shadow: 1px 1px 40px 22px rgb(50, 50, 50) inset;
	-moz-box-shadow: 1px 1px 40px 22px rgb(50, 50, 50) inset;
}
.guarantee h3 {
	font-size: 1.25em;

	font-weight: bold;

	margin-bottom: 0.5em;
}
.guarantee p {
	max-width: 550px;
}
.guarantee p strong {
	display: inline-block;
	margin-top: 0.75em;
}

#try_a_sample {
	display: block;
	text-align: center;

	padding-top: 20px;

	color: white;
	background-color: white;
	background: linear-gradient(
		180deg,
		var(--still_not_convinced) 0%,
		var(--try_a_sample) 100%
	);
}
#try_a_sample p {
	display: block;

	margin: 30px auto;
	margin-top: 20px;

	width: 85%;
	max-width: 800px;
}

#book {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	font-weight: bold;
	font-style: normal;

	text-align: center;
	text-decoration: none;

	/* margin-top: 30px; */
	margin-bottom: 80px;

	padding: 15px 60px;

	border-radius: 15px;

	color: white;
	background-color: var(--BRAND-PURPLE);
}
#book:hover {
	background-color: var(--BRAND-PURPLE-HOVER);
}

.cp-checkout iframe {
	border: 10px solid orange;

	max-width: 600px;
	width: 90vw;
	min-height: 350px;
	height: 50vh;
	max-height: 400px;

	font-size: 300px;
}

iframe .cp_product-description-wrapper .cp_product-description {
	color: white;
}
