.block.home.animated
{
	display: grid;
	grid-template-areas: "headline headline" "logo subhead";
	max-width:var(--maxWidth);
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: auto 1fr;
	grid-gap: calc(var(--defaultInterval)*1);
	min-height: 80vh;
	padding: 0;
	box-sizing: border-box;
	grid-template-rows: auto auto;
	align-content: center;
}
.block.home.animated.headline .wrapper
{
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	grid-area: headline;
	align-self: end;
}
#SD .block.home.animated.headline .wrapper H1
{
	font-size: 100px;
	text-transform: uppercase;
	line-height: 0.85;
}
/*subhead
{
}*/
.block.home.animated .subhead.wrapper
{
	grid-area: subhead;
	justify-content:c;
	color: ;
	font-size: 30px;
	line-height: 1;
	margin-top: -4px;
	align-self: start;
}
.block.home.animated .subhead.wrapper P:not(:last-of-type)
{
	margin-bottom: calc(var(--defaultInterval)*1);
	font-size: ;
}
.block.home.animated .subhead.wrapper P
{
	margin-bottom: calc(var(--defaultInterval)*0);
	text-shadow: 0 0;
}
.block.home.animated .logo
{
	grid-area: logo;
	aspect-ratio: 185.41 / 159.17;
	/*align-self: stretch;*/
	/*justify-self: safe center;*/
	/*margin-right: calc(var(--defaultInterval)*2);*/
	width: 100%;
}
.block.home.animated .images
{
}
.block.home.animated .images
{
	max-width: 250px;
	position: relative;
}
.block.home.animated .images .initial
{
	position: relative;
	z-index: 300;
	padding-top: 50%;
	width: 150px;
	padding: 0px;
}
.block.home.animated .images .secondary
{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	z-index: 100;
	background-position:centerb;
	background-size: cover;
}
/* motion safety */
:root
{
	--sv-duration: .7s;
	--sv-stagger: .14s;
	--sv-underline-h: 0.075em;
}
.sv-hero
{
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.01em;
	font-size: clamp(2.2rem, 4.2vw, 4rem);
	display: flex;
	flex-wrap: wrap;
	gap: 0.25ch 0.5ch;
	align-items: baseline;
}
.block.home.animated.headline .headline .noLeftSpace
{
	margin-left: -0.5ch;
}
.sv-hero__lead, .sv-hero__kw, .sv-hero__amp, .sv-hero__tail
{
	position: relative;
	display: inline-block;
	opacity: 0;
	transform: translateY(110%);
	/* clip from the bottom up */
	clip-path: inset(100% 0 0 0);
	animation: sv-rise var(--sv-duration) cubic-bezier(.2,.7,.2,1) forwards;
}
/* stagger */
.sv-hero__lead
{
	animation-delay: calc(var(--sv-stagger) * 0);
}
.sv-hero__kw:nth-of-type(1)
{
	animation-delay: calc(var(--sv-stagger) * 1);
}
.sv-hero__kw:nth-of-type(2)
{
	animation-delay: calc(var(--sv-stagger) * 2);
}
.sv-hero__amp
{
	animation-delay: calc(var(--sv-stagger) * 3);
}
.sv-hero__kw:nth-of-type(3)
{
	animation-delay: calc(var(--sv-stagger) * 4);
}
.sv-hero__tail
{
	animation-delay: calc(var(--sv-stagger) * 5);
}
@keyframes sv-rise
{
	0%
	{
		transform: translateY(110%);
		opacity: 0;
		clip-path: inset(100% 0 0 0);
	}
	60%
	{
		opacity: 1;
	}
	100%
	{
		transform: translateY(0);
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}
/* wipe + underline */
.sv-hero__kw
{
	text-decoration: none;
	color: inherit;
	background-image: linear-gradient(90deg, currentColor 0 0);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	-webkit-background-clip: text;
	background-clip: text;
}
#SD .sv-hero__kw:hover
{
	color: white;
}
.sv-hero__kw::after
{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.06em;
	height: var(--sv-underline-h);
	height: 120%;
	transform: scaleX(0);
	transform-origin: left;
	/*background: #6BA46B;*/
	background-color:var(--colC);
	transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
	z-index: -2000;
}
.sv-hero--ready .sv-hero__kw
{
	animation: sv-rise var(--sv-duration) cubic-bezier(.2,.7,.2,1) forwards, sv-wipe .6s cubic-bezier(.2,.7,.2,1) forwards;
}
.sv-hero--ready .sv-hero__kw::after
{
	transform: scaleX(1);
	transition-delay: 0.12s;
}
.sv-hero__kw:hover::after
{
	transform: scaleX(1);
	transition-delay: 0.12s;
}
@keyframes sv-wipe
{
	from
	{
		background-size: 0% 100%;
	}
	to
	{
		background-size: 100% 100%;
	}
}
/* Hover replay */
.sv-hero--ready .sv-hero__kw:hover::after
{
	transform: scaleX(0);
}
.sv-hero--ready .sv-hero__kw:hover
{
	background-size: 0% 100%;
	transition: background-size 0.001s linear;
	animation: sv-wipe 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.sv-hero--ready .sv-hero__kw:hover::after
{
	transition: none;
	animation: sv-underline-replay 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes sv-underline-replay
{
	0%
	{
		transform: scaleX(0);
	}
	100%
	{
		transform: scaleX(1);
	}
}
@media (prefers-reduced-motion: reduce)
{
	.sv-hero__lead, .sv-hero__kw, .sv-hero__amp, .sv-hero__tail
	{
		animation: none !important;
		transform: none !important;
		clip-path: none !important;
		opacity: 1 !important;
	}
	.sv-hero__kw
	{
		background-size: 100% 100%;
	}
	.sv-hero__kw::after
	{
		transform: scaleX(1);
	}
}
@media only screen and (max-width: 800px)
{
	#SD .block.home.animated.headline .wrapper H1
	{
		font-size: 55px;
		margin-top: calc(var(--defaultInterval)*5);
	}
	.block.home.animated .subhead.wrapper
	{
		grid-template-columns: min-content 1fr;
		grid-area: subhead;
		color: ;
		font-size: 20px;
	}
	.block.home.animated
	{
		display: grid;
		grid-template-areas: "headline" "logo" "subhead";
		max-width:var(--maxWidth);
		margin-left: auto;
		margin-right: auto;
		grid-template-columns: auto;
		grid-gap: calc(var(--defaultInterval)*1);
		min-height: 80vh;
		padding: 0;
		box-sizing: border-box;
		grid-template-rows: auto auto;
		align-content: center;
	}
	.block.home.animated .logo
	{
		max-width: 30vw;
	}
}
