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

body{
	height: 100vh;
	display: flex;
	background-color: #ffffff;
	font-family: 'Noto Sans TC', '微軟正黑體', sans-serif !important;
	overflow-x: hidden;
}

html{
	scroll-behavior: smooth;
}

.top{
	position: fixed;
	top:0%;
    width: 100vw;
	z-index: 4;
}

.header{
    background-color:#363636;
    width: 100vw;
    height: 1.5rem;
}

.header a{
    padding-right: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap; 
	font-size: 10pt;
	font-weight:400;
}

.header a:hover{
    opacity: 50%;
}

.header_right{
    position: absolute;
    right:7rem;
    padding-top: 0.1rem;
}

.header_left{
    position: absolute;
    left: 7rem;
    padding-top: 0.1rem;
}


.nav{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
    background-color: #ffffff;
	width: 100vw;
    height: 50px;
	font-size: 10pt;
    font-weight:500;
    overflow:inherit;
    white-space:nowrap;
	/*filter: drop-shadow(0px 0.5px 0px rgba(189, 189, 189, 0.586))*/
}

.nav_left{
	position: absolute;
    left: 6.5rem;
}

.nav .logo {
	height: 40px;
	margin-left: -1.2rem;
}

.nav .logo img{
	height: 100%;
}

.nav_right{
	position: absolute;
    right:7.5rem;
	text-align: center;
}
	.nav label{
		height: 30px;
		margin: auto 0rem;
		display: none;
	}

	.nav label img{
		height: 100%;
	}

	.nav input{
		display: none;
	}

	.nav li{
		display:inline;
	}

	.nav a{
		padding: 0rem 0rem 0rem 1.5rem;
		color: #3f3f3f;
		text-decoration: none;
		white-space: nowrap; 
	}

	.nav a:hover{
		opacity: 50%;
	}

.download{
	position: fixed;
	height: 100vh;
	top: 82%;
	right: 3%;
}

.download img{
	width: 4.5rem;
}

.download img:hover{
	opacity: 40%;
}
	
.go_top {
	position: fixed;
	height: 100vh;
	width: 3rem;
	top: 86%;
	right: 10%;
	z-index: 3;
}

.go_top img{
	width: 100%;
	opacity: 30%;
}

.go_top img:hover{
	opacity: 1;
}
   

/* Sec01 KV*/
.CSSgal {
	position: relative;
	width: 100%;
	background-color: #1da7fc;
    margin: 0rem;
	padding: 0rem;
	overflow: hidden;
}


/* slider's container */
.CSSgal .slider {
    margin: 0px;
    padding: 0px;
	width: 100%;
	white-space: nowrap;
	font-size: 0;
    transition: 0.8s;
}

.CSSgal .slider > * {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	background-size: 100%;
}

/* PrexNext & Dots */
.CSSgal .prevNext {
	position: absolute;
	width: 99%;
	height: 0;
	top: 50%;
	z-index: 3;
}

.CSSgal .prevNext > div+div {
	visibility: hidden; /* hide 2.3.4 PrevNext container  */
}

.CSSgal .prevNext a {
	background: rgba(255, 255, 255, 0);
	position: absolute;
	width: 4rem;
	height: 4rem;
	line-height: 4rem; 
	color: #ffffff;
	font-weight:900;
	font-size: 30pt;
	text-align: center;
	opacity: 0.6;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
}

.CSSgal .prevNext a:hover {
	opacity: 1;
	background: hsla(0, 0%, 100%, 0.571);
}

.CSSgal .prevNext a+a {
	left: auto;
	right: 0;
}

