html{
	scroll-snap-type: mandatory;
	scroll-snap-points-y: repeat(100vh);
	scroll-snap-type: y mandatory;
}

body{
}

#about-wrapper{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	pointer-events:none;
}

.landing-image{
	width:50%;
	aspect-ratio: 1 / 1;
	max-width:500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index:100;
}

.landing-text{
	width:50%;
	min-height:;
	background-color:white;
	position:absolute;
	display:inline-block;
	right:20px;
	top:55%;
	padding: 10px 10px 10px 25px;
	z-index:100;
}

section{
	position:relative;
	width:100%;
	height:90svh;
	max-width:1600px;
	justify-content: center;
	align-items: center;
	overflow:hidden;
	margin:0 auto;
}

.about-landing-wrapper{
	width:100%;
	height:100svh;
	max-width:1600px;	
	background-color:#fff;
}
#about-snapscroll{
	scroll-snap-align: center;
}

#check{
 /* Div provides height for js image change in html */

}

#left-pane-position{
	position:fixed;
	width:50%;
	height:100%;
	background-color:;
	z-index:10;
}

#left-pane {
	position: absolute;
	width: 40vw;
	height: 40vw;
	max-width:500px;
	max-height:500px;
	right:0;
	top: 50%;
	transform: translate(0%, -50%);
}

#left-pane .img-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  right:0;
}

#left-pane .img-wrapper .img {
  position: absolute;
  width: 40vw;
  height: 40vw;
  max-width:500px;
  max-height:500px;
  /* Sizing and cropping of image */
  background-position: center;
  background-size: 99%;
  background-repeat:no-repeat;
  /* Transition - the slow sliding of images */
  transition: 0.1s all ease-in-out;
}
/* hiding images in #top-image */
#left-pane .img {
  top: 110%;
  right:0;
}
#left-pane .img.visible {
	top: 50%;
	transform: translate(0%, -50%);
	right:0;
}


.white{
	background-color:#fff;
}

.text{
	width:50%;
	position:absolute;
	max-width:500px;
	top: 50%; /*****Added 2% to drop text below image*********/
	left: 50%;
	transform: translate(0%, -50%);
	padding-top:0px;
	padding-left:25px;
	padding-right:20px;
	padding-bottom:0px;
	float:right;
	background-color:;
	z-index:200;
}

.spacer{
	background-color:;
	height:10vh;
}
/****************************** Media Screen (<767px) *******************************/


@media screen and (max-width: 767px){
html{
	scroll-snap-type: none;
}
section{
	height:90lvh;
}
.about-landing-wrapper{
	height:90lvh;
}
.spacer{
	background-color:;
	height:20lvh;
}
.landing-image{
	width:70%;
	aspect-ratio: 1 / 1;
	max-width:500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.landing-text{
	width:75%;
	min-height:;
	background-color:#fff;
	position:absolute;
	display:inline-block;
	right:20px;
	top:60%;
}
.text{
	width:100%;
	height:52%;
	position:;
	max-width:500px;
	top:56%;			/*****Added 6% to drop text below image*********/
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, -25%);
	padding-top:50px;
	padding-left:25px;
	padding-right:20px;
	padding-bottom:0px;
	background-color:;
}

#left-pane-position{
	width:100%;
	height:100lvh;
	margin-top:;
	background-color:;
}
#left-pane {
	height: 50lvh;
	width: 50%;
  	right:5%;
	top: 20%;
	transform: translate(-5%,-20%);
	max-width:300px;
	max-height:300px;
}
#left-pane .img-wrapper .img {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width:300px;
	max-height:300px;
}

/*** Reorder for Mobile ***/
.one { 
	order: 1;
}
.two { 
	order: 2;
}
}

/****************************** Media Screen (>1201px) ******************************/

@media screen and (min-width: 1201px){
/*********Scroll Snap***********
html{
	scroll-snap-type: mandatory;
	scroll-snap-points-y: repeat(100vh); 
	scroll-snap-type: y mandatory;
}
#about-snapscroll{
	scroll-snap-align: center;
	background-color:;
}
*********Scroll Snap***********/