@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap&subset=chinese-traditional');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');


html,body{
	position: relative;
	width: 100%;
	height: auto;
}
html{
	scroll-behavior: smooth; 
	padding: 0;
	margin: 0;
	/*min-width: 1300px;*/
}
body{
	font-family: 'Noto Serif TC', sans-serif;
	position: relative;
	padding: 0;
	margin: 0;	
	background-color: #ffffff;
	transition: 0.3s ease;
}
*{
	box-sizing: border-box;
}
canvas{
	display: block;
}

.app{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
}

[data-aos="fade-ani"] {
	opacity: 0;
	transform: translateY(15%);
	transition-property: transform, opacity;
}
[data-aos="fade-ani"].aos-animate{
	opacity: 1;
	transform: translateY(0%);
}

.steam-btn{
	position: relative;
	width: 325px;
	height: 65px;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 65px;
	background: url('../img/steam-btn.png') no-repeat center;
	z-index: 10;
	text-decoration: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
}
.steam-btn i{
	position: relative;
	font-size: 50px;
	margin-right: 20px;
	z-index: 0;
}
.steam-btn:hover{
	filter: brightness(1.3);
	-webkit-filter: brightness(1.3);
	-ms-filter: brightness(1.3);
	-o-filter: brightness(1.3);
}

.pc-btn{
	position: relative;
	width: 325px;
	height: 65px;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 65px;
	background: url('../img/pc-btn.png') no-repeat center;
	z-index: 10;
	text-decoration: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
}
.pc-btn i{
	position: relative;
	font-size: 50px;
	margin-right: 20px;
	z-index: 0;
}
.pc-btn:hover{
	filter: brightness(1.3);
	-webkit-filter: brightness(1.3);
	-ms-filter: brightness(1.3);
	-o-filter: brightness(1.3);
}


/*-------------------------------nav-----------------------------------*/

