@font-face {
	font-family: 'OCR-B';
	src: url('/img/OCR-B 10 Pitch Regular.otf');
}



.container2 {
	--image-adjustment: 130px;
	padding-left: var(--image-adjustment);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-color: #fff;
	animation: slideIn 1s ease-out forwards;
	transition: transform 1s ease-out, opacity 1s ease-out;
	position: sticky;
	top: 0;
}

.slide-out {
	transform: translateX(-100%);
	opacity: 0;
}

.text-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.text-container img {
	margin-top: 100px;
	width: auto;
	/* margin-right: -50px; */
	height: 125px;
	display: block;
	object-fit: contain;
}

.text-container p {
	font-size: 26px;
	font-family: 'OCR-B';
	font-weight: regular;
	margin: 0;
	margin-top: 15px;
	color: black;
	text-align: left;
	letter-spacing: 9px;
}

.image-container {
	display: flex;
	align-items: center;
}

.image-container img {
	--vertical-displacement: 0px;
	margin-left: calc(-1 * var(--image-adjustment));
	margin-top: 220px;
	display: block;
	width: auto;
	height: 850px;
	object-fit: contain;
	/* transition: transform 1s ease-out, opacity 1s ease-out; */
}

.custom-text {
	font-family: 'Prospec-Outline';
	fill: white;
	stroke: black;
	stroke-width: 4px;
	transition: fill 1s ease-in-out;
	font-size: 295px;
}

.flax-sticky-container {
	min-height: 150vh!important;
}

.text-container .flax-heading {
	width: 500px;
	height: max-content;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@media (max-width: 1440px) {
	.container2 {
		justify-content: end;
	}
}

@media (max-width: 1200px) {
	.container2 {
		--image-adjustment: 80px;
	}

	.text-container {
		padding-left: var(--image-adjustment)
	}

	.text-container p {
		font-size: 20px;
		letter-spacing: 6px;
		margin-top: 5px;
	}
}

@media (max-width: 1000px) {
	.container2 {
		--image-adjustment: 50px;
	}

	.text-container p {
		font-size: 18px;
		letter-spacing: 4px;
	}
}

@media (max-width: 768px) {
	.container2 {
		flex-direction: column;
		height: auto;
		padding: 20px;
		padding-top: 13vh;	
	}

	.text-container {
		align-items: center;
		margin-top: 20px;
		padding-left: 0;
		order: 1;
	}

	.text-container img {
		height: 100px;
		margin-inline: 0;
	}

	.text-container p {
		font-size: 24px;
		letter-spacing: 8px;
		margin-inline: 0;
		margin-top: 20px;
	}

	.image-container {
		align-items: center;
		margin-right: 0;
		order: 2;
		/* width: 100%; */
		height: auto;
	}

	.image-container img {
		height: 500px;
		margin-top: 60px;
		margin-left: -20px;
	}
	
	.text-container .flax-heading {
		width: min(70%, 300px);
	}
}

@media (max-width: 480px) {
	.container2 {
		flex-direction: column;
		height: auto;
		padding-top: 13vh;
	}

	.text-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		/* Center horizontally */
		justify-content: center;
		/* Center horizontally */
		margin-bottom: 20px;
		order: 1;
		width: 100%;
		/* Ensure the container takes full width */
	}

	.text-container img {
		margin-top: 80px;
		height: 60px;
		width: 100%;

		/* Ensure SVG takes full width */
		text-align: start;
		/* Center text within SVG */
		align-items: start;
	}

	.text-container p {
		font-size: 14px;
		text-align: center;
		letter-spacing: 4px;
		margin: 0;
		margin-top: 15px;
	}

	.image-container {
		order: 2;
		align-items: center;
		margin-top: -60px;
	}

	.image-container img {
		height: 250px;
		object-fit: contain;
		height: auto;
	}
	
	.flax-sticky-container {
		min-height: 100vh!important;
	}
}

:root {
	--card-height: 40vw;
	--card-margin: 2vw;
	--card-top-offset: 1em;
	--numcards: 5;
	--outline-width: 0px;
}

/* General Styles */
#cards,
#cards2 {
	margin-bottom: var(--card-margin);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--card-margin);
}

.card,
.card2 {
	position: sticky;
	top: 0;
	padding-top: var(--card-top-offset);
	transform-origin: 50% 0%;
	will-change: transform;
	width: calc(100% - 2 * var(--card-margin));
	margin: 0 auto;
}

.card__content,
.card__content2 {
	box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
	background: rgb(255, 255, 255);
	color: rgb(10, 5, 7);
	border-radius: 1em;
	overflow: hidden;
}

.card__content>figure,
.card__content2>figure {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	/* Ensure no extra margin */
	padding: 0;
	/* Ensure no extra padding */
}

.card__content>figure>img,
.card__content2>figure>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Ensure all cards have white or transparent backgrounds */
#cards .card,
#cards2 .card2 {
	background-color: transparent;
	max-width: 100%;
	margin-right: 50px;
}

#cards .card__content,
#cards2 .card__content2 {
	background-color: transparent;
}

/* Remove list styles for ul and li elements */
#cards ul,
#cards2 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#cards li,
#cards2 li {
	list-style: none;
}

/* Remove marker for list items in card2 */
#cards2 li::marker {
	content: ' ';
}

/* Responsive Styles */
@media (max-width: 768px) {
	:root {
		--card-height: 60vw;
		--card-margin: 4vw;
	}

	#cards,
	#cards2 {
		margin-bottom: var(--card-margin);
		gap: var(--card-margin);
	}

	.card,
	.card2 {
		width: calc(100% - 2 * var(--card-margin));
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	:root {
		--card-height: 80vw;
		--card-margin: 5vw;
		--card-top-offset: 0.5em;
	}

	#cards,
	#cards2 {
		margin-bottom: var(--card-margin);
		gap: var(--card-margin);
	}

	.card,
	.card2 {
		width: calc(100% - 2 * var(--card-margin));
		margin: 0 auto;
	}

	.card__content,
	.card__content2 {
		box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.1), 0 0.5em 1em rgba(0, 0, 0, 0.1);
		border-radius: 0.5em;
	}
}