
.stayNotified{
	height:48px;
	display:inline-flex;
	flex-flow:row nowrap;
	align-items:center;
	justify-content:center;
	background-color:var(--coralRed);
	color:var(--white);
	box-sizing:border-box;
	padding:0 20px;
}
.stayNotified .buttonLabel{
	font:var(--tech);
	font-weight:400;
	font-size:1.8em;
	text-transform:uppercase;
}
.pageNav .stayNotified{
	height:56px;
}

header{
	height:100vh;
	width:100vw;
	position:relative;
	transition:height .3.5s ease-in;
	transition-delay:0s;
	min-height:640px;
}
.header--Background,
.header--Foreground{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	height:100%;
	width:100%;
}
.header--Background{
	z-index:0;
}
.header--Foreground{
	z-index:1;
	padding:80px 0 0 0;
	background-color:transparent;
	box-sizing:border-box;
}
.videoItem.__cover,
.imageItem.__cover,
.videoItem.__coverItem{
	height:100%;
	width:100%;
	overflow:hidden;
	position:relative;
}
.videoItem.__cover video{
	height: 100%;
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 56.25vw; /* 100 * 9 / 16 */
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.videoItem.__coverItem video{
	width:110%;
    min-height: 110%;
    height:auto;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.imageItem.__cover{
	background-size:cover;
	background-position:left top;
}
.header--Foreground .__inner{
	position:relative;
}
.header--Title{
	position:absolute;
	width:100%;
	max-width:640px;
	top:16%;
}
.header--Title h1{
	font-size:5.6em;
	color:var(--black);
}
.header--Streamer{
	width:100%;
	max-width:640px;
	position:absolute;
	bottom:25%;
}
.header--Streamer h3{
	font:var(--subline);
	font-size:2.4em;
	color:var(--white);
	text-transform:uppercase;
}
.header--FootNote{
	position:absolute;
	bottom:48px;
}
.header--FootNote p{
	font:var(--subline);
	font-size:1.8em;
	color:var(--white);
	text-transform:uppercase;
}

@media only screen and (max-width: 1024px) {

	.pageNav .stayNotified{
		height:46px;
	}
	.header--Title,
	.header--Streamer,
	.header--FootNote{
		width:calc(100% - 40px);
		padding:0;
		margin:0 auto;
		left:50%;
		transform:translateX(-50%);
	}
	.header--Title{
		top:3%;
	}
	.header--Title h1{
		font-size:3.2em;
		text-align:center;
	}
	.header--Streamer h3{
		font-size:1.5em;
		text-align:center;
	}
	.header--FootNote p{
		font-size:1.5em;
		text-align:center;
		width:100%;
	}
	.imageItem.__cover{
		background-position:right center;
	}
}

section.leadIn{
	padding:90px 0;
}
.leadIn--Title,
.gallery--Title,
.section--Title,
.creds--Title{
	text-align:center;
}
.leadIn--Title h2,
.gallery--Title h2,
.section--Title h2,
.creds--Title h2{
	font:var(--display);
	font-size:3.4em;
	color:var(--black);
	box-sizing:border-box;
	padding:0 24px;
}
.leadIn--Body,
.section--Body,
.creds--Body{
	column-gap:72px;
}
.leadIn--Body p,
.section--Body p,
.creds--Body p{
	font:var(--main);
	font-weight:400;
	font-size:1.7em;
	color:var(--blackGrey);
	padding-bottom:24px;
	text-align:left;
}
.__has-image{
	position:absolute;
	left:50%;
	top:50%;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	width:101%;
	height:101%;
	transform:translate(-50%,-50%);
}
.__needs-genericBg{
	background-image:url('/assets/img/bike/lively-grey.png');
	background-size:cover;
	background-position:center center;
}

@media only screen and (max-width: 1024px) {
	section.leadIn{
		padding:20px 0;
	}
	.leadIn--Body p,
	.creds--Body p{
		text-align:left;
	}
	.leadIn--Title h2,
	.gallery--Title h2,
	.section--Title h2{
		padding-left:0;
		padding-right:0;
		text-align:left;
	}
}

section.details{
	height:100vh;
	width:100%;
	background-color:var(--white);
	position:relative;
}
section.details::after{
	display:block;
	position:absolute;
	left:0px;
	top:20%;
	width:100%;
	height:80%;
	background-color:var(--limeGreen);
	content:"";
	z-index:0;
}
section.details .__inner{
	position:relative;
	z-index:1;
}

.detailItem{
	position:absolute;
	top:0px;
	width:34%;
}
.detailItem::before{
	display:none;
	position:absolute;
	left:0px;
	bottom:calc(10vh + 4px);
	width:1px;
	height:30vh;
	background-color:transparent;
	border-left:1px dashed var(--black);
	z-index:0;
	box-sizing:border-box;
	content:"";
	opacity:.6;
}
.detailItem--Image{
	width:100%;
	overflow:hidden;
	position:relative;
	z-index:1;
}
.detailItem--Description{
	display:inline-flex;
	position:absolute;
	bottom:4vh;
	border-left:1px solid var(--black);
	border-left:0px;
	min-height:7vh;
	box-sizing:border-box;
	padding:0 32px;
	width:90%;
	flex-flow:row;
	align-items:flex-end;
	justify-content:flex-start;
}
.detailItem--Description p{
	font:var(--main);
	font-weight:400;
	font-size:2em;
	color:var(--black);
	text-transform:uppercase;
}
.__detailBattery{
	z-index:3;
	left:0px;
	transform:translate(48px, 8vh);
	height:calc(100vh - 8vh);
}
.__detailBattery .detailItem--Image{
	height:76vh;
}
.__detailBeltDrive{
	left:50%;
	z-index:2;
	transform:translate(-50%, 0vh);
	height:calc(100vh);
}
.__detailBeltDrive .detailItem--Image{
	height:60vh;
}
.__detailConnectivity{
	right:0px;
	z-index:1;
	transform:translate(-48px, 12vh);
	height:calc(100vh - 12vh);
}
.__detailConnectivity .detailItem--Image{
	height:68vh;
}

@media only screen and (max-width: 1024px) {
	section.details{
		height:auto;
		width:100%;
		background-color:var(--limeGreen);
		position:relative;
		padding:20px 0 0 0;
	}
	section.details::after{
		display:none;
	}
	section.details .__inner{
		position:relative;
		z-index:1;
		display:flex;
		flex-flow:column nowrap;
	}
	.detailItem{
		position:initial;
		width:100%;
		padding-bottom:32px;
	}
	.detailItem::before{
		display:none;
	}
	.detailItem--Image{
		width:100%;
		overflow:hidden;
		position:relative;
		z-index:1;
	}
	.detailItem--Description{
		display:inline-flex;
		align-items:center;
		justify-content:center;
		position:initial;
		min-height:auto;
		box-sizing:border-box;
		padding:20px 0px;
		width:100%;
	}
	.detailItem--Description p{
		font:var(--main);
		font-weight:400;
		font-size:2em;
		color:var(--black);
		text-transform:uppercase;
		text-align:center;
	}

	.__detailBattery,
	.__detailBeltDrive,
	.__detailConnectivity{
		height:auto;
		left:auto;
		right:auto;
		transform:translate(0%,0%);
	}
	.__detailBattery .detailItem--Image,
	.__detailBeltDrive .detailItem--Image,
	.__detailConnectivity .detailItem--Image{
		height:40vh;
		transform:translate(0%,0%);
		left:auto;
		right:auto;
	}
}
.gallery{
	padding:72px 0 90px 0;
	background-color:var(--white);
	position:relative;
}
.gallery section{
	position:relative;
	z-index:1;
}
.gallery--Title .__inner{
	padding:24px 0;
}
.gallery--Title{
	margin-bottom:42px;
}
.gallery--Title h2{
	margin-bottom:20px;
}
.gallery--Item{
	height:50vh;
	max-height:720px;
	min-height:460px;
	width:100%;
}
.gallery--Item::before{
	position:absolute;
	display:block;
	top:0px;
	left:50%;
	transform:translateX(-50%);
	bottom:0px;
	width:20%;
	max-width:460px;
	min-width:320px;
	content:"";
	background-color:var(--limeGreen);
}
.gallery--ItemContent{
	width:100%;
	height:100%;
	padding:36px 0 48px;
	position:relative;
	display:flex;
	flex-flow:row nowrap;
	align-items:center;
	justify-content:center;
}
.gallery--ItemText{
	flex-grow:1;
	flex:0 0 48%;
	box-sizing:border-box;
	color:var(--black);
}
.gallery--ItemText h3{
	font:var(--subline);
	text-transform:uppercase;
	font-size:3.2em;
	margin-bottom:20px;
}
.gallery--ItemText p{
	font:var(--subline);
	font-size:1.6em;
	line-height:22px;
	margin-bottom:20px;
}
.gallery--ItemText span.__remark{
	font:var(--subline);
	font-size:1.4em;
	line-height:22px;
	color:var(--blackGrey)
}
.gallery--ItemMedia{
	flex-grow:1;
	flex:0 0 52%;
	height:100%;
	position:relative;
}

.gallery--ItemMedia .videoItem.__coverItem video{
	object-fit:cover !important;
}
.gallery--ItemMedia .imageItem{
	height:100%;
	width:100%;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;

}
.__textRight .gallery--ItemMedia,
.__textLeft .gallery--ItemText{
	order:1;
}
.__textLeft .gallery--ItemMedia,
.__textRight .gallery--ItemText{
	order:2;
}
.__textRight .gallery--ItemText{
	padding:0 32px 0 42px;
}
.__textLeft .gallery--ItemText{
	padding:0 42px 0 32px;
}

@media only screen and (max-width: 1024px) {
	.gallery{
		padding:0;
	}
	.gallery--Title{
		padding:0 20px;
		box-sizing:border-box;
		margin-bottom:0;
	}
	.gallery--Title h2{
		padding:0;
		margin:0;
	}
	.gallery--Item{
		height:100vh;
		min-height:600px;
		width:100%;
	}
	.gallery--ItemContent{
		flex-flow:column nowrap;
		padding:0 0 20px 0;
		align-items:flex-start;
		justify-content:flex-start;
	}
	.gallery--ItemText{
		flex-grow:auto;
		width:100%;
		flex:initial;
		box-sizing:border-box;
		color:var(--black);
	}
	.gallery--ItemMedia{
		width:100%;
		flex:initial;
		display:block;
		height:50vh;
		position:relative;
		margin-bottom:20px;
	}
	.gallery--ItemMedia video{
		width:auto !important;
		height:100% !important;
		object-fit:cover;
	}
	.gallery--Item.__textLeft::before{
		left:0px;
		transform:translateX(0%);
		width:50%;
		max-width:100%;
		min-width:0px;
	}
	.gallery--Item.__textRight::before{
		left:auto;
		right:0px;
		transform:translateX(0%);
		width:50%;
		max-width:100%;
		min-width:0px;
	}
	.__textLeft .gallery--ItemMedia,
	.__textLeft .gallery--ItemText{
		order:1;
	}
	.__textLeft .gallery--ItemText,
	.__textRight .gallery--ItemText{
		order:2;
	}
	.__textRight .gallery--ItemText,
	.__textLeft .gallery--ItemText{
		padding:0 32px 0 0px;
	}
}
@media only screen and (max-width: 400px) {
	.__textRight .gallery--ItemText, 
	.__textLeft .gallery--ItemText{
		padding:0 0 0 0;
	}
}

.__fullPageImage,
.__fitWidth{
	height:calc(100vh - 56px);
	width:100%;
	position:relative;
	min-height:600px;
}
.__fitWidth{
	overflow:hidden;
}
.__fullPageImage .section--Background,
.__fullPageImage .section--Foreground,
.__fitWidth .section--Foreground{
	width:100%;
	height:100%;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.__fullPageImage .section--Background{
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	z-index:0;
}
.__fitWidth .section--Background{
	position:absolute;
	height:78vh;
	width:100%;
	left:50%;
	bottom:0px;
	transform:translate(-50%,0%);
	background-size:100% auto;
	background-position:top;
	z-index:0;
	overflow:hidden;
}
.__positionedImage{
	position:absolute;
	left:50%;
	top:0px;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:top;
	transform:translateX(-50%);
	min-width:1340px;
}
.__fullPageImage .section--Foreground,
.__fitWidth .section--Foreground{
	z-index:1;
	box-sizing:border-box;
	padding:72px 0;
}
.section--Title h2{
	font-size:4.2em;
}
.section--Body{
	text-align:center;
}
.section--Body p{
	text-align:center;
}
.section--Footer{
	position:absolute;
	bottom:72px;
	width:100%;
}
.section--Footer .__inner .__alignSelfLeft,
.section--Footer .__inner .__alignSelfRight{
	font:var(--subline);
	font-size:2.4em;
	color:var(--white);
	text-transform:uppercase;
}

.chooseYourSide.__desktop{
	display:block;
}
.chooseYourSide.__mobile{
	display:none;
}

@media only screen and (max-width: 1024px) {
	.chooseYourSide.__desktop{
		display:none !important;
	}
	.chooseYourSide.__mobile{
		display:block;
		height:50vh;
	}
	.section--Title h2{
		font-size:4.0em;
	}
	.section--Body p{
		text-align:left;
	}
	.__fitWidth{
		height:50vh;
		min-height:660px;
	}
	.__fitWidth .section--Foreground{
		padding-top:0;
	}
	.chooseYourSide.__mobile .section--Title h2{
		text-align:center;
	}
	.chooseYourSide.__mobile .section--Foreground{
		padding:32px 0;
	}
	.chooseYourSide.__mobile .section--Footer{
		bottom:32px;
	}
	.chooseYourSide.__mobile.sageGrey .section--Footer{
		bottom:0;
		top:32px;
	}
	.chooseYourSide.__mobile .section--Footer{
		text-align:center;
	}
	.__fitWidth .section--Background{
		height:50vh;
	}
	.__positionedImage{
		position:absolute;
		left:50%;
		top:0%;
		height:100%;
		width:100%;
		background-size:100% auto;
		background-repeat:no-repeat;
		background-position:bottom;
		transform:translateX(-50%);
		min-width:100%;
	}
}

section.creds{
	box-sizing:border-box;
	padding:56px 0;
	background-color:var(--white);
	height:calc(100vh - 56px);
	min-height:860px;
	max-height:960px;
}
.creds--Content{
	background-color:var(--coralRed);
	color:var(--black);
	box-sizing:border-box;
	padding:42px 42px 72px 42px;
	display:flex;
	flex-flow:column;
	align-items:center;
	justify-content:space-between;
	height:100%;
	position:relative;
}
.creds--Title{
	z-index:1;
}
.creds--Title h2{
	font-size:5.6em;
	color:var(--black);
}
.creds--Animation{
	height:50%;
	width:100%;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.creds--Animation_logoBand{
	width:100%;
	height:80px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.creds--Animation_logoBand .credsWordmark,
.creds--Animation_logoBand .credsEst{
	display:block;
	height:34px;
	width:160px;
	position:absolute;
	top:50%;
	transform:translate(0,-50%);
}
.creds--Animation_logoBand .credsWordmark{
	left:42px;
}
.creds--Animation_logoBand .credsHeron{
	display:block;
	height:100%;
	width:50px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.creds--Animation_logoBand .credsEst{
	right:42px;
}

.creds--Animation_Video{
	height:45vh;
	width:45vh;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	overflow:hidden;
	z-index:0;
	border-radius:50%;
	opacity:1;
}
.creds--Animation_Video video{
	width:100%;
	height:auto;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.creds--Body{
	width:100%;
	max-width:1024px;
	z-index:1;
}
.creds--Body p{
	color:var(--black);
	font-size:1.6em;
	margin-bottom:0;
}
.creds--Body p:last-child{
	padding-bottom:0;
}
@media only screen and (max-width: 1024px) {
	section.creds{
		padding:20px 0;
		min-height:460px;
		height:50vh;
		min-height:680px;
	}
	.creds--Title{
		margin-bottom:0;
		width:100%;
	}
	.creds--Title h2{
		padding:0;
		margin:0;
		text-align:left;
	}
	.creds--Animation{
		display:none;
	}
	.creds--Animation_logoBand{
		display:none;
	}
}

@media only screen and (max-width: 400px) {
	.creds--Content{
		padding:20px;
	}
}

section.memberships{
	box-sizing:border-box;
	padding:56px 0;
	background-color:var(--skyBlue);
	height:calc(90vh - 56px);
	min-height:840px;
}
.memberships--Content{
	color:var(--black);
	box-sizing:border-box;
	padding:42px 0 72px 0;
	display:flex;
	flex-flow:row nowrap;
	align-items:center;
	justify-content:space-between;
	height:100%;
	position:relative;
}
.memberships--Body h2{
	font:var(--display);
	font-size:5.6em;
	color:var(--black);
}
.memberships--Image{
	flex-grow:1;
	flex:0 0 64%;
	height:100%;
	z-index:0;
	position:relative;
}
.memberships--Image .__imageWrapper{
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	height:101%;
	width:101%;
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	transform:translate(-50%,-50%);
}
.memberships--Body{
	flex-grow:1;
	flex:0 0 36%;
	padding:0 32px;
	z-index:2;
}
.memberships--Body p{
	font:var(--subline);
	color:var(--black);
	font-size:1.6em;
	line-height:22px;
	padding-bottom:20px;
}
.memberships--Body p:last-child{
	padding-bottom:0;
}

@media only screen and (max-width: 1024px) {
	section.memberships{
		padding:20px 0;
		height:auto;
	}
	.memberships--Image{
		width:100%;
		height:30vh;
		flex-grow:initial;
		flex:initial;
		margin-bottom:20px;
	}
	.memberships--Body{
		padding:0;
	}
	.memberships--Content{
		flex-flow:column;
		padding:0;
	}
}


.specs{
	 background-color:var(--black);
	 color:var(--white);
	 padding:56px 0 72px 0;
}
.specs--Title{
	text-align:left;
}
.specs--Title h2{
	font:var(--display);
	font-size:4.2em;
	color:var(--white);
}

.spec{
	display:flex;
	flex-flow:row nowrap;
	align-items:flex-start;
	justify-content:flex-start;
	border-bottom:1px solid var(--blackGrey);
	padding:20px 0;
}
.specName{
	flex-grow:1;
	flex:0 0 30%;
	padding:0;
	box-sizing:border-box;
	font:var(--subline);
	text-transform:uppercase;
	font-size:1.5em;
}
.specContent{
	flex-grow:1;
	flex:0 0 70%;
	padding:0 0 0 32px;
	box-sizing:border-box;
	font:var(--subline);
	font-weight:300;
	font-size:1.5em;
	line-height:20px;
}
.specContent .__remark{
	display:block;
	font-size:.7em;
	padding:16px 0 0 0;
	opacity:.8;
}

@media only screen and (max-width: 1024px) {
	#StayNotifiedCTA{
		min-height:360px;
	}
	#StayNotifiedCTA .__centeredStack{
		align-items:flex-start;
	}
	#StayNotifiedCTA .__centeredRow{
		align-items:flex-start;
		display:block;
		width:100%;
	}
}
@media only screen and (max-width:500px) {
	.specs{
		font-size:0.8em;
	}
}
@media only screen and (max-width: 440px) {
	.creds--Content{
		padding:32px;
	}
	.gallery--Item{
		min-height:700px;
	}
	.gallery--ItemMedia{
		max-height:280px;
	}
}