#app-nav-btn{
	display: none;
	position: fixed;
	width: 50px;
	height: 50px;
	padding: 0px;
	right: 2%;
	top: 2%;
	z-index: 1000;
	cursor: pointer;
	background-color: transparent;
	outline: none;
	border: none;
}
#app-nav-btn div{
	position: absolute;
	width: 24px;
	height: 20px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#app-nav-btn div span{
	transition: 0.3s linear;
}
#app-nav-btn div span:nth-child(1){
	position: absolute;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #e01c34;
	margin: 0 0 5px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#app-nav-btn div span:nth-child(2){
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	background-color: #e01c34;
	margin: 0 0 5px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#app-nav-btn div span:nth-child(3){
	position: absolute;
	display: block;
	width: 14px;
	height: 2px;
	background-color: #e01c34;
	margin: 0 0 0px;
	bottom: 0;
	left: 0;
}
#app-nav-btn.active div span:nth-child(1){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotateZ(45deg);
	background-color: #fbc471;
}
#app-nav-btn.active div span:nth-child(2){
	display: none;
	background-color: #fbc471;
}
#app-nav-btn.active div span:nth-child(3){
	position: absolute;
	width: 24px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotateZ(-45deg);
	background-color: #fbc471;
}
nav{
	position: fixed;
	width: 100%;
	height: 75px;
	top: 0px;
	background-color: rgba(20, 20, 20, 0.95);
	left: 0;
	z-index: 999;
	transition: 0.3s linear;
	font-family: 'Noto Sans TC', sans-serif;
}
.nav-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.nav-brand{
	position: relative;
	margin-left: 75px;
	transition: 0.3s linear;
}
.nav-brand img{
	position: relative;
	display: block;
	margin: 0 auto;
}
.nav-right{
	position: relative;
	width: max-content;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
ul.nav-menu{
	list-style: none;
	position: relative;
	width: max-content;
	height: 100%;
	padding: 0;
	margin: 0 0 0 0px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
ul.nav-menu:after{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: url('../img/navline.png') center;
	background-repeat: repeat-x;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
ul.nav-menu li{
	position: relative;
	margin: 0 25px;
	width: max-content;
	height: 100%;
}
ul.nav-menu li a{
	position: relative;
	padding: 0px;
	text-align: center;
	font-size: 16px;
	line-height: 75px;
	text-decoration: none;
	color: #fff;
	transition: 0.3s ease;
	width: 100%;
	letter-spacing: 5px;
}
ul.nav-menu li a:hover{
	color: #ed9f3b;
}
ul.nav-menu li.active a{
	color: #ed9f3b;
}
.nav-play{
	position: relative;
	width: 240px;
	height: 100%;
	cursor: pointer;
	transition: 0.3s linear;
}
.nav-play-btn{
	position: relative;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
  	justify-content: center;
  	align-items: center;
	width: 240px;
	height: 75px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 75px;
	transition: 0.3s ease;
	background-color: #c2283a;
}
.nav-play-btn:hover{
	background-color: #e6344a;
}
.nav-play ul{
	position: absolute;
	width: max-content;
	height: auto;
	list-style: none;
	padding: 8px 8px 0 8px;
	margin: 0;
	top: 75px;
	right: 0;
	background-color: #5b1d11;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s linear;
}
.nav-play ul li{
	position: relative;
	width: max-content;
	height: auto;
	margin-bottom: 8px;
}
.nav-play:hover ul{
	opacity: 1;
	visibility: visible;
}


/*-------------------------------m-nav-----------------------------------*/

.p0-1-bg{
	position: relative;
	width: 100%;
	height: 1900px;
	background: url('../img/p01bg.png') no-repeat center;
}
#particles-1{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}


/*-------------------------------p0-----------------------------------*/

section#p0{
	position: relative;
	width: 100%;
	height: 950px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
.p0-container{
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	padding-top: 250px;
}
img#s13-logo{
	position: relative;
	display: block;
}
img#p0title{
	position: relative;
	display: block;
	margin: 25px 0 15px;
}
.p0-container h3{
	position: relative;
	width: 100%;
	font-size: 30px;
	font-weight: 300;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0px 0 65px;
	text-shadow: 0 0px 5px rgba(0, 0, 0,1);
}
.p0-btns{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.p0-btns a{
	margin-right: 15px;
}
.p0-container > p{
	position: relative;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	text-align: left;
	padding: 0;
	margin: 15px 0;
	/*text-shadow: 0 0px 5px rgba(0, 0, 0,1);*/
}


/*-------------------------------p1-----------------------------------*/
section#p1{
	position: relative;
	width: 100%;
	height: 950px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p1-container{
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.p1-container h1{
	position: relative;
	font-size: 70px;
	font-weight: 700;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0;
}
i.p-block{
	position: relative;
	display: block;
	width: 600px;
	height: 1px;
	margin: 30px 0;
}
.p1-container i.p-block{
	background: url('../img/p1line.png') no-repeat center;
}
.p1-content{
	position: relative;
	width: 640px;
	height: auto;
}
.p1-content p{
	position: relative;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0 0 40px 0;
	line-height: 30px;
}
.p1-yt{
	position: relative;
	display: block;
	width: 480px;
	height: 270px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}
.p1-yt:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background: url('../img/p1yt-border.png') no-repeat center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 20;
	pointer-events: none;
}
a.yt-cover{
	position: absolute;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: rgba(20, 20, 20, 0.6);
	transition: 0.3s linear;
}
a.yt-cover:hover{
	background-color: rgba(20, 20, 20, 0.2);
}
a.yt-cover:hover .v-play{
	transform: scale(1.2,1.2);
}
.v-play{
	position: relative;
	display: block;
	transition: 0.3s linear;
}
.p1-yt iframe{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}


/*-------------------------------p2-----------------------------------*/
section#p2{
	position: relative;
	width: 100%;
	height: 950px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
section#p2{
	background: url('../img/p2bg.png') no-repeat center;
}
section#p2:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 12px;
	background: url('../img/splitline.png') no-repeat center;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.p2-container{
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
}
.p2-content{
	position: relative;
	width: 100%;
	height: auto;
}
.p2-info{
	position: relative;
	width: 40%;
	height: auto;
}
.p2-info h1{
	position: relative;
	font-size: 70px;
	font-weight: 700;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0 0 15px 0;
	line-height: 70px;
}
.p2-info h2{
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 20px;
}
.p2-info i.p-block{
	background: url('../img/p2line.png') no-repeat center;
}
.p2-info p{
	position: relative;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0 0 40px 0;
	line-height: 30px;
}
.p2-yt{
	position: relative;
	display: block;
	width: 480px;
	height: 270px;
}
.p2-yt:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background: url('../img/p2yt-border.png') no-repeat center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 20;
	pointer-events: none;
}
.p2-yt iframe{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}
/*.p2-yt{
	background: url('../img/p2bg.png') no-repeat center;
	background-size: cover !important;
}*/
a.more{
	position: absolute;
	display: block;
	width: 325px;
	height: 65px;
	background: url('../img/pc-btn.png') no-repeat center;
	font-size: 26px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: 0.3s linear;
	right: 0;
	bottom: 0;
	line-height: 65px;
}
a.more:hover{
	background: url('../img/steam-btn.png') no-repeat center;
}