/* Dot */
.CSSgal a {
    margin: 0px;
    padding: 0px;
	border-radius: 50%;
	margin: 0 3px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.CSSgal .bullets {
	position: absolute;
	bottom: 5%;
	padding: 1rem 0rem;
	width: 100%;
	text-align: center;
	z-index: 3;
}

.CSSgal .bullets > a {
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	line-height:0.6rem;
	text-decoration: none;
	text-align: center;
	background: rgb(255, 255, 255);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.CSSgal .bullets > a+a {
	background: rgba(255, 255, 255, 0.5);
}
.CSSgal .bullets > a:hover {
	background: rgba(255, 255, 255, 0.7) !important;
}

/* Clicked Dots */
/* All */
.CSSgal >s:target ~ .bullets >* {      background: rgba(255, 255, 255, 0.5);}
/* Clicked */
#s1:target ~ .bullets >*:nth-child(1) {background: rgba(255, 255, 255,   1);}
#s2:target ~ .bullets >*:nth-child(2) {background: rgba(255, 255, 255,   1);}
#s3:target ~ .bullets >*:nth-child(3) {background: rgba(255, 255, 255,   1);}
#s4:target ~ .bullets >*:nth-child(4) {background: rgba(255, 255, 255,   1);}
/* If add more pic, Add the rule below */

/* Click the PrevNext */
/* All */
.CSSgal >s:target ~ .prevNext >* {      visibility: hidden;}
/* Clicked */
#s1:target ~ .prevNext >*:nth-child(1) {visibility: visible;}
#s2:target ~ .prevNext >*:nth-child(2) {visibility: visible;}
#s3:target ~ .prevNext >*:nth-child(3) {visibility: visible;}
#s4:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
/* If add more pic, Add the rule below */

/* Animation Direction */
#s1:target ~ .slider {transform: translateX(   0%); -webkit-transform: translateX(   0%);}
#s2:target ~ .slider {transform: translateX(-100%); -webkit-transform: translateX(-100%);}
#s3:target ~ .slider {transform: translateX(-200%); -webkit-transform: translateX(-200%);}
#s4:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
/* If add more pic, Add the rule below */


/*Slide02 Btn*/
.sec01 .w-1 input{
	display: none;
}

.sec01 .w-2{
	position: relative;
	margin-top: -19.5%;
	margin-left: 63.5%;
}

.sec01 .w-2 input{
	margin: 1rem 0rem;
	padding-bottom: 0.2rem;
	font-size: 16pt;
	font-weight: 900;
	letter-spacing: 0.1rem;
	color: #2659f4;
	background-color: #ffdc3f;
	border: none;
	border-radius: 10rem;
	width: 8.5rem;
	height: 2.5rem;
}

.sec01 .w-2 input:hover{
	color: rgb(144, 177, 255);
	background-color: #ffdc3f;
	width: 8.8rem;
	height: 2.7rem;
}

/*Slide03 Btn*/
.sec01 .w-3{
	position: relative;
	margin-top: -21%;
	margin-left: 62%;
}

.sec01 .w-3 input{
	margin: 1rem 0rem;
	padding-bottom: 0.2rem;
	font-size: 16pt;
	font-weight: 900;
	letter-spacing: 0.1rem;
	color: #421da5;
	background-image: url(img/kv/btn_03_bg.png);
	border: none;
	border-radius: 10rem;
	width: 8.5rem;
	height: 2.5rem;
}

.sec01 .w-3 input:hover{
	color: #6e4ec5;
	background-color: linear-gradient(180deg,#dfd7ff, #d6f3ff);
	width: 8.8rem;
	height: 2.7rem;
}

/*Slide04 Btn*/
.sec01 .w-4{
	position: relative;
	margin-top: -21%;
	margin-left: 62%;
}

.sec01 .w-4 input{
	margin: 1rem 0rem;
	padding-bottom: 0.2rem;
	font-size: 16pt;
	font-weight: 900;
	letter-spacing: 0.1rem;
	color: #ffffff;
	background-color: #0f1849;
	border: none;
	border-radius: 10rem;
	width: 8.5rem;
	height: 2.5rem;
}

.sec01 .w-4 input:hover{
	color: #ffffff;
	background-color: #344084;
	width: 8.8rem;
	height: 2.7rem;
}

/*Sec02 white top BG*/
.sec02bg_top img {
	position: absolute;
	width: 100vw;
	height:auto;
	margin-top: -12%;
	z-index: 2;
}


/* Sec02 */
.sec02{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;    
	align-items: center; 
	width: 100vw;
	margin: 50px 0px;
	background-color: #ffffff;
	overflow: hidden;
}

.sec02_info{
	width: 400px;
	margin-left: -25rem;
}

.sec02_info .title_2{
	width: 18rem;
	margin: 0.4rem 0rem;
	padding: 0rem;
}

.sec02_info p{
	margin: 0.4rem 0rem;
	padding: 0rem;
	color: #575757;
	font-size: 15pt;
	font-weight: 400;
	line-height: 25px;
	letter-spacing:0.05rem;
}

.sec02_mytabs{ /*6 Btn Container*/
	display: flex;
	flex-wrap: wrap;
	max-width: 350px;
	margin-top: 0.9rem;
	margin-left: -28rem;
	padding: 0px;
}

.sec02_mytabs input[type="radio"]{
	display: none;
}

.sec02_mytabs label{ /*6 Btn*/
	margin-right: 0.3rem;
	margin-bottom: 0.5rem;
	padding: 8px 20px;
	background-color: #fff;
	color: #95c2f7;
	border: 2px solid #95c2f7;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
}

.sec02_mytabs label:hover{ /*6 Btn Hover*/
	background-color: #5faaff;
	color: #fff;
	border: 2px solid #5faaff;
}

.sec02_mytabs .tab{ /*Pic conect wuth Btn*/
	margin-left: 26rem;
	margin-top: -10rem;
	width: 100%;
	order: 1;
	display: none;
}

.sec02_mytabs .floating01{
	-webkit-animation: baloon_1 2s infinite;
    -moz-animation: baloon_1 2s infinite;
    -ms-animation: baloon_1 2s infinite;
    -o-animation: baloon_1 2s infinite;
    animation: baloon_1 2s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes baloon_1{
	0% { transform:translateY(0px);}
	50% {transform:translateY(5px);}
	100% {transform:translateY(0px);}
	}
	
	@-moz-keyframes baloon_1{
	0% { transform:translateY(0px);}
	50% {transform:translateY(5px);}
	100% {transform:translateY(0px);}
	}
	
	@-ms-keyframes baloon_1{
	0% { transform:translateY(0px);}
	50% {transform:translateY(5px);}
	100% {transform:translateY(0px);}
	}
	
	@-o-keyframes baloon_1{
	0% { transform:translateY(0px);}
	50% {transform:translateY(5px);}
	100% {transform:translateY(0px);}
	}
	
	@keyframes baloon_1{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}

.sec02_mytabs input[type='radio']:checked + label + .tab{
	display: block;
}

.sec02_mytabs input[type="radio"]:checked + label{
	background-color: #5faaff;
	color: #fff;
	border: 2px solid #5faaff;
}

.sec02_mytabs .chat1{
	width:250px;
	margin-left: -15px;
}

.sec02_mytabs .deco1{
	width:450px;
}


/* Sec03 */
.sec03{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;    
	align-items: center; 
	width: 100vw;
	margin: 50px 0px;
	overflow: hidden;
}

.sec03_info{
	width: 450px;
	margin-left: 100px;
}
 
.sec03_info .title_3{
	width: 18rem;
	margin: 0.4rem 0rem;
	padding-bottom: 0rem;
}
 
.sec03_info p{
	margin: 0.4rem 0rem;
	padding: 0rem;
	color: #575757;
	font-size: 15pt;
	font-weight: 400;
	line-height: 25px;
	letter-spacing:0.05rem;
}

.sec03_pimoney{
	width: 320px;
	margin-left: 0;
}

.sec03_pimoney_m img{
	width: 100%;
}

.sec03_pimoney_m{
	display: none;
}

.sec03_pimoney .floating02{
	-webkit-animation: baloon_2 3s infinite;
    -moz-animation: baloon_2 3s infinite;
    -ms-animation: baloon_2 3s infinite;
    -o-animation: baloon_2 3s infinite;
    animation: baloon_2 3s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

.sec03_pimoney_m .floating02{
	-webkit-animation: baloon_2 3s infinite;
    -moz-animation: baloon_2 3s infinite;
    -ms-animation: baloon_2 3s infinite;
    -o-animation: baloon_2 3s infinite;
    animation: baloon_2 3s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes baloon_2{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@-moz-keyframes baloon_2{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@-ms-keyframes baloon_2{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@-o-keyframes baloon_2{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@keyframes baloon_2{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}


.sec03_pimoney img{
	position: relative;
	width: 100%;
}

.sec03_btn button{
	margin-top: 0.5rem;
	margin-right: 0.3rem;
	padding: 7px 15px 8px 20px;
	background-color: #ffffff;
	color: #1e94f7;
	border: 2px solid #1e94f7;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
}

.sec03_btn button:hover{
	padding: 7px 20px 8px 25px;
	background-color: rgb(216, 237, 255);
	border: 2px solid #1e94f7;
	transition: 0.2s ease-in-out;
}


.sec03_cta button{
	margin-top: 3rem;
	padding: 9px 40px 10px 40px;
	background-color: #363636;
	color: #ffffff;
	border: none;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
	letter-spacing: 0.05rem;
}

.sec03_cta button:hover{
	background-color: #ffdc3f;
	color: #575757;
}

/* Sec04 */
.sec04{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row; 
	justify-content: center;    
	align-items: center;  
	max-width: 100vw;
	margin-top: 4rem;
	overflow: hidden;
}

.sec04_info{
	width: 370px;
	margin-left: -1rem;
	margin-bottom: 3rem;
}
 
.sec04_info .title_4{
	width: 18rem;
	margin: 0.4rem 0rem;
	padding-bottom: 0rem;
}
 
.sec04_info p{
	margin: 0.4rem 0rem;
	padding: 0rem;
	color: #575757;
	font-size: 15pt;
	font-weight: 400;
	line-height: 25px;
	letter-spacing:0.05rem;
}

.sec04_btn button{
	margin-top: 0.5rem;
	margin-right: 0.3rem;
	padding: 7px 18px 8px 20px;
	background-color: #ffffff;
	color: #1e94f7;
	border: 2px solid #1e94f7;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
}

.sec04_btn button:hover{
	padding: 7px 25px 8px 25px;
	background-color: rgb(216, 237, 255);
	border: 2px solid #1e94f7;
	transition: 0.2s ease-in-out;
}

.sec04_cta button{
	margin-top: 3rem;
	padding: 9px 40px 10px 40px;
	background-color: #363636;
	color: #ffffff;
	border: none;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
	letter-spacing: 0.05rem;
}

.sec04_cta button:hover{
	background-color: #ffdc3f;
	color: #575757;
}

.sec04_pislow{
	max-width: 660px;
	margin-right: -150px;
}

.sec04_pislow .floating03{
	-webkit-animation: baloon_3 4s infinite;
    -moz-animation: baloon_3 4s infinite;
    -ms-animation: baloon_3 4s infinite;
    -o-animation: baloon_3 4s infinite;
    animation: baloon_3 4s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes baloon_3{
	0% { transform:translateY(0px);}
	50% {transform:translateY(-10px);}
	100% {transform:translateY(0px);}
	}
	
	@-moz-keyframes baloon_3{
	0% { transform:translateY(0px);}
	50% {transform:translateY(-10px);}
	100% {transform:translateY(0px);}
	}
	
	@-ms-keyframes baloon_3{
	0% { transform:translateY(0px);}
	50% {transform:translateY(-10px);}
	100% {transform:translateY(0px);}
	}
	
	@-o-keyframes baloon_3{
	0% { transform:translateY(0px);}
	50% {transform:translateY(-5px);}
	100% {transform:translateY(0px);}
	}
	
	@keyframes baloon_3{
	0% { transform:translateY(0px);}
	50% {transform:translateY(-5px);}
	100% {transform:translateY(0px);}
	}

.sec04_pislow img{
	width: 100%;
}

/* Sec05 */
.sec05{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;    
	align-items: center; 
	width: 100vw;
	margin-top: 2rem;
	margin-bottom: 3rem;
	background-image: url(img/sec05/sec05_bg.png);
	background-size: 100vw;
	background-repeat: no-repeat;
}

.sec05_container{
	background-color: #1e94f7;
	background-image: url(img/sec05/sec05_qa_bg.png);
	background-size: 100%;
	border-radius: 80px;
	width: 850px;
	height: 300px;
}

.sec05 .sec05_title{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;    
	align-items: center; 
}

.sec05 .title_5{
	position: relative;
	width: 18rem;
	margin:0.7rem 0rem ;
}
 
.sec5_QAgroup{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;    
	align-items: center; 
}

/*FAQ 01*/
.QA1{
	padding: 1.1rem 1.5rem;
	justify-content: center;    
	align-items: center; 
}

.QA1 button{
	margin: auto;
	border: none;
	width: 180px;
	height: 126px;
	border-radius: 200px;
	background-color: #ffffff;
	background-image: url(img/sec05/sec05_q1.png);
	background-position: center;
	transition: all 0.3s ease-in;
}

.QA1 button:hover{
	width: 265.5px;
	height: 153px;
	background-image: url(img/sec05/sec05_a1.png);
	background-position: center;
}

/*FAQ 02*/
.QA2{
	padding: 1.1rem 1.5rem;
	justify-content: center;    
	align-items: center; 
}

.QA2 button{
	margin: auto;
	border: none;
	width: 180px;
	height: 126px;
	border-radius: 200px;
	background-color: #ffffff;
	background-image: url(img/sec05/sec05_q2.png);
	background-position: center;
	transition: all 0.3s ease-in;
}

.QA2 button:hover{
	width: 265.5px;
	height: 153px;
	background-image: url(img/sec05/sec05_a2.png);
	background-position: center;
}

/*FAQ 03*/
.QA3{
	padding: 1.1rem 1.5rem;
	justify-content: center;    
	align-items: center; 
}

.QA3 button{
	margin: auto;
	border: none;
	width: 180px;
	height: 126px;
	border-radius: 200px;
	background-color: #ffffff;
	background-image: url(img/sec05/sec05_q3.png);
	background-position: center;
	transition: all 0.3s ease-in;
}

.QA3 button:hover{
	width: 265.5px;
	height: 153px;
	background-image: url(img/sec05/sec05_a3.png);
	background-position: center;
}


/*Sec06*/
.sec06{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;    
	align-items: center; 
	width: 100vw;
	margin-top: 0rem;
	overflow: hidden;
}

.sec06_info{
	width: 600px;
	margin-left: -17rem;
}

.sec06_info .title_6{
	width: 18rem;
	margin: 0.4rem 0rem;
	padding-bottom: 0rem;
}

.sec06_mybrand{ /*3 Btn Container*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 600px;
}

.sec06_mybrand input[type="radio"]{
	display: none;
}

.sec06_mybrand label{ /*3 Btn*/
	margin-right: 0.3rem;
	margin-bottom: 0.5rem;
	padding: 8px 15px;
	background-color: #fff;
	color: #95c2f7;
	border: 2px solid #95c2f7;
	border-radius: 2rem;
	font-size: 14pt;
	font-weight: 500;
}

.sec06_mybrand label:hover{ 
	background-color: #5faaff;
	color: #fff;
	border: 2px solid #5faaff;
}

.sec06_mybrand button{
	margin-right: 0.3rem;
	margin-bottom: 0.5rem;
	padding: 0.2rem;
	background-color: #fff;
	color: #95c2f7;
	border: 2px solid #95c2f7;
	border-radius: 2rem;
	font-size: 20pt;
	font-weight: 700;
}

.sec06_mybrand button:hover{
	background-color: #5faaff;
	color: #fff;
	border: 2px solid #5faaff;
}

.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 390px;
	height: 0px;
	order: 1;
	display: none;
	transition: all 0.7s;
	transform-style: preserve-3d;
}

.sec06_mybrand .tab img{
	width: 100%;
	background-color: #ffffff;
	border-radius: 2rem;
	margin: 1rem 0rem 2rem 0rem;
	padding: 0rem;
}

.sec06_mybrand input[type='radio'] + label + .tab{
	display: block;
	opacity: 0%;
	transform: rotateY(180deg);
}

.sec06_mybrand input[type='radio']:checked + label + .tab{
	display: block;
	opacity: 100%;
	transform: rotateY(0deg);
}

.sec06_mybrand input[type="radio"]:checked + label{
	background-color: #5faaff;
	color: #fff;
	border: 2px solid #5faaff;
}

.sec06_bbmap{
	margin: -5rem -35rem 0rem 0rem;
	width: 500px;
	background-image: url(img/sec06/sec06_deco_bg.png);
	background-size: 500px;
	background-repeat: no-repeat;
}

.sec06_bbmap .floating04{
	-webkit-animation: baloon_4 3s infinite;
    -moz-animation: baloon_4 3s infinite;
    -ms-animation: baloon_4 3s infinite;
    -o-animation: baloon_4 3s infinite;
    animation: baloon_4 3s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes baloon_4{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@-moz-keyframes baloon_4{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@-ms-keyframes baloon_4{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@-o-keyframes baloon_4{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}
	
	@keyframes baloon_4{
	0% { transform:translateY(0px);}
	50% {transform:translateY(10px);}
	100% {transform:translateY(0px);}
	}


.sec06_bbmap img{
	position: relative;
	width: 100%;
}

/*Sec07*/
.sec07{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;    
	align-items: center; 
	width: 100vw;
	margin-top: 8rem;
}

.sec07_info{
	width: 450px;
	margin-left: 7rem;
	margin-top: -7rem;
}
 
.sec07_info .title_7{
	width: 18rem;
	margin: 0.4rem 0rem;
	padding-bottom: 0rem;
}
 
.sec07_info p{
	margin: 0.4rem 0rem;
	padding: 0rem;
	color: #575757;
	font-size: 15pt;
	font-weight: 400;
	line-height: 25px;
	letter-spacing:0.05rem;
}

.sec07_pi2{
	max-width: 350px;
	margin-left: -3rem;
	background-image: url(img/sec07/sec07_deco_bg.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 1rem 0rem;
}

.sec07_pi2_m{
	display: none;
}

.sec07_pi2 img{
	position: relative;
	width: 100%;
}

.sec07_cta button{
	margin-top: 2.8rem;
	padding: 9px 40px 10px 40px;
	background-color: #363636;
	color: #ffffff;
	border: none;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
	letter-spacing: 0.05rem;
}

.sec07_cta button:hover{
	background-color: #ffdc3f;
	color: #575757;
}

.sec08bg_top {
	position:relative;
	width:100vw;
	margin-top: -2rem;
	z-index: 2;
}

/*Sec08*/
.sec08{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;    
	align-items: center; 
	width: 100vw;
	margin-top: -0.2rem;
	background-color: #1da3f8;
}

.sec08bg_top img { /*Sec08 blue top BG*/
	position:relative;
	width:100vw;
	height:auto;
	margin-top: -1rem;
	z-index: 1;
}

.sec08_info{
	width: 100vw;
	margin-top: 0rem;
	z-index: 2;
}
 
.sec08_info .title_8{
	width: 7rem;
	margin: 0.4rem auto;
	padding-bottom: 0rem;
}
 
.sec08_info p{
	margin: 0.4rem 3rem 3rem 3rem;
	padding: 0rem;
	color: #ffffff;
	font-size: 15pt;
	font-weight: 400;
	line-height: 25px;
	letter-spacing:0.05rem;
	text-align: center;
}

/*Brand*/
.sec08 .ticket_group{
	width: 100vw;
	margin-bottom: 1rem;
}

@keyframes scroll {
	from {
		transform: translateX(100%);
   }
	to {
		transform: translateX(-100%);
   }
}
@keyframes scroll2 {
	from {
		transform: translateX(0%);
   }
	to {
		transform: translateX(-200%);
   }
}
.logo-wall {
	display: flex;
	width: auto;
	overflow: hidden;
}
.logo-wall .logo-wrapper {
	display: flex;
	animation: scroll 40s linear infinite;
}
.logo-wall .logo-wrapper:nth-child(2) {
	animation: scroll2 40s linear infinite;
	animation-delay: -20s;
}
.logo-wall .logo-wrapper.first > .logo:first-child {
	background: none;
}
.logo-wall .logo-wrapper.second > .logo:first-child {
	background: none;
}
.logo-wall .logo-wrapper .logo {
	width: 150px;
	height: 150px;
	margin: 0 10px;
	border-radius: 50%;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*Brand END*/

.sec08_cta button{
	margin-bottom: 5rem;
	padding: 9px 40px 10px 40px;
	background-color: #1da3f8;
	color: #ffffff;
	border: 2px solid #ffffff;
	border-radius: 2rem;
	font-size: 15pt;
	font-weight: 500;
	letter-spacing: 0.05rem;
}

.sec08_cta button:hover{
	background-color: #ffdc3f;
	border: 2px solid #ffdc3f;
	color: #575757;
}

/*bottom*/
.bottom{
    width: 100vw;
}

.bottom .more{
    background-color: #1da3f8;
	text-align: center;
}

.bottom .more_group{
    width: auto;
    height: 2.2rem;
    font-size: 11pt;
    font-weight:300;
    padding: 1rem 2.2rem 2rem 0rem;
    overflow:inherit;
    white-space:nowrap;
}

.bottom .more a{
    padding: 0rem 0rem 0rem 1rem;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap; 
}

.bottom .more a:hover{
	opacity: 40%;
}

.bottom .copyright{
	background-color: #1d72fc;
    width: auto;
    height: 2rem;
    font-size: 9pt;
    font-weight:300;
	padding: 0.5rem 1.2rem 0rem 0rem;
	text-align: center;
    overflow:inherit;
    white-space:nowrap;
}

.bottom .copyright p{
	color: #ffffff;
	opacity: 80%;
    text-decoration: none;
    white-space: nowrap; 
}


/**/
/**/
/*1170 PC*/
@media(max-width:1170px){

	.download{
		top: 83%;
		right: 1%;
	}

	.go_top {
		width: 3rem;
		top: 85.5%;
		right: 8.5%;
	}	   
}


/**/
/**/
/*1024 PC*/
@media(max-width:1024px){

	.download{
		top: 80%;
		right: 2%;
	}

	.go_top {
		width: 3rem;
		top: 82.5%;
		right: 10%;
	}	   
}


/**/
/**/
/*950-768 T*/
@media(max-width: 950px){

	.header_right{
		right:0.5rem;
	}
	
	.header_left{
		left: 1rem;
	}

	.nav{
		height: 42px;
	}

	.nav_left{
		position: absolute;
		left: 0.5rem;
	}
	
		.nav .logo {
			height: 35px;
			margin-left: -1.2rem;
		}
	
	.nav .logo img{
		height: 100%;
	}

	.nav_right{
		position: absolute;
		right:1rem;
	}

    .download{
		top: 90%;
		right: 2%;
	}
	
	.download img{
		width: 4rem;
	}

	.go_top {
		width: 2.5rem;
		top: 92%;
		right: 10%;
	}

	/* Sec01 KV*/
	.CSSgal .prevNext a {
		width: 2rem;
		height: 2rem;
		line-height: 2rem; 
	}

	.sec01 .w-2 input{
		font-size: 12pt;
		border-radius: 5rem;
		width: 6rem;
		height: 2rem;
	}

	.sec01 .w-2 input:hover{
		width: 6.3rem;
		height: 2.2rem;
	}

	.sec01 .w-3 input{
		font-size: 12pt;
		border-radius: 5rem;
		width: 6rem;
		height: 2rem;
	}
	
	.sec01 .w-3 input:hover{
		width: 6rem;
		height: 2.2rem;
	}

	.sec01 .w-4 input{
		font-size: 12pt;
		border-radius: 5rem;
		width: 6rem;
		height: 2rem;
	}
	
	.sec01 .w-4 input:hover{
		width: 6rem;
		height: 2.2rem;
	}

	/*Sec02*/
	.sec02_info{
		width: 350px;
		margin-left: -19rem;
	}

	.sec02_info .title_2{
		width: 16rem;
		margin: 0.4rem 0rem;
		padding: 0rem;
	}

	.sec02_info p{
		font-size: 14pt;
	}

	.sec02_mytabs{/*6 Btn Container*/
		max-width: 300px;
		margin-left: -23rem;
	}
	
	.sec02_mytabs label{/*6 Btn*/
		font-size: 14pt;
	}

	.sec02_mytabs .tab{ /*Pic conect wuth Btn*/
		margin-left: 22rem;
		margin-top: -11.5rem;
	}

	.sec02_mytabs .chat1{
		width:220px;
	}
	
	.sec02_mytabs .deco1{
		width:350px;
	}

	/*Sec03*/
	.sec03_info{
		width: 380px;
		margin-left: 60px;
	}

	.sec03_info .title_3{
		width: 16rem;
		margin: 0.4rem 0rem;
		padding: 0rem;
	}
		
	.sec03_info p{
		font-size: 14pt;
	}

	.sec03_pimoney{
		width: 250px;
		margin-left: -20px;
	}

	.sec03_btn button{
		font-size: 14pt;
	}

	.sec03_btn .btn_addspace{
		padding: 7px 34px 8px 41px;	
	}

	.sec03_btn .btn_addspace:hover{
		padding: 7px 36px 8px 43px;	
	}

	.sec03_cta button{
		font-size: 14pt;
	}

	/*Sec04*/
	.sec04_info{
		width: 300px;
		margin-left: 0rem;
	}

	.sec04_info .title_4{
		width: 16rem;
		margin: 0.4rem 0rem;
		padding: 0rem;
	}

	.sec04_info p{
		font-size: 14pt;
	}

	.sec04_btn button{
		font-size: 14pt;
	}

	.sec04_cta button{
		font-size: 14pt;
	}

	.sec04_pislow{
		max-width: 480px;
		margin-right: -4rem;
		z-index: -2;
	}

	/*Sec05*/
	.sec05_container{
		margin: 0rem 2rem;
		width: 100vw;
		height: 13.5rem;
	}

	.sec05 .title_5{
		width: 16rem;
		margin: 0.5rem 0rem;
		padding: 0rem;
	}

	.QA1{
	padding: 0.2rem 0.4rem;
    }

	.QA2{
		padding: 0.2rem 0.4rem;
	}

	.QA3{
		padding: 0.2rem 0.4rem;
	}

	/*Sec06*/
	.sec06_info{
		width: 400px;
		margin-left: -17rem;
	}

	.sec06 .title_6{
		width: 16rem;
	}

	.sec06_mybrand{ /*3 Btn*/
		width: 390px;
		margin-left: -0.15rem;
	}

	.sec06_mybrand .tab{ /*3 Btn Container*/
		width: 350px;
	}

	.sec06_bbmap{
		margin:-2rem -30rem 0rem 0rem;
		width: 400px;
		background-image: url(img/sec06/sec06_deco_bg.png);
		background-size: 400px;
		background-repeat: no-repeat;
	}

	/*Sec07*/
	.sec07{
		margin-top: 6rem;
	}

	.sec07_info{
		width: 320px;
		margin-left: 3.5rem;
		margin-top: -7rem;
	}

	.sec07_info .title_7{
		width: 16rem;
		margin: 0.4rem 0rem;
		padding-bottom: 0rem;
	}

	.sec07_info p{
		font-size: 14pt;
	}

	.sec07_pi2{
		max-width: 295px;
		margin-left: -3rem;
	}

	.sec04_cta button{
		font-size: 14pt;
	}

	.sec08bg_top {/*Sec08 blue top BG*/
		margin-top: -1rem;
	}

	/*Sec08*/
	.sec08_info .title_8{
		width: 5.8rem;
		margin: 0.4rem auto;
		padding-bottom: 0rem;
	}

	.sec08_info p{
		font-size: 14pt;
		margin: 0.4rem 3rem 1.5rem 3rem;
	}

	.sec08_cta button{
		font-size: 14pt;
	}

}/*950-768 T END*/


/**/
/**/
/*767-611 M*/
@media(max-width: 767px){

	.header{
		background-color:#363636;
		width: 100vw;
		height: 3rem;
	}

	.header a{
		padding-right: 0.8rem;
		color: #ffffff;
		text-decoration: none;
		white-space: nowrap; 
		font-size: 18pt;
		font-weight:400;
	}

	.header_right{
		right:1.1rem;
		top:0.5rem;
	}
	
	.header_left{
		left: 1.5rem;
		top:0.5rem;
	}
	
	.nav{
		width: 100vw;
		height: 100px;
		font-size: 30pt;
	}
	
	.nav_left{
		position: absolute;
		left: 1rem;
	}
	
		.nav .logo {
			height: 85px;
			margin-left: -2rem;
		}
	
		.nav .logo img{
			height: 100%;
		}
	
	.nav_right{
		right:2rem;
	}
		.nav label{
			height: 45px;
			margin: auto 0rem;
			display: block;
		}
	
		.nav label img{
			height: 100%;
		}
		.nav input{
			display: none;
		}

		.nav ul{
			display: none;
		}
	
		.nav li{
			display:flex;
			padding: 2rem 2.2rem 2rem 1rem;
		}

		#burger:checked + ul{
			display: block;
			margin-bottom: -24.9rem;
			margin-left:-10.5rem;
			background-color: #ffffffe7;
		}
	
		.nav a{
			padding: 0rem 0rem 0rem 1.5rem;
			color: #3f3f3f;
			text-decoration: none;
			white-space: nowrap; 
		}
	
		.nav a:hover{
			opacity: 50%;
		}

	
	.download{
		position: fixed;
		height: 100vh;
		top: 82%;
		right: 0.5%;
	}

	.download img{
		width: 10rem;
	}

	.download img:hover{
		opacity: 40%;
	}
		
	.go_top {
		position: fixed;
		height: 100vh;
		width: 6rem;
		top: 74%;
		right: 2%;
		z-index: 3;
	}

	.go_top img{
		width: 100%;
		opacity: 30%;
	}

	.go_top img:hover{
		opacity: 1;
	}

	/*Sec01 KV*/
	.CSSgal {
		position: relative;
		width: 100%;
		background-color: #1da7fc;
		margin: 0rem;
		padding: 0rem;
		overflow: hidden;
	}
	
	.CSSgal .slider {
		margin: 0px;
		padding: 0px;
		width: 100vw;
		white-space: nowrap;
		font-size: 0;
		transition: 0.8s;
	}
	
	.CSSgal .slider > * {
		display: inline-block;
		vertical-align: top;
		width: 100vw;
		background-size: 100%;
	}

	.CSSgal .prevNext{
		width:100%;
	}

	.CSSgal .prevNext a {
		width: 5rem;
		height: 5rem;
		line-height: 5rem; 
		font-size: 50pt;
	}

	.CSSgal a {
		margin: 0 10px;
	}

	.CSSgal .bullets > a {
		width: 1.2rem;
		height: 1.2rem;
		line-height: 1.2rem;
	}
	
	.sec01 .w-2{
		position: relative;
		margin-top: -110%;
		margin-left: 30%;
	}
	
	.sec01 .w-2 input{
		font-size: 30pt;
		border-radius: 5rem;
		width: 15rem;
		height: 5.5rem;
	}
	
	.sec01 .w-2 input:hover{
		width: 15rem;
		height: 5.5rem;
	}

	.sec01 .w-3{
		position: relative;
		margin-top: -112%;
		margin-left: 30%;
	}

	.sec01 .w-3 input{
		font-size: 30pt;
		border-radius: 5rem;
		width: 15rem;
		height: 5.5rem;
		background-size: 120%;
	}

	.sec01 .w-3 input:hover{
		width: 15rem;
		height: 5.5rem;
	}

	.sec01 .w-4{
		position: relative;
		margin-top: -112%;
		margin-left: 30%;
	}

	.sec01 .w-4 input{
		font-size: 30pt;
		border-radius: 5rem;
		width: 15rem;
		height: 5.5rem;
	}

	.sec01 .w-4 input:hover{
		width: 15rem;
		height: 5.5rem;
	}

	/*Sec02*/
	.sec02{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;    
		align-items: center; 
		margin: 4rem 0rem;
	}
	
	.sec02_info{
		width: 600px;
		margin-left: 0rem;
	}

	.sec02_info .title_2{
		width: 33rem;
		margin: 2rem 0rem 1rem 0.5rem;
		padding: 0rem;
	}
	 
	.sec02_info p{
		font-size: 28pt;
		line-height: 55px;
		text-align: center;
	}
	
	.sec02_mytabs{/*6 Btn Container*/
		max-width: 600px;
		margin-left: 2rem;
		margin-top: 2rem;
	}
	
	.sec02_mytabs label{/*6 Btn*/
		margin-right: 1rem;
		margin-bottom: 1rem;
		font-size: 32pt;
		padding: 15px 30px;
		border: 4px solid;
		border-radius: 5rem;
	}

	.sec02_mytabs label:hover{ /*6 Btn Hover*/
		border: 4px solid;
	}
	
	.sec02_mytabs .tab{/*Pic conect wuth Btn*/
		margin-left: 0rem;
		margin-top: 5rem;
	}

	.sec02_mytabs .chat1{
		width:450px;
	}
	
	.sec02_mytabs .deco1{
		width:700px;
	}

	/*Sec03*/
	.sec03{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;    
		align-items: center; 
		overflow: hidden;
		text-align: center;
		margin: 0rem 0rem 4rem 0rem;
	}

	.sec03_info{
		width: 600px;
		margin-left: 0px;
	}

	.sec03_info .title_3{
		width: 33rem;
		margin: 2rem 0rem 1rem 0.6rem;
		padding: 0rem;
	}

	.sec03_info p{
		font-size: 28pt;
		line-height: 55px;
		text-align: center;
	}

	.sec03_pimoney{
		display: none;
	}

	.sec03_pimoney_m{
		display: block;
		width: 600px;
		margin-left: 30px;
		margin-top: 6rem;
	}

	.sec03_pimoney_m img{
		width: 100%;
	}

	.sec03_btn{
		width: 600px;
		margin-left: 0rem;
		margin-top: 1.5rem;
	}

	.sec03_btn button{
		font-size: 32pt;
		margin-right: 1rem;
		margin-bottom: 1rem;
		padding: 15px 30px 16px 35px;
		border: 4px solid;	
		border-radius: 5rem;
	}

	.sec03_btn button:hover{
		padding: 15px 30px 16px 35px;
		border: 4px solid;
		transition: 0.2s ease-in-out;
	}

	.sec03_btn .btn_addspace{
		padding: 15px 70px 16px 77px;	
	}

	.sec03_btn .btn_addspace:hover{
		padding: 15px 70px 16px 77px;	
	}

	.sec03_cta button{
		margin-top: 2.2rem;
		padding: 15px 85px 16px 85px;
		border-radius: 5rem;
		font-size: 32pt;
		letter-spacing: 0.1rem;
	}

	/*Sec04*/
	.sec04{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;    
		align-items: center; 
		margin-top: 4rem;
		overflow: hidden;
		text-align: center;
	}

	.sec04_info{
		width: 600px;
		margin-left:0px;
		margin-top: 0px;
	}
	
	.sec04_info p{
		font-size: 28pt;
		line-height: 55px;
		text-align: center;
	}

	.sec04_info .title_4{
		width: 33rem;
		margin: 2rem 0rem 1rem 0.6rem;
		padding: 0rem;
	}

	.sec04_btn button{
		font-size: 32pt;
		margin-right: 1rem;
		margin-top: 1.5rem;
		margin-bottom: 1rem;
		padding: 15px 30px 16px 35px;	
		border-radius: 5rem;
		border: 4px solid;
	}

	.sec04_btn button:hover{
		padding: 15px 30px 16px 35px;
		border: 4px solid;
		transition: 0.2s ease-in-out;
	}
	
	.sec04_cta button{
		margin-top: 2.2rem;
		padding: 15px 85px 16px 85px;
		border-radius: 5rem;
		font-size: 32pt;
		letter-spacing: 0.1rem;
	}
	
	.sec04_pislow{
		max-width: 700px;
		margin-left: -22rem;
		margin-top: -5rem;
	}

	.sec04_pislow img{
		width: 170%;
	}

	/*Sec05*/
	.sec05{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;    
		align-items: center; 
		overflow: hidden;
		margin-top: 3rem;
		background-image: url(img/sec05/sec05_bg.png);
	}

	.sec05_container{
		margin: 0rem 2rem;
		height: 1000px;
		border-radius: 6rem;
	}

	.sec05 .title_5{
		width: 28rem;
		margin: 1.5rem 0rem 0.5rem 0rem;
		padding: 0rem;
	}

	.sec5_QAgroup{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;    
		align-items: center; 
	}

    /*FAQ01*/
	.QA1{
		padding: 20px 20px;
	}

	.QA1 button{
		width: 320px;
		height: 224px;
		background-image: url(img/sec05/sec05_q1_m.png);
		background-size: 105%;
	}

	.QA1 button:hover{
		width: 472px;
		height: 272px;
		background-image: url(img/sec05/sec05_a1_m.png);
		background-size: 100%;
	}

    /*FAQ02*/
	.QA2{
		padding: 20px 20px;
	}

	.QA2 button{
		width: 320px;
		height: 224px;
		background-image: url(img/sec05/sec05_q2_m.png);
		background-size: 105%;
	}

	.QA2 button:hover{
		width: 472px;
		height: 272px;
		background-image: url(img/sec05/sec05_a2_m.png);
		background-size: 100%;
	}

    /*FAQ03*/
	.QA3{
		padding: 20px 20px;
	}

	.QA3 button{
		width: 320px;
		height: 224px;
		background-image: url(img/sec05/sec05_q3_m.png);
		background-size: 105%;
	}

	.QA3 button:hover{
		width: 472px;
		height: 272px;
		background-image: url(img/sec05/sec05_a3_m.png);
		background-size: 100%;
	}

	/*Sec06*/
	.sec06_info{
		width: 600px;
		margin-left: 0rem;
	}
	
	.sec06 .title_6{
		width: 33rem;
		margin: 2rem 0rem 1rem 0.3rem;
		padding: 0rem;
	}

	.sec06_mybrand{ /*3 Btn Container*/
		width: 600px;
	}

	.sec06_mybrand label{ /*3 Btn*/
		margin-top: 0.5rem;
		margin-right: 0.4rem;
		padding: 10px 20px;
		border-radius: 5rem;
		font-size: 23pt;
		border: 4px solid;
	}

	.sec06_mybrand button{
		margin-top: 0.5rem;
		padding: 0.4rem;
		font-size: 22pt;
		border: 4px solid;
	}

	.sec06_mybrand button:hover{
		border: 4px solid;
	}
	
	.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
		width: 590px;
		margin-left: 0.5rem;
	}

	.sec06_bbmap{
		margin:20rem -10rem 0rem 0rem;
		width: 700px;
		background-image: url(img/sec06/sec06_deco_bg.png);
		background-size: 700px;
		background-repeat: no-repeat;
	}

	/*Sec07*/
	.sec07{
		margin-top: 10rem;
	}

	.sec07_info{
		width: 600px;
		margin-left: 0rem;
		margin-top: -7rem;
		text-align: center;
	}

	.sec07_info .title_7{
		width: 33rem;
		margin: 2rem 0rem 1rem 0.5rem;
		padding: 0rem;
	}

	.sec07_info p{
		font-size: 28pt;
		line-height: 55px;
		text-align: center;
	}

	.sec07_pi2{
		display: none;
	}
	
	.sec07_pi2_m{
		display: block;
		max-width: 600px;
		margin-left: -2rem;
		margin-top: 5rem;
	}

	.sec07_pi2_m img{
		width: 100%;
	}

	.sec08bg_top { /*Sec08 Blue Top BG*/
		margin-top: -0.7rem;
	}

	.sec07_cta button{
		margin-top: 3.2rem;
		padding: 15px 85px 16px 85px;
		border-radius: 5rem;
		font-size: 32pt;
		letter-spacing: 0.1rem;
	}

	/*Sec08*/
	.sec08{
		overflow: hidden;
	}

	.sec08_info{
		width: 600px;
		margin-top: 0rem;
		z-index: 2;
	}

	.sec08_info .title_8{
		width: 10.7rem;
		margin: 0.4rem auto;
		padding-bottom: 0rem;
	}

	.sec08_info p{
		margin: 1rem 0rem 2rem 0rem;
		font-size: 28pt;
		line-height: 55px;
		letter-spacing:0.02rem;
		text-align: center;
	}

	.logo-wall .logo-wrapper .logo {
		width: 300px;
		height: 300px;
		margin: 0 10px;
	}

	.logo-wall .logo-wrapper .logo img{
		width: 200%;
	}

	.sec08_cta button{
		margin-top: 2rem;
		margin-bottom: 12rem;
		padding: 15px 85px 16px 85px;
		border: 4px solid #ffffff;
		border-radius: 5rem;
		letter-spacing: 0.1rem;
		font-size: 32pt;
	}

	.sec08_top {
		margin-left: 0rem;
	}

	/*Bottom*/
	.bottom .more_group{
		margin-left: 0rem;
		font-size: 20pt;
		padding: 1rem 2rem 6rem 0rem;
		overflow-wrap: break-word;
		white-space: normal;
		line-height: 50px;
	}

	.bottom .more a{
		padding: 0rem 0rem 0rem 1.5rem;
	}

	.bottom .copyright{
		font-size: 16pt;
		font-weight:300;
		padding: 1rem 0rem 2rem 0rem;
	}

	.bottom .copyright p{
		color: #ffffff;
		opacity: 80%;
		text-decoration: none;
		white-space: nowrap; 
	}

}/*767-611 M END*/


/**/
/**/
/*610-480 M*/
@media(max-width: 610px){

	.header{
		height: 2.6rem;
	}

	.header a{
		padding-right: 0.5rem;
		font-size: 16pt;
	}

	.header_right{
		right: 0.5rem;
		top:0.5rem;
	}

	.header_left{
		left: 1rem;
		top: 0.5rem;
	}

	.nav{
		height: 75px;
		font-size: 22pt;
	}

	.nav_left{
		position: absolute;
		left: 1rem;
	}

		.nav .logo {
			height: 65px;
		}

		.nav .logo img{
			height: 100%;
		}
	
	.nav_right{
		right: 0rem;
	}

	.nav label{
		height: 45px;
		margin: auto 1rem auto 0rem;
		display: block;
	}

	.nav li{
		padding: 1.5rem 9.5rem 1.5rem 9.5rem;
	}

	#burger:checked + ul{
		margin-bottom: -18.5rem;
		margin-left:-23.5rem;
	}

	.download{
		top: 80%;
		right: 1%;
	}

	.download img{
		width: 7rem;
	}
		
	.go_top {
		width: 4rem;
		top: 72%;
		right: 2%;
	}

	.go_top img{
		width: 100%;
		opacity: 30%;
	}

	/*Sec01 KV*/
	.CSSgal .prevNext{
		width:100%;
	}

	.CSSgal .prevNext a {
		width: 4rem;
		height: 4rem;
		line-height: 4rem; 
		font-size: 40pt;
	}

	.CSSgal .bullets > a {
		width: 1rem;
		height: 1rem;
		line-height: 1rem;
	}

	.sec01 .w-2{
		position: relative;
		margin-top: -112%;
		margin-left: 26%;
	}
	
	.sec01 .w-2 input{
		font-size: 22pt;
		border-radius: 5rem;
		width: 12rem;
		height: 3.5rem;
	}
	
	.sec01 .w-2 input:hover{
		width: 12rem;
		height: 3.5rem;
	}

	.sec01 .w-3{
		position: relative;
		margin-top: -115%;
		margin-left: 26%;
	}

	.sec01 .w-3 input{
		font-size: 22pt;
		border-radius: 5rem;
		width: 12rem;
		height: 3.5rem;
		background-size: 120%;
	}

	.sec01 .w-3 input:hover{
		width: 12rem;
		height: 3.5rem;
	}

	.sec01 .w-4{
		position: relative;
		margin-top: -115%;
		margin-left: 26%;
	}

	.sec01 .w-4 input{
		font-size: 22pt;
		border-radius: 5rem;
		width: 12rem;
		height: 3.5rem;
	}

	.sec01 .w-4 input:hover{
		width: 12rem;
		height: 3.5rem;
	}

	/*Sec02*/
	.sec02{
		margin: 2rem 0rem;
	}

	.sec02_info{
		width: 450px;
		margin-left: 0rem;
	}

	.sec02_info .title_2{
		width: 25rem;
		margin: 2rem 0rem 0.5rem 0.1rem;
		padding: 0rem;
	}

	.sec02_info p{
		font-size: 20pt;
		line-height: 36px;
		text-align: center;
	}

	.sec02_mytabs{/*6 Btn Container*/
		max-width: 450px;
		margin-left: 2.5rem;
		margin-top: 1.5rem;
	}

	.sec02_mytabs label{/*6 Btn*/
		margin-right: 0.5rem;
		margin-bottom: 0.7rem;
		font-size: 20pt;
		padding: 12px 25px;
		border: 3px solid;
		border-radius: 3rem;
	}

	.sec02_mytabs label:hover{ /*6 Btn Hover*/
		border: 3px solid;
	}
	
	.sec02_mytabs .tab{/*Pic conect wuth Btn*/
		margin-left: 0.5rem;
		margin-top: 2.5rem;
	}

	.sec02_mytabs .chat1{
		width:320px;
	}
	
	.sec02_mytabs .deco1{
		width:480px;
	}

	/*Sec03*/
	.sec03{
		margin: 0rem 0rem 0rem 0rem;
	}

	.sec03_info{
		width: 450px;
		margin-left: 0px;
	}

	.sec03_info .title_3{
		width: 25rem;
		margin: 1.2rem 0rem 0.5rem 0.3rem;
		padding: 0rem;
	}

	.sec03_info p{
		font-size: 20pt;
		line-height: 36px;
		text-align: center;
	}

	.sec03_pimoney_m{
		display: block;
		width: 400px;
		margin-left: 30px;
		margin-top: 4rem;
	}

	.sec03_btn{
		width: 450px;
		margin-left: 0rem;
		margin-top: 1.5rem;
	}

	.sec03_btn button{
		font-size: 20pt;
		margin-right: 1rem;
		margin-bottom: 0.3rem;
		padding: 12px 25px 13px 30px;
		border: 3px solid;	
		border-radius: 3rem;
	}

	.sec03_btn button:hover{
		padding: 12px 25px 13px 30px;
		border: 3px solid;
	}

	.sec03_btn .btn_addspace{
		padding: 12px 50px 13px 55px;	
	}

	.sec03_btn .btn_addspace:hover{
		padding: 12px 50px 13px 55px;	
	}

	.sec03_cta button{
		margin-top: 2.2rem;
		padding: 15px 65px 16px 65px;
		border-radius: 5rem;
		font-size: 20pt;
		letter-spacing: 0.1rem;
	}

	/*Sec04*/
	.sec04{
		margin-top: 3rem;
	}

	.sec04_info{
		width: 450px;
	}

	.sec04_info p{
		font-size: 20pt;
		line-height: 36px;
	}

	.sec04_info .title_4{
		width: 25rem;
		margin: 1.2rem 0rem 0.5rem 0.3rem;
	}

	.sec04_btn button{
		font-size: 20pt;
		margin-right: 1rem;
		margin-top: 1.5rem;
		margin-bottom: 0.3rem;
		padding: 12px 25px 13px 30px;
		border-radius: 3rem;
		border: 3px solid;	
	}

	.sec04_btn button:hover{
		padding: 12px 25px 13px 30px;
		border: 3px solid;
		transition: 0.2s ease-in-out;
	}

	.sec04_cta button{
		margin-top: 2.2rem;
		padding: 15px 65px 16px 65px;
		border-radius: 3rem;
		font-size: 20pt;
	}
	
	.sec04_pislow{
		max-width: 480px;
		margin-left: -12rem;
		margin-top: -9rem;
	}

	.sec04_pislow img{
		width: 170%;
	}

	/*Sec05*/
	.sec05{
		margin-top: 4rem;
	}

	.sec05_container{
		margin: 0rem 1rem;
		height: 900px;
		border-radius: 6rem;
	}

	.sec05 .title_5{
		width: 22rem;
		margin: 1.5rem 0rem 0.5rem 0.3rem;
	}

	/*FAQ01*/
	.QA1 button{
		width: 288px;
		height: 201px;
		background-image: url(img/sec05/sec05_q1_m.png);
		background-size: 105%;
	}

	.QA1 button:hover{
		width: 354px;
		height: 204px;
		background-image: url(img/sec05/sec05_a1_m.png);
		background-size: 100%;
	}

	/*FAQ02*/
	.QA2 button{
		width: 288px;
		height: 201px;
		background-image: url(img/sec05/sec05_q2_m.png);
		background-size: 105%;
	}

	.QA2 button:hover{
		width: 354px;
		height: 204px;
		background-image: url(img/sec05/sec05_a2_m.png);
		background-size: 100%;
	}

	/*FAQ03*/
	.QA3 button{
		width: 288px;
		height: 201px;
		background-image: url(img/sec05/sec05_q3_m.png);
		background-size: 105%;
	}

	.QA3 button:hover{
		width: 354px;
		height: 204px;
		background-image: url(img/sec05/sec05_a3_m.png);
		background-size: 100%;
	}

	/*Sec06*/
	.sec06_info{
		width: 450px;
		margin-left: 0rem;
	}

	.sec06 .title_6{
		width: 25rem;
		margin: 1.2rem 0rem 0.5rem 0rem;
	}

	.sec06_mybrand{ /*3 Btn Container*/
		width: 450px;
	}

	.sec06_mybrand label{ /*3 Btn*/
		margin-top: 0.5rem;
		margin-right: 0.4rem;
		padding: 8px 15px;
		border-radius: 5rem;
		font-size: 17pt;
		border: 3px solid;
	}

	.sec06_mybrand button{
		margin-top: 0.5rem;
		padding: 0.2rem;
		font-size: 20pt;
		border: 3px solid;
	}

	.sec06_mybrand button:hover{
		border: 3px solid;
	}

	.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
		width: 450px;
		margin-left: 0rem;
	}

	.sec06_bbmap{
		margin: 15rem -10rem 0rem 0rem;
		width: 550px;
		background-size: 550px;
	}

	/*Sec07*/
	.sec07{
		margin-top: 3rem;
	}

	.sec07_info{
		width: 450px;
		margin-left: 0rem;
		margin-top: 0rem;
		text-align: center;
	}

	.sec07_info .title_7{
		width: 25rem;
		margin: 1rem 0rem 0.5rem 0.3rem;
	}

	.sec07_info p{
		font-size: 20pt;
		line-height: 36px;
	}

	.sec07_pi2_m{
		display: block;
		max-width: 450px;
	}

	.sec07_cta button{
		margin-top: 2.2rem;
		padding: 15px 65px 16px 65px;
		border-radius: 3rem;
		font-size: 20pt;
	}

	/*Sec08*/
	.sec08_info{
		width: 450px;
		margin-top: 0rem;
		z-index: 2;
	}

	.sec08_info .title_8{
		width: 9rem;
		margin: 1rem auto;
		padding-bottom: 0rem;
	}

	.sec08_info p{
		font-size: 20pt;
		line-height: 36px;
	}

	.sec08_cta button{
		margin-top: 1rem;
		margin-bottom: 14rem;
		padding: 15px 65px 16px 65px;
		border: 3px solid #ffffff;
		border-radius: 3rem;
		letter-spacing: 0.1rem;
		font-size: 20pt;
	}

	/*Bottom*/
	.bottom .more_group{
		font-size: 18pt;
	}

	.bottom .copyright{
		font-size: 16pt;
		font-weight: 300;
		padding: 1rem 0rem 2rem 0rem;
	}

}/*610-480 M END*/


/**/
/**/
/*479-412 M*/
@media(max-width: 479px){

	.header{
		height: 2rem;
	}

	.header a{
		padding-right: 0.5rem;
		color: #ffffff;
		text-decoration: none;
		white-space: nowrap; 
		font-size: 12pt !important;
		font-weight:400;
	}

	.header_left{
		left:0.8rem;
		top: 0.2rem;
	}
	
	.header_right{
		right:0.2rem;
		top: 0.2rem;
	}

	.header a{
		font-size: 14pt;
		font-weight:400;
	}

	.nav{
		font-size: 20pt;
	}
	
	.nav_right{
		right: 0rem;
	}

	.nav .logo {
		height: 60px;
	}

	.nav label{
		height: 45px;
		margin: auto 1rem auto 0rem;
		display: block;
	}

	.nav li{
		padding: 1.6rem 0rem 1.6rem 10rem;
	}

	#burger:checked + ul{
		margin-bottom: -18.7rem;
		margin-left:-22.5rem;
	}

	.download{
		top: 85%;
		right: 1%;
	}

	.download img{
		width: 6.5rem;
	}
		
	.go_top {
		width: 4rem;
		top: 77%;
		right: 2%;
	}

	.go_top img{
		width: 100%;
		opacity: 30%;
	}

	/*Sec01 KV*/
	.CSSgal .prevNext a {
		width: 4rem;
		height: 4rem;
		line-height: 4rem; 
		font-size: 30pt;
	}

	.sec01 .w-2{
		position: relative;
		margin-left: 25%;
	}
	
	.sec01 .w-2 input{
		font-size: 18pt;
		width: 11rem;
		height: 3rem;
	}
	
	.sec01 .w-2 input:hover{
		width: 11rem;
		height: 3rem;
	}

	.sec01 .w-3{
		position: relative;
		margin-left: 25%;
	}

	.sec01 .w-3 input{
		font-size: 18pt;
		width: 11rem;
		height: 3rem;
	}

	.sec01 .w-3 input:hover{
		width: 11rem;
		height: 3rem;
	}
	
	.sec01 .w-4{
		margin-left: 25%;
	}

	.sec01 .w-4 input{
		font-size: 18pt;
		width: 11rem;
		height: 3rem;
	}

	.sec01 .w-4 input:hover{
		width: 11rem;
		height: 3rem;
	}

	/*Sec02*/
	.sec02{
		margin: 1.5rem 0rem;
	}

	.sec02_info{
		width: 400px;
		margin-left: 0rem;
	}

	.sec02_info .title_2{
		width: 22rem;
		margin: 2rem 0rem 0.5rem 0.3rem;
		padding: 0rem;
	}

	.sec02_info p{
		font-size: 18pt;
		line-height: 32px;
		padding: 0rem 1rem;
	}

	.sec02_mytabs{/*6 Btn Container*/
		max-width: 400px;
		margin-left: 1.5rem;
		margin-top: 1.5rem;
	}

	.sec02_mytabs label{/*6 Btn*/
		font-size: 18pt;
		border: 2px solid;
	}

	.sec02_mytabs .tab{/*Pic conect wuth Btn*/
		margin-left:1rem;
		margin-top: 2.5rem;
	}

	.sec02_mytabs .chat1{
		width:300px;
	}
	
	.sec02_mytabs .deco1{
		width: 412px;
	}

	/*Sec03*/
	.sec03_info{
		width: 400px;
		margin-left: 0rem;
	}

	.sec03_info .title_3{
		width: 22rem;
		margin: 1.2rem 0rem 0.5rem 0.5rem;
		padding: 0rem;
	}

	.sec03_info p{
		font-size: 18pt;
		line-height: 32px;
		padding: 0rem 1rem;
	}

	.sec03_pimoney_m{
		width: 350px;
	}

	.sec03_btn{
		width: 400px;
	}

	.sec03_btn button{
		font-size: 18pt;
		border: 2px solid;
	}

	.sec03_btn button:hover{
		border: 2px solid;
	}

	.sec03_cta button{
		font-size: 18pt;
	}

    /*Sec04*/

	.sec04_info{
		width: 400px;
	}

	.sec04_info p{
		font-size: 18pt;
		line-height: 32px;
		padding: 0rem 1rem;
	}

	.sec04_info .title_4{
		width: 22rem;
		margin: 1.2rem 0rem 0.5rem 0.3rem;
	}

	.sec04_btn button{
		font-size: 18pt;
		border: 2px solid;
	}

	.sec04_btn button:hover{
		border: 2px solid;
	}


	.sec04_cta button{
		font-size: 18pt;
	}

	.sec04_pislow{
		max-width: 480px;
		margin-left: -12rem;
		margin-top: -7rem;
	}

	.sec04_pislow img{
		width: 150%;
	}

	/*Sec05*/
	.sec05_container{
		margin: 0rem 1.5rem;
		height: 780px;
		border-radius: 4rem;
	}

	.sec05 .title_5{
		width: 18rem;
		margin: 1.5rem 0rem 0.5rem 0.3rem;
	}

		/*FAQ01*/
		.QA1 button{
			width: 230.4px;
			height: 160.6px;
		}
	
		.QA1 button:hover{
			width: 283.2px;
			height: 163.2px;
		}

		/*FAQ02*/
		.QA2 button{
			width: 230.4px;
			height: 160.6px;
		}

		.QA2 button:hover{
			width: 283.2px;
			height: 163.2px;
		}

		/*FAQ03*/
		.QA3 button{
			width: 230.4px;
			height: 160.6px;
		}

		.QA3 button:hover{
			width: 283.2px;
			height: 163.2px;
		}

	/*Sec06*/
	.sec06_info{
		width: 400px;
		margin-left: 0rem;
	}

	.sec06 .title_6{
		width: 21.5rem;
		margin: 1rem 0rem 0.5rem 0.3rem;
	}

	.sec06_mybrand{ /*3 Btn Container*/
		width: 400px;
		margin-left: 0.2rem;
	}

	.sec06_mybrand label{ /*3 Btn*/
		margin-top: 0.3rem;
		margin-right: 0.4rem;
		padding: 10px 15px;
		border-radius: 3rem;
		font-size: 14pt;
		border: 2px solid;
	}

	.sec06_mybrand button{
		margin-top: 0.5rem;
		padding: 0.2rem;
		font-size: 20pt;
		border: 2px solid;
	}

	.sec06_mybrand button:hover{
		border: 2px solid;
	}

	.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
		width: 390px;
		margin-left: 0rem;
	}

	.sec06_bbmap{
		margin: 14rem -10rem 0rem 0rem;
		width: 470px;
		background-size: 470px;
	}

	/*Sec07*/
	.sec07{
		margin-top: 3rem;
	}

	.sec07_info{
		width: 400px;
		margin-left: 0rem;
		margin-top: 0rem;
		text-align: center;
	}

	.sec07_info .title_7{
		width: 22rem;
		margin: 1rem 0rem 0.5rem 0.3rem;
	}

	
	.sec07_info p{
		padding: 0rem 1rem;
		font-size: 18pt;
		line-height: 32px;
	}

	.sec07_cta button{
		font-size: 18pt;
	}

	.sec07_pi2_m{
		display: block;
		max-width: 400px;
		margin-left: -2rem;
		margin-top: 4rem;
	}

	.sec08bg_top { /*Sec08 Blue Top BG*/
		margin-top: -1rem;
	}

	/*Sec08*/
	.sec08_info{
		width: 400px;
		margin-top: 0rem;
		z-index: 2;
	}

	.sec08_info .title_8{
		width: 8rem;
		margin: 1rem auto;
		padding-bottom: 0rem;
	}

	.sec08_info p{
		padding: 0rem 1rem;
		font-size: 18pt;
		line-height: 32px;
	}

	.logo-wall .logo-wrapper .logo {
		width: 150px;
		height: 150px;
		margin: 0 10px;
	}

	.logo-wall .logo-wrapper .logo img{
		width: 100%;
	}

	.sec08_cta button{
		margin-top: 0.5rem;
		margin-bottom: 10rem;
		border: 2px solid #ffffff;
		font-size: 18pt;
	}

	/*Bottom*/
	.bottom .more_group{
		font-size: 14pt;
	}

	.bottom .copyright{
		font-size: 13pt;
		font-weight: 300;
		padding: 1rem 0rem 2rem 0rem;
	}

}/*479-412 M END*/


/**/
/**/
/*411-375 M*/
@media(max-width: 411px){

	.nav{
		font-size: 18pt;
	}

	.nav_left{
		position: absolute;
		left: 0.5rem;
	}

		.nav .logo {
			height: 60px;
			margin-left: -1.5rem;
		}

	.nav li{
		padding: 1.5rem 0rem 1.5rem 9.2rem;
	}

	#burger:checked + ul{
		margin-bottom: -17.3rem;
		margin-left:-20.5rem;
	}

	.download{
		top: 85%;
		right: 1%;
	}

	.download img{
		width: 5.5rem;
	}
		
	.go_top {
		width: 3.5rem;
		top: 77%;
		right: 2%;
	}

	.go_top img{
		width: 100%;
		opacity: 30%;
	}

	/*Sec01 KV*/
	.CSSgal .prevNext a {
		width: 3.2rem;
		height: 3.2rem;
		line-height: 3.2rem; 
		font-size: 26pt;
	}

	.CSSgal .bullets > a {
		width: 0.7rem;
		height: 0.7rem;
		line-height: 0.7rem;
	}


	.sec01 .w-2{
		position: relative;
		margin-left: 23%;
	}
	
	.sec01 .w-2 input{
		font-size: 16pt;
		width: 10rem;
		height: 2.5rem;
	}
	
	.sec01 .w-2 input:hover{
		width: 10rem;
		height: 2.5rem;
	}

	.sec01 .w-3{
		position: relative;
		margin-left: 24%;
	}

	.sec01 .w-3 input{
		font-size: 16pt;
		width: 10rem;
		height: 2.5rem;
	}

	.sec01 .w-3 input:hover{
		width: 10rem;
		height: 2.5rem;
	}

	.sec01 .w-4{
		margin-left: 24%;
	}

	.sec01 .w-4 input{
		font-size: 16pt;
		width: 10rem;
		height: 2.5rem;
	}

	.sec01 .w-4 input:hover{
		width: 10rem;
		height: 2.5rem;
	}

	/*Sec02*/
	.sec02{
		margin: 1rem 0rem;
	}

	.sec02_info{
		width: 360px;
		margin-left: -0.5rem;
	}

	.sec02_info .title_2{
		width:20rem;
		margin: 2rem 0rem 0.5rem 0.3rem;
		padding: 0rem;
	}

	.sec02_info p{
		font-size: 16pt;
	}

	.sec02_mytabs{/*6 Btn Container*/
		max-width: 375px;
		margin-left: 0.5rem;
		margin-top: 0.5rem;
		padding: 10px 10px;
	}

	.sec02_mytabs label{/*6 Btn*/
		font-size: 16pt;
		margin-right: 0.5rem;
		margin-bottom: 0.4rem;
	}

	.sec02_mytabs .tab{/*Pic conect wuth Btn*/
		margin-left:1rem;
		margin-top: 1.7rem;
	}

	.sec02_mytabs .chat1{
		width:250px;
	}
	
	.sec02_mytabs .deco1{
		width: 350px;
	}

	/*Sec03*/
	.sec03_info{
		width: 360px;
		margin-left: 0rem;
	}

	.sec03_info .title_3{
		width: 20rem;
		margin: 1.2rem 0rem 0.5rem 0.3rem;
		padding: 0rem;
	}

	.sec03_info p{
		font-size: 16pt;
	}

	.sec03_pimoney_m{
		width: 300px;
		margin-top: 3rem;
	}

	.sec03_btn{
		width: 360px;
	}

	.sec03_btn button{
		font-size: 16pt;
		padding: 12px 10px 13px 17px;
		border: 2px solid;	
	}

	.sec03_btn button:hover{
		padding: 12px 10px 13px 17px;
		border: 2px solid;	
	}

	.sec03_btn .btn_addspace{
		padding: 12px 30px 13px 37px;	
	}

	.sec03_btn .btn_addspace:hover{
		padding: 12px 30px 13px 37px;	
	}

	.sec03_cta button{
		font-size: 16pt;
	}

	/*Sec04*/
	.sec04_info{
		width: 360px;
		margin-left: 0rem;
	}

	.sec04_info .title_4{
		width: 20rem;
		margin: 1rem 0rem 0.5rem 0.4rem;
	}

	.sec04_info p{
		font-size: 16pt;
	}

	.sec04_btn button{
		font-size: 16pt;
		padding: 12px 6px 13px 13px;
		border: 2px solid;
	}

	.sec04_btn button:hover{
		padding: 12px 6px 13px 13px;
		border: 2px solid;
	}

	.sec04_cta button{
		font-size: 16pt;
	}

	.sec04_pislow{
		max-width: 480px;
		margin-left: -7rem;
		margin-top: -6rem;
	}

	.sec04_pislow img{
		width: 130%;
	}

	/*Sec05*/
	.sec05{
		margin-top: 3rem;
		margin-bottom: 2rem;
	}

	.sec05_container{
		border-radius: 3rem;
	}

	/*Sec06*/
	.sec06_info{
		width: 360px;
		margin-left: 0rem;
	}

	.sec06 .title_6{
		width: 19rem;
		margin: 1rem 0rem 0.5rem 0.3rem;
	}

	.sec06_mybrand{ /*3 Btn Container*/
		width: 375px;
		margin-left: 0.5rem;
	}

	.sec06_mybrand label{ /*3 Btn*/
		margin-top: 0.2rem;
		margin-right: 0.4rem;
		padding: 12px 10px;
		border-radius: 2rem;
		font-size: 13pt;
	}

	.sec06_mybrand button{
		margin-top: 0.2rem;
	}

	.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
		width: 340px;
		margin-left: 0rem;
	}

	.sec06_bbmap{
		margin: 12rem -9rem 0rem 0rem;
		width: 370px;
		background-size: 370px;
	}

	/*Sec07*/
	.sec07{
		margin-top: 2rem;
	}

	.sec07_info{
		width: 360px;
		margin-left: 0rem;
		margin-top: 0rem;
		text-align: center;
	}

	.sec07_info .title_7{
		width: 20rem;
		margin: 1rem 0rem 0.5rem 0.3rem;
	}

	.sec07_info p{
		padding: 0rem 0.2rem;
		font-size: 16pt;
		line-height: 32px;
	}

	.sec07_pi2_m{
		display: block;
		max-width: 350px;
		margin-left: -2rem;
		margin-top: 3rem;
	}

	
	.sec07_cta button{
		font-size: 16pt;
	}

	.sec08bg_top { /*Sec08 Blue Top BG*/
		margin-top: -1rem;
	}

	/*Sec08*/
	.sec08_info{
		width: 360px;
		margin-top: 0rem;
		z-index: 2;
	}

	.sec08_info .title_8{
		width: 7rem;
		margin: 0.5rem auto;
		padding-bottom: 0rem;
	}

	.sec08_info p{
		font-size: 16pt;
		line-height: 32px;
	}

	.sec08_cta button{
		font-size: 16pt;
		margin-bottom: 8rem;
	}

	/*Bottom*/
	.bottom .more_group{
		padding: 1rem 2rem 4rem 0rem;
		font-size: 12pt;
		line-height: 30px;
	}

	.bottom .copyright{
		font-size: 13pt;
		font-weight: 300;
		padding: 1rem 0rem 2rem 0rem;
	}
	
}/*411-375 M END*/


/**/
/**/
/*374-341 M*/
@media(max-width: 374px){
	.nav{
		height: 55px;
		font-size: 16pt;
	}

	.nav_left{
		position: absolute;
		left: 0.4rem;
	}
	
	.nav .logo {
		height: 50px;
		margin-left: -1.5rem;
	}

	.nav label{
		height: 35px;
		margin: auto 0.4rem auto 0rem;
		display: block;
	}

	.nav li{
		padding: 1.2rem 0rem 1.2rem 9rem;
	}

	#burger:checked + ul{
		margin-bottom: -14.3rem;
		margin-left:-20.5rem;
	}

	.download{
		top: 85%;
		right: 1%;
	}

	.download img{
		width: 4.7rem;
	}
		
	.go_top {
		width: 3.2rem;
		top: 77%;
		right: 2%;
	}

	.go_top img{
		width: 100%;
		opacity: 30%;
	}

	.sec01 .w-2{
		position: relative;
		margin-left: 22%;
	}

	.sec01 .w-3{
		position: relative;
		margin-left: 22.5%;
	}

	.sec01 .w-4{
		position: relative;
		margin-left: 21.5%;
	}

	/*Sec02*/
	.sec02_info{
		width: 300px;
		margin-left: 0rem;
	}

	.sec02_info .title_2{
		width:18rem;
		margin: 2rem 0rem 0.5rem 0rem;
		padding: 0rem;
	}

	.sec02_info p{
		font-size: 15pt;
	}

	.sec02_mytabs{/*6 Btn Container*/
		max-width: 320px;
		margin-left: 0.5rem;
		margin-top: 0.5rem;
		padding: 10px 10px;
	}

	.sec02_mytabs label{/*6 Btn*/
		font-size: 15pt;
		margin-right: 0.3rem;
		margin-bottom: 0.3rem;
		padding: 10px 21px;
	}

	/*Sec03*/
	.sec03_info{
		width: 300px;
		margin-left: 0rem;
	}

	.sec03_info .title_3{
		width: 18rem;
		margin: 1.2rem 0rem 0.5rem 0rem;
		padding: 0rem;
	}

	.sec03_info p{
		font-size: 15pt;
	}

	.sec03_pimoney_m{
		width: 280px;
		margin-top: 3rem;
	}

	.sec03_btn{
		width: 300px;
		margin-top: 1rem;
	}

	.sec03_btn button{
		font-size: 15pt;
		padding: 10px 20px 11px 20px;
		border: 2px solid;	
	}

	.sec03_btn button:hover{
		padding: 10px 20px 11px 20px;
		border: 2px solid;	
	}

	.sec03_btn .btn_addspace{
		padding: 10px 30px 11px 37px;	
	}

	.sec03_btn .btn_addspace:hover{
		padding: 10px 30px 11px 37px;	
	}

	.sec03_cta button{
		margin-top: 1.8rem;
		font-size: 15pt;
	}

	/*Sec04*/
	.sec04_info{
		width: 300px;
		margin-left: 0rem;
	}

	.sec04_info .title_4{
		width: 18rem;
		margin: 1rem 0rem 0.5rem 0rem;
	}

	.sec04_info p{
		font-size: 15pt;
	}

	.sec04_btn button{
		font-size: 15pt;
		padding: 10px 18px 11px 18px;
		border: 2px solid;
		margin-right: 0rem;
	}

	.sec04_btn button:hover{
		padding: 10px 18px 11px 18px;
		border: 2px solid;
	}

	.sec04_cta button{
		margin-top: 1.8rem;
		font-size: 15pt;
	}

	/*Sec05*/
	.sec05_container{
		margin: 0rem 0.9rem;
		height: 670px;
	}

	.sec05 .title_5{
		width: 16rem;
		margin: 1rem 0rem 0.2rem 0.1rem;
	}
	/*FAQ*/
	.QA1{
		padding: 10px 20px;
	}

	.QA2{
		padding: 10px 20px;
	}

	.QA3{
		padding: 10px 20px;
	}

	/*Sec06*/
	.sec06_info{
		width: 300px;
		margin-left: 0rem;
	}

	.sec06 .title_6{
		width: 17rem;
		margin: 0.5rem 0rem 0.5rem -0.25rem;
	}

	.sec06_mybrand{ /*3 Btn Container*/
		width: 320px;
		margin-left: -0.5rem;
	}

	.sec06_mybrand label{ /*3 Btn*/
		margin-top: 0.2rem;
		margin-right: 0.3rem;
		padding: 11px 10px;
		border-radius: 2rem;
		font-size: 11.5pt;
	}
	
	.sec06_mybrand button{
		margin-top: 0.2rem;
		padding: 0.1rem;
		font-size: 20pt;
	}

	.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
		width: 320px;
		margin-left: 0rem;
	}

	.sec06_mybrand .tab img{
		margin: 0.7rem auto 2rem auto;
	}

	.sec06_bbmap{
		margin: 11rem -8rem 0rem 0rem;
		width: 370px;
		background-size: 370px;
	}

	/*Sec07*/
	.sec07{
		margin-top: 1rem;
	}

	.sec07_info{
		width: 300px;
	}

	.sec07_info .title_7{
		width: 18rem;
		margin: 1rem 0rem 0.4rem 0rem;
	}

	.sec07_info p{
		font-size: 15pt;
	}

	.sec07_pi2_m{
		display: block;
		max-width: 320px;
		margin-left: -1rem;
		margin-top: 3rem;
	}

	.sec07_cta button{
		padding: 15px 45px 16px 45px;
		margin-top: 1.8rem;
		font-size: 15pt;
	}

	.sec08bg_top { /*Sec08 Blue Top BG*/
		margin-top: -1rem;
	}

	/*Sec08*/
	.sec08_info{
		width: 300px;
		margin-top: 0rem;
		z-index: 2;
	}

	.sec08_info .title_8{
		width: 6rem;
		margin: 0.5rem auto;
		padding-bottom: 0rem;
	}

	.sec08_info p{
		font-size: 15pt;
	}

	.sec08_cta button{
		font-size: 15pt;
		margin-bottom: 7rem;
	}

	/*Bottom*/
	.bottom .more_group{
		padding: 0.5rem 2rem 3.5rem 0rem;
		font-size: 10pt;
		line-height: 28px;
	}

	.bottom .copyright{
		font-size: 10pt;
		font-weight: 300;
		padding: 1rem 0rem 2rem 0rem;
	}


}/*374-341 M END*/


/**/
/**/
/*340-279 M*/
@media(max-width: 340px){
	.header a{
		padding-right: 0.2rem;
		font-size: 9pt !important;
	}

	.nav li{
		padding: 1.2rem 0rem 1.2rem 10rem;
	}

	.go_top {
		width: 3rem;
		top: 76%;
		right: 2%;
	}

	/*Sec02*/
	.sec02_info{
		width: 275px;
		margin-left: 0rem;
	}

	.sec02_info .title_2{
		width:16rem;
		margin: 1.5rem 0rem 0.5rem 0rem;
		padding: 0rem;
	}

	.sec02_info p{
		font-size: 14pt;
		line-height: 26px;
	}

	.sec02_mytabs{/*6 Btn Container*/
		max-width: 280px;
		margin-left: 0rem;
		margin-top: 0.5rem;
	}

	.sec02_mytabs label{/*6 Btn*/
		font-size: 14pt;
		margin-right: 0.3rem;
		margin-bottom: 0.3rem;
		padding: 9px 16px;
	}

	.sec02_mytabs .chat1{
		width:230px;
	}
	
	.sec02_mytabs .deco1{
		width: 320px;
	}

	/*Sec03*/
	.sec03_info{
		width: 275px;
		margin-left: 0rem;
	}

	.sec03_info .title_3{
		width: 16rem;
		margin: 1rem 0rem 0.5rem 0.1rem;
	}

	.sec03_info p{
		font-size: 14pt;
		line-height: 26px;
	}

	.sec03_pimoney_m{
		width: 250px;
		margin-top: 2.5rem;
	}

	.sec03_btn{
		margin-top: 0.8rem;
	}

	.sec03_btn button{
		font-size: 14pt;
		padding: 9px 20px 10px 20px;	
	}

	.sec03_btn button:hover{
		padding: 9px 20px 10px 20px;
	}

	.sec03_btn .btn_addspace{
		padding: 9px 30px 10px 37px;	
	}

	.sec03_btn .btn_addspace:hover{
		padding: 9px 30px 10px 37px;	
	}

	.sec03_cta button{
		margin-top: 1.5rem;
		font-size: 14pt;
	}

	/*Sec04*/
	.sec04_info{
		width: 270px;
		margin-left: 0rem;
	}

	.sec04_info .title_4{
		width: 16rem;
		margin: 1rem 0rem 0.5rem 0rem;
	}

	.sec04_info p{
		font-size: 14pt;
		line-height: 26px;
	}

	.sec04_btn button{
		margin-top: 1rem;
		font-size: 13pt;
		padding: 11px 16px 12px 16px;
	}

	.sec04_btn button:hover{
		padding: 11px 16px 12px 16px;
	}

	.sec04_cta button{
		margin-top: 1.5rem;
		font-size: 14pt;
	}

	.sec04_pislow{
		max-width: 380px;
		margin-left: -10rem;
		margin-top: -5rem;
	}

	.sec04_pislow img{
		width: 150%;
	}

	/*Sec05*/
	.sec05_container{
		margin: 0rem 0.9rem;
		height: 570px;
	}

	.sec05 .title_5{
		width: 15rem;
		margin: 1rem 0rem 0.2rem 0.1rem;
	}

		/*FAQ01*/
		.QA1 button{
			width: 187.2px;
			height: 130.65px;
		}

		.QA1 button:hover{
			width: 230.1px;
			height: 132.6px;
		}

		/*FAQ02*/
		.QA2 button{
			width: 187.2px;
			height: 130.65px;
		}

		.QA2 button:hover{
			width: 230.1px;
			height: 132.6px;
		}

		/*FAQ03*/
		.QA3 button{
			width: 187.2px;
			height: 130.65px;
		}

		.QA3 button:hover{
			width: 230.1px;
			height: 132.6px;
		}

	/*Sec06*/
	.sec06_info{
		width: 270px;
		margin-left: 0rem;
	}

	.sec06 .title_6{
		width: 15.5rem;
		margin: 0.5rem 0rem 0.5rem 0rem;
	}

	.sec06_mybrand{ /*3 Btn Container*/
		width: 280px;
		margin-left: 0rem;
	}

	.sec06_mybrand label{ /*3 Btn*/
		margin-top: 0rem;
		margin-right: 0.2rem;
		padding: 8px 7px;
		border-radius: 2rem;
		font-size: 10pt;
	}

	.sec06_mybrand button{
		margin-top: 0rem;
		padding: 0.4rem 0rem;
		font-size: 10pt;
	}

	.sec06_mybrand button img{
		width: 40% !important;
	}

	.sec06_mybrand .tab{ /*Pic conect wuth Btn*/
		width: 275px;
		margin-left: 0rem;
	}

	.sec06_bbmap{
		margin: 10rem -8rem 0rem 0rem;
		width: 300px;
		background-size: 300px;
	}

	/*Sec07*/
	.sec07_info{
		width: 270px;
	}

	.sec07_info .title_7{
		width: 16rem;
		margin: 1rem 0rem 0.4rem 0rem;
	}
	
	.sec07_info p{
		font-size: 14pt;
		line-height: 26px;
	}

	.sec07_pi2_m{
		display: block;
		max-width: 270px;
		margin-left: -1rem;
		margin-top: 3rem;
	}

	.sec07_cta button{
		padding: 15px 40px 16px 40px;
		margin-top: 1.5rem;
		font-size: 14pt;
	}

	/*Sec08*/
	.sec08_info{
		width: 270px;
		margin-top: 0rem;
		z-index: 2;
	}

	.sec08_info .title_8{
		width: 5.5rem;
		margin: 1rem auto 0.5rem auto;
	}

	.sec08_info p{
		font-size: 14pt;
		line-height: 26px;
	}

	.sec08_cta button{
		font-size: 14pt;
		margin-bottom: 5rem;
	}

}/*340-279 M END*/


/**/
/**/
/*280 Galaxy Fold*/
@media(max-width: 280px){
	.header a{
		padding-right: 0.12rem;
		color: #ffffff;
		text-decoration: none;
		white-space: nowrap; 
		font-size: 8pt !important;
		font-weight:400;
	}

	.header_left{
		left:0.5rem;
		top: 0.2rem;
	}
	
	.header_right{
		right:0.2rem;
		top: 0.2rem;
	}

	.nav{
		font-size: 15pt;
	}

	.nav li{
		padding: 1.2rem 0rem 1.2rem 11.3rem;
	}

	#burger:checked + ul{
		margin-bottom: -14rem;
		margin-left:-20.5rem;
	}

	.sec01 .w-2{
		position: relative;
		margin-top: -115%;
		margin-left: 21%;
	}

	.sec01 .w-2 input {
		font-size: 14pt;
		width: 8rem;
		height: 2.5rem;
	}

	.sec01 .w-3{
		position: relative;
		margin-top: -117%;
		margin-left: 21%;
	}

	.sec01 .w-3 input {
		font-size: 14pt;
		width: 8rem;
		height: 2.5rem;
	}

	.sec01 .w-4{
		position: relative;
		margin-top: -117%;
		margin-left: 21%;
	}

	.sec01 .w-4 input {
		font-size: 14pt;
		width: 8rem;
		height: 2.5rem;
	}

	/*Sec02*/
	.sec02_info .title_2{
		width:14rem;
		margin: 1rem 0rem 0.5rem 0.5rem;
		padding: 0rem;
	}

	.sec02_info p{
		padding: 0rem 1rem;
	}

	/*Sec03*/
	.sec03_info .title_3{
		width: 14rem;
		margin: 0.5rem 0rem 0.5rem 0.5rem;
	}

	.sec03_info p{
		padding: 0rem 1rem;
	}

	.sec03_btn button {
		margin-bottom: 0.1rem;
	}

	/*Sec04*/
	.sec04_info .title_4{
		width: 14rem;
		margin: 1rem 0rem 0.5rem 0.5rem;
	}

	.sec04_info p{
		padding: 0rem 1rem;
	}

	.sec04_pislow{
		max-width: 380px;
		margin-left: -7rem;
		margin-top: -5rem;
	}

	.sec04_pislow img{
		width: 130%;
	}

	/*Sec05*/
	.sec05{
		margin-top: 2rem;
	}

	.sec05_container{
		margin: 0rem 0.2rem;
		height: 570px;
	}

	.sec05 .title_5{
		width: 14rem;
		margin: 1rem 0rem 0.2rem 0.1rem;
	}

	/*Sec06*/
	.sec06 .title_6{
		width: 13.5rem;
		margin: 0.5rem 0rem 0.5rem 0.4rem;
	}

	.sec06_bbmap{
		margin: 9rem -8rem 0rem 0rem;
	}

	/*Sec07*/
	.sec07_info .title_7{
		width: 14rem;
		margin: 1rem 0rem 0.4rem 0.4rem;
	}

	.sec07_info p{
		padding: 0rem 1rem;
	}

	/*Sec08*/
	.sec08_info .title_8{
		width: 4.5rem;
		margin: 1rem auto 0.5rem auto;
	}

	.sec08_info p{
		padding: 0rem 1rem;
	}

	/*Bottom*/
	.bottom .more_group{
		padding: 0.5rem 1rem 3.5rem 0rem;
		font-size: 9pt;
		line-height: 28px;
	}

}/*280 Galaxy Fold END*/