@keyframes blob{
	0% {transform: scale(1)}

	50% {transform: scale(1.5)}
	100% {transform: scale(0); }
  }
@keyframes circ{
	0% {transform: translate(-50%,-50%) rotate(0deg)}
	100% {transform: translate(-50%,-50%) rotate(360deg)}
  }

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
	cursor: none;
}


body {
	/* height: 100vh; */
	overflow: hidden;
	/* transition: 300ms; */
	font-family: 'Archivo', sans-serif;
	background-color: #ffffff;
	background-image: url("/media/img/method-draw-image.svg");
	background-position: top left;
	/* color: grey; */
	/* cursor: url("/img/cursor/cursor.png") 8 8, auto; */
}

.wrapper {
	/* position: absolute; */
	width: 100vw;
	height: 100vh;
	color: rgb(0, 0, 0);
	/* display: flex;
	align-items: center;
	justify-items: center; */

}

#scroller {
	position: relative;
	height: 100vh;
	width: 100vw;
	/* color: aliceblue; */
	overflow-y: scroll;
	/* z-index: 300; */
	/* background-color: orange; */
	scroll-snap-type: y mandatory;
	font-size: 1.2rem;
	transition: 500ms;
	
}

#scroller section {
	
	height: 100vh;
	width: 100vw;
	scroll-snap-align: start;

	/* padding: 12em 1em; */

	/* color: white; */
	/* border: 1px solid blue; */
	

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;	
}

main#main, aside#presentation {
	/* border: lawngreen 10px solid; */
	width: 100vw;
	height: min-content;
	position: absolute;
	top: 100vh;
	right: 0;
	/* overflow: hidden; */
	transition: 800ms ease-in-out; 
}

main#main {
	z-index: 800;
}

aside#presentation{
	font-family: "Poppins";
	max-width: 600px;
	background-color: lightcoral;
	color: black;
	width: 100vw;
	height: 100%;
	padding: 3rem;
	/* font-size: 1.2rem; */
	/* line-height: 1.3; */
	/* margin: 3em; */
	top: 0;
	left: 100%;
}

aside#presentation ul {
	/* border: 1px solid blue; */
	list-style: none;
	margin-top:1rem;
}

aside#presentation li {
	text-align: right;	
}
aside#presentation li a {
	margin: 1em 0;
}
aside#presentation em {
	text-decoration-color: white;
}

#intro	 {
	position: relative;
	/* border: firebrick 10px solid; */
	height: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

canvas {
	position: fixed;
	top: 0;
	width: 50vw;
	right: 0;
}
#container{
	z-index: -1;
}



h2 {
	/* position: absolute; */
	font-size: 9vw;
	max-width: 90vw;
	/* mix-blend-mode: hard-light; */
	/* min-width: max-content; */
	font-weight: normal!important;
	font-style: italic;
	line-height: 1.03;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	transition: 120ms;
}

a{
	display: inline-block;
	font-size: 1rem;
	color: inherit;
	margin-left: .5rem;
	text-decoration: none;
	/* transform: translateX(-100%); */
	font-family: "Archivo";
	
	transition: 120ms;
	/* text-decoration: underline wavy 2px; */
	/* text-decoration-color: lightcoral; */
	
}

.underWave{
	color: inherit;
	text-underline-offset: 0.1em;
	
}

#sphere {
	border-radius: 100%;
	position: absolute;
	left: calc(50vw - 40vw);
	top: calc(50vh - 40vw);
	width: 80vw;
	height: 80vw;
	background-color: lightcoral;
	/* transform: translate(-50%,-50%) scale(1,1); */

	color: white;
	font-size: 1.2rem;
	text-align: center;
	
	z-index: 3000;
	
	animation-timing-function: cubic-bezier(.35,-0.21,.46,1.01);
	/* animation-delay: 1s; */
	/* will-change: transform; */

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

  }

.fade-out {
    /* opacity: 0; */

	transform: scale(0,0);
	transition: 1200ms;
	animation-delay: 3s;
	animation: blob 800ms;
	transition-timing-function: cubic-bezier(.35,-0.21,.46,1.01) ;
}

