*{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	color: aliceblue;
}

html,body{
	margin: 0;
	padding: 0;
	font-family: 'Dongle', sans-serif;
	overflow: hidden;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
	display: none;
  }
  

.decs{
	padding: 15px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 60;
}

.after {
	text-decoration: none;
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 60;
	font-size: 1.6rem;
    background: #fff;
    color: #00bfe7;
    border-radius: 50px;
    padding: 0 12px;
    box-shadow: 0 0 8px #ffffff80;
}

.decs h1{
	margin: 0;
	font-size: 5rem;
}


#wrap{
	overflow-x: scroll;
	display: flex;
	height: 100vh;
	touch-action: pan-x;
	-webkit-overflow-scrolling: touch;
}
  
.objects{
	bottom: 0;
	z-index: 50	;
	display: flex;
	background-image: url(../image/ground.png);
	background-repeat: repeat-x;
	background-size: auto 15vh;
    background-position: bottom;
}

.obj { display: flex; margin-top: auto;}	
.obj img{ width: 100%; }
.obj:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s infinite;
	animation: flash 1.5s infinite;
}

.turtle{
	width: 20vw;
    position: absolute;
    left: 10vw;
    bottom: 50vh;
	animation: turtle 10s infinite;
}

@keyframes turtle{
	0%{
		transform: translateY(-10px);
		filter: blur(1px);
	}
	50%{
		transform: translateY(10px);
		filter: blur(0);
	}
	100%{
		transform: translateY(-10px);
		filter: blur(1px);
	}
}

.turtle img {width: 100%;}
.horn-leaf-wrap{
	display: flex;
    align-items: baseline;
	position: relative;
}

.horn-leaf{
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	min-width: 900px;
	width: 90vw;
	z-index: 1;
	bottom: 0;
}

.tok{
	min-width: 100px;
	width: 20vw;
	z-index: 3;
	position: absolute;
	bottom: 25vh;
}

.greenhorn{
	min-width: 472px;
	width: 47.2vw;
	z-index: 2;
}

.tetrapod{
	min-width: 100px;
	width: 45vw;
	margin-right: -100px;
}

.redleaf{
	min-width: 427px;
	width: 42.7vw;
	z-index: 2;
}
.seaweed{
	min-width: 500px;
	width: 35vw;
	z-index: -1;
}

.moja{
	margin-left: -100px;	
	min-width: 400px;
	width: 35vw;	
}
.moss{
	margin-right: -100px;
	margin-left: 50px;
	background-image: url(../image/moss_bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	min-width: 500px;
	width: 50vw;
}

.gamtea-wrap{
	display: flex;
    align-items: baseline;
	position: relative;

	margin-left: -25px;
	background-image: url(../image/gamtea_bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
	min-width: 600px;
	width: 60vw;
}

.gamtea{
	min-width: 600px;
	width: 60vw;
}

.pdf{
	min-width: 200px;
    width: 30vw;
    z-index: 3;
    position: absolute;
    bottom: 5vh;
	right: 0;
}
 

@-webkit-keyframes flash {
	0% {opacity: .7;}
	50% {opacity: 1;}
	100% {opacity: .7;}
}
@keyframes flash {
	0% {opacity: .7;}
	50% {opacity: 1;}
	100% {opacity: .7;}
}

/*modal*/

.modal{
    --bs-modal-width: 60vw;
  }

/* decolation*/

.front-layer *{
	z-index: 99 !important;
}

/* bubbles */
  .ocean {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: rgb(6,0,99);
	background: linear-gradient(0deg, rgba(6,0,99,1) 0%, rgba(9,82,121,1) 45%, rgba(0,191,231,1) 100%);
  }

  .bubble {
	width: 15px;
	height: 15px;
	border-radius: 100%;
	position: absolute;
	background-color: white;
	bottom: -30px;
	opacity: 0.2;
	animation: bubble 15s ease-in-out infinite,
	  sideWays 4s ease-in-out infinite alternate;
  }
  
  @keyframes bubble {
	0% {
	  transform: translateY(0%);
	  opacity: 0.06;
	}
	100% {
	  transform: translateY(-120vh);
	}
  }
  
  @keyframes sideWays {
	0% {
	  margin-left: 0px;
	}
	100% {
	  margin-left: 200px;
	}
  }
  
  .bubble--1 {
	left: 10%;
	animation-delay: 0.5s;
	animation-duration: 16s;
	opacity: 0.2;
  }
  
  .bubble--2 {
	width: 7px;
	height: 7px;
	left: 40%;
	animation-delay: 1s;
	animation-duration: 10s;
	opacity: 0.1;
  }
  
  .bubble--3 {
	width: 5px;
	height: 5px;
	left: 30%;
	animation-delay: 5s;
	animation-duration: 20s;
	opacity: 0.3;
  }
  
  .bubble--4 {
	width: 7px;
	height: 7px;
	left: 40%;
	animation-delay: 8s;
	animation-duration: 17s;
	opacity: 0.2;
  }
  
  .bubble--5 {
	width: 8px;
	height: 8px;
	left: 60%;
	animation-delay: 10s;
	animation-duration: 15s;
	opacity: 0.1;
  }
  
  .bubble--6 {
	width: 7px;
	height: 7px;
	left: 80%;
	animation-delay: 3s;
	animation-duration: 30s;
	opacity: 0.4;
  }
  
  .bubble--7 {
	width: 4px;
	height: 4px;
	left: 90%;
	animation-delay: -7s;
	animation-duration: 25s;
	opacity: 0.3;
  }
  
  .bubble--9 {
	width: 5px;
	height: 5px;
	left: 50%;
	bottom: 30px;
	animation-delay: -5s;
	animation-duration: 19s;
	opacity: 0.2;
  }
  
  .bubble--10 {
	width: 8px;
	height: 8px;
	left: 30%;
	bottom: 30px;
	animation-delay: -21s;
	animation-duration: 16s;
	opacity: 0.3;
  }
  
  .bubble--11 {
	width: 7px;
	height: 7px;
	left: 60%;
	bottom: 30px;
	animation-delay: -13.75s;
	animation-duration: 20s;
	opacity: 0.3;
  }
  
  .bubble--11 {
	width: 7px;
	height: 7px;
	left: 90%;
	bottom: 30px;
	animation-delay: -10.5s;
	animation-duration: 19s;
	opacity: 0.3;
  }
  


/* fishs */

.fish{
	position: absolute;
}
.fish1{
	top: 30%;
	height: 60px;
	animation: animate 20s linear infinite;
	z-index: 1;
}
.fish2{
	top: 20%;
	height: 30px;
	opacity: 0.8;
	z-index: 1;
	animation: animate 18s linear infinite;
}
.fish11{
	top: 50%;
	height: 40px;
	opacity: 0.8;
	animation: animate 25s linear infinite;
	z-index: 1;
}
.fish4{
	top: 40%;
	height: 60px;
	opacity: 0.8;
	animation: animate 30s linear infinite;
}
.fishgroup1{
	top: 45%;
	height: 70px;
	opacity: 0.8;
	animation: animate 40s linear infinite;
	z-index: 1;
}
.fishgroup3{
	top: 10%;
	height: 150px;
	opacity: 0.5;
	animation: animate 45s linear infinite;
	z-index: 1;
}

.fish12{
	bottom: 25vh;
	height: 45px;
	animation: animate 45s linear infinite;
	z-index: 0;
}

.fish13{
	bottom: 30vh;
	height: 60px;
	animation: animate 30s linear infinite;
	z-index: 0;
}
/*left to right movement*/
@keyframes animate{
	0%{
		transform: translateY(-70px);
		left:-30%;
	}
	25%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(70px);
	}
	75%{
		transform: translateY(0px);
	}
	100%{
		transform: translateY(-70px);
		left: 100%;
	}
}

.fish6{
	top: 75%;
	height: 135px;
	animation: animate1 25s linear infinite;
	z-index: 1;
}
.fish10{
	top: 25%;
	height: 100px;
	animation: animate1 30s linear infinite;
	z-index: 1;
}
.fishgroup2{
	top: 45%;
	height: 100px;
	opacity: 0.5;
	animation: animate1 45s linear infinite;
	z-index: 1;
}
/*right to left movement*/
@keyframes animate1{
	0%{
		transform: translateY(-70px);
		right:-30%;
	}
	25%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(70px);
	}
	75%{
		transform: translateY(0px);
	}
	100%{
		transform: translateY(-70px);
		right: 100%;
	}
}



