
/*full page scroll*/
.lax section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	background-attachment: fixed;
	background-size: cover;
	padding: 0; margin: 0;
	transition: all .3s ease-in-out;
	box-sizing: border-box;
}
.lax section:hover {
}
.lax.iphone section {
	background-attachment: scroll !important;
}
.lax section h2 {
	
}

.s1 {
	position: relative;
	overflow: hidden;
	background-attachment: url('/img/features/mop-poster.jpg') bottom center no-repeat;
}
.s1 video {
	position: absolute;
	min-width: 100vw;
    min-height: 100vh;
	z-index: 1;
}
.s1 h1 {
	position: relative;
	z-index: 2;
	font-size: 3.5rem;
	letter-spacing: .2rem !important;
	color: #fff;
	text-shadow: 1px 1px 20px #000;
	text-align: center;
}
.s1 h1 span {
	color: #b2eb50;
}

.s2 {
	background: url('/img/features/green-clean.jpg') bottom center no-repeat;
	color: #fff;
	transition: .5s all ease-in-out;
	transition-delay: 1;
	padding: 5rem 3rem !important;
	flex-direction: column;
	align-items: initial !important;
}
.s2 h2 {
	margin: 0 0 0 -100%;
	opacity: 0;
	transition: 1s all ease-in-out;
	color: #ffa92f;
	font-size: 3rem;
	text-shadow: 2px 1px 2px #000;
	
}
.s2 ul {
	margin: 1rem 0 0 -100%;
	opacity: 0;
	transition: 1s all ease-in-out;
	transition-delay: .5s;
	font-size: 2rem;
	text-shadow: 2px 1px 2px #000;
}

.s2:target h2 {
	opacity: 1.0;
	margin-left: 5rem;
}

.s2:target ul {
	opacity: 1.0;
	margin-left: 5rem;
}

.s3 {
	background: url('/img/features/natural-clean.jpg') bottom left no-repeat;
}

.section3 {  }
.green h2 {
	color: #fff;
}


@media screen and (max-width: 768px) {
	
	.s1 h1 {
		text-align: center;
	}

}

@media screen and (max-width: 500px) {
	.lax section {
		
	}
	.s1 video {
		min-height: 500px;
		height: 100vh;
	}
	.s1 h1 {
		text-align: center;
	}

}