.fade-in {
    /* opacity: 0; */

	transform: scale(1,1) !important;

	transition-timing-function: cubic-bezier(.35,-0.21,.46,1.01) ;
}

.pointer {
	position: absolute;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	transform: translate(-50%,-50%);
	background-color: lightcoral;
	mix-blend-mode: multiply;
	pointer-events: none;
	/* transition: 60ms; */
	opacity: 0.8;
	z-index: 9999;
}

#inner {
	opacity: 0;
	width: 4px;
	height: 4px;
	
}

.pressed {

	border: 2px solid lightcoral;
	background-color: transparent !important;
	width: 40px;
	height: 40px ;
	transition: 90ms !important;
	/* will-change: width, height, left, top; */
}

.onpoint {
	opacity: 1 !important;

	transition: 120ms !important;
}

.overing {
	width: 50px;
	height: 50px;
	/* border-radius: 0; */

	/* transition: 90ms; */
	mix-blend-mode: difference;
	background-color: teal ;
	border-color: teal ;

}

#about {
	position: fixed;
	right: 0;
	top: 0;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

i {
	/* opacity: 0; */
	transition: 120ms;
}

i:hover{
	opacity: 1;
}


.btn {
	position: relative;
	/* bottom: 10%; */
	/* font-size: 2em; */
	/* left: 0; */
	/* padding: 1em; */
	margin: 3em;
	z-index: 999;
}



#mail {
	position: fixed;
	right: 0;
	bottom: 0;
}

  .line {

	display: inline-block;
	display: none;
	height: 2px;
	width: 2em;
	background-color: teal;
	/* margin-right: 1em; */
	transition: 300ms;
  }

  .caption {
	  font-family: "Archivo";
	  color: black;
	  /* width: max-content; */
	  /* margin-top: 2em; */
	  display: inline-flex;
	  flex-direction: row;
	  align-items: center;
  }

  em {
	  text-decoration: wavy underline lightcoral;
	  font-style: normal;
  }

  .arrow {
	content: "";
	
	border: solid teal;
	border-width: 0px 0px 2px 2px;
	/* display: inline-block; */
	display: none;
	padding: 3px;
	transform: translateX(-80%) rotate(-45deg) ;
	-webkit-transform: translateX(-80%) rotate(-45deg);
  }
  
  .discover {
	  /* width: 4em; */
	  transition: 120ms;
	  /* color: grey; */
	  cursor:pointer;
	  /* text-decoration: lightcoral wavy underline; */
	  /* text-shadow: 0 0 10px grey; */
  }

  .description {
	  font-size: 1rem;
	  font-family: "Poppins";
	  /* font-style: italic; */
	  /* max-width: 40%; */
	  /* margin: 3em; */
  }

  #info {
	  width: 200px;
	  position: absolute;
	  font-family: "Archivo";
	  font-size: 1.65em;

	  opacity: 0;
	   /* background-color: skyblue; */
  }

.infotein {
	opacity: 1 !important;
	transition: 200ms;
	animation: circ 10s linear infinite;
	
}

#firsthome {
	animation: none !important;
}

#index {
	position: fixed;
	bottom: 0;
	left: 0;
	transform: scale(0,0);
	transition: 1200ms;
}

.slidingHor{
	right:100% !important;
}

.slidingLEFT{
	left: calc(100vw - 600px) !important;
	z-index: 500;
}


.slidingVert{
	transform: translateY(-100vh);
}

.alt-over{
	background-color: teal;
	color: white !important;
}


@media screen and (max-width: 768px){
	.btn {
		margin: 2em;
	}

	aside#presentation.slidingLEFT{
		left: 0 !important;
		padding: 4em 2em;
	}

	aside#presentation.slidingLEFT .infotein{
		width: 200px !important;
	}

	aside#presentation li a {
		margin: .5rem 0;
	}

	.btn.navigation#next {
		right: 0;
	}

	body:not(.index) .btn#mail {
		bottom: 2em;
	}
}