/* blur */

.blur-01 {
	animation: blur1 5s ease 0s infinite;
	-webkit-animation: blur1 5s ease 0s infinite;
	-moz-animation: blur1 5s ease 0s infinite;
  }
  
  .blur-02 {
	animation: blur2 4s ease 1s infinite;
	-webkit-animation: blur2 4s ease 1s infinite;
	-moz-animation: blur2 4s ease 1s infinite;
  }  
  
  .blur-03 {
	animation: blur2 6s ease 2s infinite;
	-webkit-animation: blur2 6s ease 2s infinite;
	-moz-animation: blur2 6s ease 2s infinite;
  }  

  .blur-04 {
	animation: blur2 4s ease 2s infinite;
	-webkit-animation: blur2 4s ease 2s infinite;
	-moz-animation: blur2 4s ease 2s infinite;
  }  

  @keyframes blur1 {
	0%,
	100% {
	  -webkit-filter: blur(1px);
	  -moz-filter: blur(1px);
	  -o-filter: blur(1px);
	  -ms-filter: blur(1px);
	}
	50% {
	  -webkit-filter: blur(3px);
	  -moz-filter: blur(3px);
	  -o-filter: blur(3px);
	  -ms-filter: blur(3px);
	}
  }
  
  @keyframes blur2 {
	0%,
	100% {
	  -webkit-filter: blur(0px);
	  -moz-filter: blur(0px);
	  -o-filter: blur(0px);
	  -ms-filter: blur(0px);
	}
	50% {
	  -webkit-filter: blur(1px);
	  -moz-filter: blur(1px);
	  -o-filter: blur(1px);
	  -ms-filter: blur(1px);
	}
  }
  
  /* sw-decs */
  

  .sw-decs{
	padding: 0;
  }
 
  .sw-decs img {width: 100%;}
  
  .sw-decs-01{	width: 13.87%  }
  .sw-decs-02{	width: 13.65%  }
  .sw-decs-03{	width: 9.62%  }
  .sw-decs-04{	width: 13.62%  }
  .sw-decs-05{	width: 14.97%  }
  .sw-decs-06{	width: 13.16%  }
  .sw-decs-07{	width: 16.11%  }
  .sw-decs-08{	width: 5.00%;  }
  
  .sw-decs-09{	width: 11.6%  }
  .sw-decs-10{	width: 14.6%  }
  .sw-decs-11{	width: 14.01%  }
  .sw-decs-12{	width: 11.38%  }
  .sw-decs-13{	width: 14.14%  }
  .sw-decs-14{	width: 12.60%  }
  .sw-decs-15{	width: 16.67%  }
  .sw-decs-16{	width: 5.00%;  }

  