/*-------------------------------p3-----------------------------------*/
section#p3{
	position: relative;
	width: 100%;
	height: 950px;
	padding-top: 75px;
	z-index: 10;
}
section#p3{
	background: url('../img/p3bg.png') no-repeat center;
}
section#p3:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 12px;
	background: url('../img/splitline.png') no-repeat center;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.p3-container{
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
}
.chara-tab{
	position: relative;
	width: max-content;
	height: auto;
	margin: 0 auto;
}
.chara-tab ul{
	position: relative;
	width: max-content;
	height: auto;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.chara-tab ul li{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0 10px;
}
.chara-tab ul li a{
	position: relative;
	width: 300px;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: 3s linear;
}
.chara-tab ul li a:hover .chara-simg img{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
}
.chara-tab ul li.active a .chara-simg img{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
}
.chara-simg{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.chara-simg img{
	position: relative;
	display: block;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
}
.ctab-id{
	position: relative;
	width: 100%;
	height: 25px;
	background-color: #007088;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
}
.chara-tab ul li a:hover .chara-simg .ctab-id{
	background-color: #e01c34;
}
.chara-tab ul li.active a .chara-simg .ctab-id{
	background-color: #e01c34;
}
.chara-container{
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.chara-content{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.chara-info{
	position: relative;
	width: 1366px;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 10;
	top: 200px;
}
.c-info-left{
	position: relative;
	width: max-content;
	height: auto;
}
.c-info-left h1{
	position: relative;
	width: max-content;
	font-size: 60px;
	font-weight: 700;
	color: #007088;
	text-align: left;
	padding: 0;
	margin: 0 0 15px 0;
	line-height: 60px;
}
.c-info-left h1:after{
	content: '';
	display: block;
	position: absolute;
	width: 148px;
	height: 237px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	background: url('../img/chara-dec.png') no-repeat center;
}
.c-info-left h2{
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #02383d;
	text-align: left;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 20px;
}
.c-info-left i.p-block{
	background: url('../img/p3line.png') no-repeat center;
	width: 301px;
	height: 2px;
}
.c-info-left .c-intro{
	position: relative;
	width: 420px;
	height: auto;
}
.c-info-left .c-intro p{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: #02383d;
	text-align: left;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 30px;
}
.c-info-right{
	position: relative;
	width: max-content;
	height: auto;
}
#t3-chara{
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
#t4-chara{
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
#t5-chara{
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.c-intro-v{
	position: relative;
	display: block;
	width: 480px;
	height: 270px;
	margin: 0px auto 0;
	z-index: 10;
}
.c-intro-v:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background: url('../img/p3yt-border.png') no-repeat center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 20;
	pointer-events: none;
}
.c-intro-v iframe{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/*-------------------------------p4-----------------------------------*/
section#p4{
	position: relative;
	width: 100%;
	height: 950px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
section#p4{
	background: url('../img/p4bg.png') no-repeat center;
}
section#p4:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 12px;
	background: url('../img/splitline.png') no-repeat center;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.p4-container{
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
}
.p4-container h2{
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #e01c34;
	text-align: center;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 20px;
}
.p4-container h2:after{
	content: '';
	position: absolute;
	display: block;
	width: 600px;
	height: 1px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url('../img/p4line.png') no-repeat center;
}
.p4-container h1{
	position: relative;
	font-size: 70px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 70px;
}
.p4-content{
	position: relative;
	width: 100%;
	height: auto;
	margin: 70px auto 0;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: space-between;
}
.p4-box{
	position: relative;
	width: 430px;
	height: 510px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}
.p4-box-container{
	position: relative;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(#db1f36,#771723);
	box-shadow: inset 0 0 5px rgba(249, 45, 70, 0.5);
	padding: 15px;
}
img.p4-img{
	position: relative;
	width: 100%;
	border: 1px solid #ff5a6e;
}
.p4-box-container h3{
	position: relative;
	font-size: 30px;
	font-weight: 700;
	color: #ffbe6a;
	text-align: center;
	padding: 0;
	margin: 20px 0;
	line-height: 30px;
}
.p4-container p{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 30px;
}


/*-------------------------------p5-----------------------------------*/
section#p5{
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
section#p5{
	background: url('../img/p5bg.png') no-repeat center;
}
section#p5:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 12px;
	background: url('../img/splitline.png') no-repeat center;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.p5-container{
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.p5-container > h1{
	position: relative;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: 0;
	margin: 0 0 20px 0;
	line-height: 40px;
	left: -95px;
}
.p5-container > h2{
	position: relative;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: 0;
	margin: 0 0 20px 0;
	line-height: 40px;
	left: 140px;
}
.p5-container i.p-block{
	background: url('../img/p4line.png') no-repeat center;
}
.p5-container > h3{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: #e01c34;
	text-align: center;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 30px;
}
.p5-btns{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 40px auto 15px;
}
.p5-btns a{
	margin: 0 7.5px;
}
.p5-container > p{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	padding: 0;
	margin: 0 0 0px 0;
	line-height: 30px;
}

/*-------------------------------p7-----------------------------------*/

section#p7{
	position: relative;
	width: 100%;
	height: 70px;
	z-index: 8;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/*overflow: hidden;*/
	transition: 0.4s ease-in-out;
	background-color: #e01c34;
}
.p7-fast-container{
	position: relative;
	width: 100%;
	height: 70px;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p7-fast-container a{
	position: relative;
	width: 40px;
	height: 40px;
	background-color: #e01c34;
	border-radius: 50%;
	border: 1px solid #fff;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: 0.4s ease-in-out;
	margin: 0 16px;
}
.p7-fast-container a i{
	position: relative;
	font-size: 1.25rem;
	text-align: center;
	color: #fff;
	transition: 0.4s ease-in-out;
}
.p7-fast-container a:hover{
	background-color: #7c101d;
}


/*-------------------------------footer-----------------------------------*/

footer{
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px 0;
	background-color: #060606;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}
.footer-container{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 15px;
}
.footer-logo{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-logo img{
	position: relative;
	display: block;
	max-width: 100%;
	margin: 0 15px;
}
p.copyright{
	position: relative;
	font-size: 0.75rem;
	font-weight: 400;
	text-align: center;
	color: #d8d8d8;
	margin: 25px 0 25px;
}
.term{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.term p{
	position: relative;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.1rem;
	text-align: center;
	color: #d8d8d8;
	margin: 0 0 25px 0;
}
img#eva15{
	position: relative;
	height: 80px;
	height: 80px;
	margin: 0 auto;
}