.os-phrases h2 {
	font-family: 'Dosis', 'Lato', sans-serif;
	font-size: 70px;
	font-weight: 200;
	width: 100%;
	overflow: hidden;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	letter-spacing: 14px;
	text-align: center;
}

.os-phrases h2,
.os-phrases h2 > span {
	height: 100%;
	/* Centering with flexbox */
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.os-phrases h2 > span {
	margin: 0 15px;
}

#os-phrases {
	opacity: 0;
	animation: fte .3s forwards;
}

@keyframes fte {
	0% {opacity: 0;}
	100%{opacity: 1;}
}


.os-phrases h2 > span > span {
	display: inline-block;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.os-phrases h2 > span > span > span {
	display: inline-block;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	color: hsla(0,0%,0%,0);
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-animation: OpeningSequence 5s linear forwards;
	-moz-animation: OpeningSequence 5s linear forwards;
	animation: OpeningSequence 5s linear forwards;
	animation-delay: .4s;
}

.os-phrases h2:nth-child(1) > span > span > span {
	font-size: 85px;
}

.os-phrases h2:nth-child(2) > span > span > span {
	animation: OpeningSequence2 5.5s linear forwards;
	-webkit-animation-delay: 5.2s;
	-moz-animation-delay: 5.2s;
	animation-delay: 5.6s;
	position: relative;
	top: -60px;
}

.os-phrases h2:nth-child(3) > span > span > span {
	animation: OpeningSequence3 4.6s linear forwards;
	-webkit-animation-delay: 5.8s;
	-moz-animation-delay: 5.8s;
	animation-delay: 6.6s;
	position: relative;
	top: 50px;
}

.os-phrases h2:nth-child(4) > span > span > span {
	-webkit-animation-delay: 13s;
	-moz-animation-delay: 13s;
	animation-delay: 13s;
}

.os-phrases h2:nth-child(5) > span > span > span {
	font-size: 150px;
	-webkit-animation-delay: 21s;
	-moz-animation-delay: 21s;
	animation-delay: 21s;
	-webkit-animation-duration: 8s;
	-moz-animation-duration: 8s;
	animation-duration: 8s;
}

.os-phrases h2:nth-child(6) > span > span > span {
	-webkit-animation-delay: 30s;
	-moz-animation-delay: 30s;
	animation-delay: 30s;
}

.os-phrases h2:nth-child(7) > span > span > span {
	-webkit-animation-delay: 34s;
	-moz-animation-delay: 34s;
	animation-delay: 34s;
}

@-webkit-keyframes OpeningSequence {
	0% {
		text-shadow: 0 0 50px #000;
		letter-spacing: 80px;
		opacity: 0;
		-webkit-transform: rotateY(-90deg);
	}
	35% {
		text-shadow: 0 0 1px #000,5px -5px 8px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		-webkit-transform: rotateY(0deg);
	}
	90% {
		text-shadow: 0 0 1px #000,5px -5px 10px #000;
		opacity: 0.8;
		-webkit-transform: rotateY(0deg) translateZ(100px);
	}
	100% {
		text-shadow: 0 0 10px #000,5px -5px 3px #000;
		opacity: 0;
		-webkit-transform: translateZ(130px);
		pointer-events: none;
	}
}

@-moz-keyframes OpeningSequence {
	0% {
		text-shadow: 0 0 50px #000;
		letter-spacing: 80px;
		opacity: 0.2;
		-moz-transform: rotateY(-90deg);
	}
	50% {
		text-shadow: 0 0 1px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		-moz-transform: rotateY(0deg);
	}
	85% {
		text-shadow: 0 0 1px #000;
		opacity: 0.8;
		-moz-transform: rotateY(0deg) translateZ(100px);
	}
	100% {
		text-shadow: 0 0 10px #000,5px -5px 3px #000;
		opacity: 0;
		-moz-transform: translateZ(130px);
		pointer-events: none;
	}
}

@keyframes OpeningSequence {
	0% {
		text-shadow: 0 0 50px #000;
		letter-spacing: 80px;
		opacity: 0.2;
		transform: rotateY(-90deg);
	}
	30% {
		text-shadow: 0 0 1px #000,-5px 5px 10px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	50% {
		text-shadow: 0 0 0px #000,-5px 5px 10px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	52% {
		text-shadow: 0 0 0px #000,-5px 5px 10px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	85% {
		text-shadow: 0 0 1px #000,-5px 5px 10px #000;
		opacity: 0.8;
		transform: rotateY(0deg) translateZ(100px);
	}
	100% {
		text-shadow: 0 0 10px #000,5px -5px 3px #000;
		opacity: 0;
		transform: translateZ(130px);
		pointer-events: none;
	}
}

@keyframes OpeningSequence2 {
	0% {
		text-shadow: 0 0 50px #000;
		letter-spacing: 80px;
		opacity: 0.2;
		transform: rotateY(-90deg);
	}
	30% {
		text-shadow: 0 0 1px #000,-5px 5px 10px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	50% {
		text-shadow: 0 0 0px #000,-5px 5px 10px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}

	52% {
		text-shadow: 0 0 0px #000,-5px 5px 10px #000;
		letter-spacing: 14px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	85% {
		text-shadow: 0 0 1px #000,-5px 5px 10px #000;
		opacity: 0.8;
		transform: rotateY(0deg) translateZ(100px);
	}
	100% {
		text-shadow: 0 0 10px #000,5px -5px 3px #000;
		opacity: 0;
		transform: translateZ(130px);
		pointer-events: none;
	}
}

@keyframes OpeningSequence3 {
	0% {
		text-shadow: 0 0 50px #000;
		letter-spacing: 80px;
		opacity: 0.2;
		transform: rotateY(-90deg);
	}
	35% {
		text-shadow: 0 0 1px #000,-5px 5px 10px #000;
		letter-spacing: 25px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	50% {
		text-shadow: 0 0 0px #000,-5px 5px 10px #000;
		letter-spacing: 25px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}

	52% {
		text-shadow: 0 0 0px #000,-5px 5px 10px #000;
		letter-spacing: 25px;
		opacity: 0.8;
		transform: rotateY(0deg);
	}
	73% {
		text-shadow: 0 0 1px #000,-5px 5px 10px #000;
		letter-spacing: 25px;
		opacity: 0.8;
		transform: rotateY(0deg) translateZ(100px);
	}
	100% {
		text-shadow: 0 0 10px #000,5px -5px 3px #000;
		letter-spacing: 25px;
		opacity: 0;
		transform: translateZ(130px);
		pointer-events: none;
	}
}

.os-phrases h2:nth-child(8) > span > span > span {
	font-size: 30px;
	-webkit-animation: FadeIn 4s linear 40s forwards;
	-moz-animation: FadeIn 4s linear 40s forwards;
	animation: FadeIn 4s linear 40s forwards;
}

@-webkit-keyframes FadeIn { 
	0% {
		opacity: 0;
		text-shadow: 0 0 50px #000;
	}
	100% {
		opacity: 0.8;
		text-shadow: 0 0 1px #000;
	}
}

@-moz-keyframes FadeIn { 
	0% {
		opacity: 0;
		text-shadow: 0 0 50px #000;
	}
	100% {
		opacity: 0.8;
		text-shadow: 0 0 1px #000;
	}
}

@keyframes FadeIn { 
	0% {
		opacity: 0;
		text-shadow: 0 0 50px #000;
	}
	100% {
		opacity: 0.8;
		text-shadow: 0 0 1px #000;
	}
}

/* Bold words */
.os-phrases h2:first-child .word3,
.os-phrases h2:nth-child(2) .word2,
.os-phrases h2:nth-child(4) .word2 {
	font-weight: 600;
}
#back {
	display: none;
	position: relative;
	overflow: hidden;
	z-index: -100;
}

.reflection {
	opacity: 0;
	width: 2000px;
	height: 2000px;
	margin: auto;
	border-radius: 10000px;
	position: absolute;
	bottom: 0;
	top: 0;
	right: 1500px;
	background: rgba(0,0,0,0);
	animation: reflection .8s ease-in-out;
	animation-delay: 3s;
	box-shadow:0px 0px 180px 180px rgba(255,255,255,.8) inset,0px 0px 180px 20px rgba(255,255,255,.8);
	z-index: 200000;
}

.reflection2 {
	opacity: 0;
	width: 2000px;
	height: 2000px;
	margin: auto;
	border-radius: 10000px;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 1500px;
	background: rgba(0,0,0,0);
	animation: reflection 1s ease-in-out;
	animation-delay: 9s;
	box-shadow:0px 0px 180px 180px rgba(255,255,255,.8) inset,0px 0px 180px 20px rgba(255,255,255,.8);
	z-index: 200000;
}

.reflection3 {
	opacity: 0;
	width: 2000px;
	height: 2000px;
	margin: auto;
	border-radius: 10000px;
	position: absolute;
	top: 300px;
	left: 0px;
	background: rgba(0,0,0,0);
	animation: reflection 3s ease-in-out;
	animation-delay: 0s;
	box-shadow:0px 0px 180px 180px rgba(255,255,255,.8) inset,0px 0px 180px 20px rgba(255,255,255,.8);
	z-index: 200000;
}

@keyframes reflection {
    0% {
    	transform: scale(0);  
    	opacity: 0; 
    }

    80% { 
    	opacity: 0.5; 
    }

    81% { 
    	opacity: 1;
    }

    100% {
    	transform: scale(2); 
    	opacity: 0;
    }
}