/* --------------------------------

Primary style

-------------------------------- */
/* *, *::after, *::before {
  box-sizing: border-box;
}

html,body{padding:0;margin:0;}
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: serif;
  color: #242322;
  background-color: #ffffff;
}

a {
  color: #a5c4bc;
  text-decoration: none;
}

h1 {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 1em;
  font-family: serif;
  font-style: italic;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
} */

/* --------------------------------

Main Content

-------------------------------- */
.intro-animation-wrapper {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: table;
  background-color: #F7F8F1;
  font-family: serif;
  overflow: hidden;
}
.intro-animation-wrapper .s-opening{
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(/landing_assets/img/banner_img_v1.jpg) no-repeat center center;
	background-size: cover;
  z-index: 10;
  opacity: 0;
}
.intro-animation-wrapper .s-opening-2{
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(/landing_assets/img/banner_img_v1_color.jpg) no-repeat center center;
	background-size: cover;
  z-index: 9;
  opacity: 0;
}
.intro-animation-wrapper .s-opening-3{
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(/landing_assets/img/banner_img_v1_color2.jpg) no-repeat center center;
	background-size: cover;
  z-index: 8;
  opacity: 0;
}
.intro-animation-wrapper .landing_key_logo{
  position: relative;
  z-index: 11;
  opacity: 0;
}
.intro-animation-wrapper .landing_key_logo img{
	width: 500px;
  max-width: 90%;
}
.intro-animation-wrapper .center{
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 100vh;
  width: 100vw;
	z-index: 10;
}
.intro-animation-wrapper .text-transition-wrapper{
	position: relative;
	font-family: 'Noto Serif TC', 'Times New Roman', serif;
  font-size: 16px;
	color: white;
}


/* --------------------------------

Transition Layer

-------------------------------- */

.b-poem-tc {
	text-align: center;
	width: 100%;
}

.b-poem-tc .ani-txt-blur .word {
	-webkit-animation: text_blur2 0.7s forwards ease-in;
	animation: text_blur2 0.7s forwards ease-in;
  letter-spacing: 6px;
}

.b-poem-tc .ani-txt-blur .word.ani-txt-hide {
	-webkit-animation: text_hide 0.8s forwards ease-in;
	animation: text_hide 0.8s forwards ease-in;
}

.b-poem-tc .line {
	font-size: 1.8em;
	font-weight: 400;
}

.b-poem-tc .word {
	opacity: 0;
	filter: alpha(opacity=0);
}

.b-poem-tc @media screen and (max-width: 768px) {
	.b-poem-tc .line {
		font-size: 1.5em;
	}
}
.b-poem-tc .line-0{padding-right: 30px;}
.b-poem-tc .line-1{padding-left: 30px;}
.b-poem-tc .line-3{padding-right: 30px;}
.b-poem-tc .line-4{padding-left: 30px;}
.b-poem-tc .line-5,.b-poem-tc .line-6{
	font-size: 2.4em;
	font-weight: 500;}

.b-poem-tc .line-0 .word-4,
.b-poem-tc .line-0 .word-5,
.b-poem-tc .line-1 .word-4,
.b-poem-tc .line-1 .word-5,
.b-poem-tc .line-3 .word-4,
.b-poem-tc .line-3 .word-5,
.b-poem-tc .line-3 .word-6,
.b-poem-tc .line-3 .word-7,
.b-poem-tc .line-4 .word-3,
.b-poem-tc .line-4 .word-4,
.b-poem-tc .line-4 .word-5,
.b-poem-tc .line-4 .word-6
{
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: 4px;
}

@keyframes text_blur2 {
	0% {
		opacity: 0;
		filter: alpha(opacity=0);
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
	}
}

@-webkit-keyframes text_blur2 {
	0% {
		opacity: 0;
		filter: alpha(opacity=0);
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
	}
}


/* --------------------------------

Skip button

-------------------------------- */ 
 
.intro-skip-btn-wrap{
	position: absolute;
	bottom: 80px;
	right: 50px;
	z-index: 20; 
  }

  .intro-skip-btn{
	font-family: sans-serif;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: white;
	padding: 10px 20px;
	transition: background-color .3s ease, color .3s ease;
	border-radius: 5px;
	cursor: pointer;
  }
  .intro-skip-btn:hover{
	background-color: rgba(255,255,255,.6);
	color: #416852;
  }
