
	.hero-supplemental > p {
	text-align: left;
	display: flex;
	flex-direction: column;
	margin: 0;
	font-weight: var(--font-weight-heavy);
	gap: 0.5rem;
	font-size: 0.875em;
	border-left: solid 6px var(--corp-blue);
	padding: 0.5rem 0 0.5rem 1rem;
	> * { margin: 0; line-height: 1; }
	strong {
		font-size: 5em;
		color: var(--corp-blue);
		font-weight: var(--font-weight-black);
		.number {
			text-align: end;
			display: inline-block;
			min-width: 1.33em;
		}
	}
}
@media(max-width:991px) {
	.hero-supplemental > p {
		border: unset;
		padding: 0;
	}
}

	
#process-wheel {
	background: linear-gradient(-2deg, white 35%, #e6e6e6 50%, white 65%) !important;
	.d-flex {
		justify-content: space-between;
	}
	ol {
		list-style: none;
		counter-reset: process-cnt;
		margin: 0;
		padding: 2rem 0 0;
		height: calc(100% + 2em);
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		max-width:555px;

		> li {
			counter-increment: process-cnt;
			margin: 0;
			position: relative;
		}
		> li:before {
			content: counter(process-cnt);
			position: absolute;
			z-index: 1;
			background: var(--corp-blue);
			color: white;
			font-weight: var(--font-weight-bold);
			padding: 0;
			line-height: 1.5;
			width: 1.5em;
			height: 1.5em;
			border-radius: 1em;
			text-align: center;
			right: calc(100% + 1rem);
		}
		> li:nth-child(odd):before {
			background: var(--bs-blue);
		}
		> li:after {
			content: '';
			position: absolute;
			height: 3px;
			background: var(--corp-blue);
			right: calc(100% + 2rem);
			width: 45%;
			top: 0.75em;
			z-index: 0;
		}
		> li:first-child:after,
			> li:last-child:after {
				width: 65%;
		}
		> li:nth-child(odd):after {
			background-color: var(--bs-blue);
		}
		h4 { font-weight: var(--font-weight-bold);}
	}
}
@media(min-width:992px) {
	.border-lg-left { padding-left: 2rem; border-left: solid 2px var(--bs-border-color)}
}
@media(max-width:1199px) {
	#process-wheel {
		.d-flex {
			div:first-child img {
				position: relative;
				z-index: 1;
				max-width: 260px !important;
				flex-grow: 1;
				flex-shrink:0;
			}
			div:last-child {
				max-width: 50%;
			}
		}
	}
}
@media(max-width:991px) {
	.hero {
		.hero-flex .fluff { margin-bottom: 2rem; max-width: 555px; margin-left: auto; margin-right: auto; }
		ul { text-align: left; margin-left: auto; margin-right: auto; display: inline-block; }
	}
}
@media(max-width:767px) {
	#process-wheel {
		.d-flex {
			> div:first-child { display :none; }
			> div:last-child { max-width: unset;}
			ol { padding-left: 3.5rem;}
			ol > li:after { display: none;}
		}
	}
}

