﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@font-face {
	font-family: 'font-p';
	src: url('font-p.woff') format('woff'), /* Pretty Modern Browsers */
		 url('font-p.ttf')  format('truetype'); /* Safari, Android, iOS */
  }
html{
    font-size: 16px;
}
body{
	margin: 0;
	padding: 0;
	font-size: 1rem;
	font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
	color: #3D3A39;
}
body.noscroll{
	height: 100vh;
	overflow: hidden;
}
/*
*{transition: all .50s linear;}
*:hover{transition: all .50s linear;}
*/
a{
	text-decoration: none;
	outline: none;
	color: #42373C;
}
a:hover{ }

img{max-width: 100%;}
input, select, textarea{outline: none;}

/*=[hover effect]==============================*/
/*
*:hover, *:focus , * {
	transition: all .20s linear
}
*/
.preload{
	position: fixed;
	background: #FFF center center no-repeat;
	background-image: url(../images/loading.gif);
	background-size: 36px 36px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
.slogan-wrap{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(256, 256, 256, 0.8);
	text-align: center;
	z-index: 999;
}
.slogan-txt{
	font-size: 1.4rem;
	margin: 20px 0;
}
.pageWrapper{
	position:relative;
	margin: 0 auto;
	box-sizing: border-box;
	transition: all 1s;
}
.pageWrapper.blur{
	filter: blur(5px) grayscale(10%);
}
.pageWrapper.fixed{
	height: 100vh;
	overflow: hidden;
}
.wrapper{
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	box-sizing: border-box;
	overflow: hidden;
}

/*=[header]=========*/
header{

}
header .wrapper{
	max-width: 100%;
	padding: 50px;
	overflow: visible;
}
header .navbar{

}
header .navbar .logo{
	
}
header .navbar .company-title{
	font-size: 0.9rem;
	display: block;
	margin-top: 10px;
}
header .navbar .slogan{
	font-family: 'Satisfy', cursive;
	font-size: 1.3rem;
	color: #E62124;
}
header .navbar nav{
	margin: 0;
}
header .navbar nav ul{
	margin: 0;
	padding: 0;
	text-align: left;
}
header .navbar nav ul li{
	position: relative;
	display: inline-block;
	padding: 0 10px;
}
header .navbar nav ul li:last-child{
	padding-right: 0;
}
header .navbar nav ul li a{
	display: inline-block;
	color: #9E9F9F;
}
header .navbar nav ul li a:hover{
	color: #3D3A39;
}
header .navbar nav ul li a.current{
	color: #3D3A39;
}
header .navbar .nav_icon{
	position: absolute;
	top: 5px;
	right: 0;
	z-index: 1;
	display: none;
}


/*=[section]=========*/


/*=page index=======*/
.index .w3-col.m20{width:20%}
.index .section1 .wrapper{
	max-width: 100%;
	padding-bottom: 60px;
}
.index .section1 .item{
	padding: 10px 30px;
	opacity: 0;
	transition: all 0.5s;
}
.index .section1 .item.in{
	opacity: 1;
}
.index .section1 .item-pic{
	object-fit: contain;
	height: 160px;
}
.index .section1 .item:hover{
	animation-name: brightness;
	animation-duration: 1s;
}
.btn-more{
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 10;
	text-align: center;
	padding: 20px;
	background-image: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,1));
	display: none;
}
@keyframes brightness {
  0%   {filter: brightness(1.75);}
  100% {filter: brightness(1);}
}


/*=page work=======*/
.work .section1 .wrapper{
	max-width: 100%;
	padding: 0 50px;
}
.work .soon{
	height: 55vh;
	font-size: 2rem;
}
.work .project-title{
	font-size: 0.9rem;
	margin: 10px 0 20px;
}
.work .btn-close{
	float: right;
	margin-top: 0;
	font-size: 0.8rem;
}
.work .btn-detail{
	position: fixed;
	left: 50px;
	bottom: 50px;
	z-index: 1;
	display: inline-block;
	width: 100px;
	text-align: center;
	border: 1px #9E9F9F solid;
	color: #9E9F9F;
	font-size: 0.8rem;
	box-sizing: border-box;
	padding: 10px 0;
}
.work .btn-detail:hover{
	border: 1px #000 solid;
	color: #FFF;
	background: #000;
}
.work .work-info{
	position: fixed;
	width: 100%;
	height: calc(100vh - 140px);
	box-sizing: border-box;
	padding: 100px 0;
	left: 0;
	bottom: 0;
	background: #FFF;
	z-index: 10;
	display: none;
}
.work .work-info .work-info-title{
	font-size: 2.2rem;
	margin-bottom: 30px;
}
.work .work-info .work-info-subtitle{
	margin-bottom: 40px;
}
.work .work-info .item2{
	padding: 15px;
	font-weight: 300;
}
.work .work-info .item2 .item2-title{
	font-size: 1.2rem;
	font-weight: 500;
	display: block;
	margin: 10px 0 5px;
}
.work .work-info .info-close{
	display: inline-block;
	margin-top: 50px;
}

/*=page about=======*/
.about .section1 .wrapper{
	padding: 0 0 50px;
}
.about .section1 h1{
	font-size: 3rem;
	font-weight: 300;
}
.about .section2{
	background: #666;
}
.about .main-pic{
	width: 100%;
	max-width: 100%;
}
.about .section3 .wrapper{
	padding: 50px 0;
}
.about .section3 h2{
	font-size: 2.4rem;
	font-weight: 300;
	margin-bottom: 100px;
}
.about .section3 .item{
	padding: 10px;
}
.about .section3 .item h3{
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 20px;
}
.about .section3 .item .des{
	font-weight: 300;
}
.about .section4 .wrapper{
	padding: 100px 0;
}
.about .section4 h2{
	font-size: 2.6rem;
	font-weight: 600;
	color: #E62124; 
}
.about .section4 .subtitle{
	font-size: 1.3rem;
	font-weight: 300;
	margin-bottom: 40px;
}
.about .section4 .item2{
	padding: 15px;
}
.about .section4 .item2 .inner{
	min-height: 210px;
	padding: 25px;
	color: #FFF;
	background: #3D3A39;
}
.about .section4 .item2 .inner2{
	min-height: 210px;
	padding: 25px;
	color: #FFF;
	background: #E62124;
}
.about .section4 .item2 h3{
	font-size: 1.3rem;
	margin-bottom: 0;
}
.about .section4 .item2 h3 span{
	font-size: 1.3rem;
	opacity: 0.3;
}
.about .section4 .item2 .subtitle2{
	font-size: 1.3rem;
	font-weight: 300;
	margin-bottom: 10px;
}
.about .section4 .item2 .des{
	font-weight: 300;
	font-size: 1rem;
}
.about .copyright{
	font-size: 0.6rem;
	margin: 0 0 50px;
}


/*=page result=======*/
.contact .section1 .wrapper{
	padding: 0 0 120px;
	max-width: 600px;
}
.contact .section2 .wrapper,
.contact .section3 .wrapper{
	padding: 0 0 120px;
	max-width: 920px;
}
.contact h2{
	font-size: 3rem;
	font-weight: 300;
}
.contact .txt{
	font-size: 1.3rem;
	font-weight: 300;
}
.contact form,
.contact .addressbox{
	margin-top: 100px;
}
.contact .addressbox img{
	opacity: 1;
	transition: opacity 0.6s;
}
.contact .addressbox img:hover{
	opacity: 0.7;
}
.contact h3{
	font-size: 2.2rem;
	font-weight: 300;
}
.contact .txt2{
	font-size: 1.3rem;
	font-weight: 300;
	margin-top: 10px;
}
.contact .copyright{
	font-size: 0.6rem;
	margin: 0 0 50px;
}

/*=[footer]=========*/
footer{

}
footer .wrapper{
	max-width: 814px;
	border-top: 1px #42373C solid;
	padding: 40px 0;
	margin-top: 40px;
	text-align: center;
}
footer .info{
	font-size: 0.8rem;
	line-height: 1.2rem;
	margin-bottom: 10px;
}
footer .info span{
	font-size: 0.8rem;
	line-height: 1.2rem;
}
footer .copyright, footer .copyright span{
	font-size: 0.8rem;
	line-height: 1.2rem;
}

#scrollup{
	position: fixed;
	right: 20px;
    bottom: 20px;
	z-index:20;
	display: none;
	width: 48px;
	height: 48px;
	background: url(../images/btn-totop.jpg) center center no-repeat;
	cursor:pointer;
}


/*=[common]=========*/
label{
	font-size: 16px;
	color: #000;
}
input, textarea, select{
	width: 100%;
	background: #FFF;
	box-sizing: border-box;
	padding: 8px;
	margin-bottom: 30px;
	border-radius: 0;
	border: none;
	border-bottom: 1px #919192 solid;
	box-sizing: border-box;
	resize: none;
}
input[type=radio],input[type=checkbox]{
	width: initial;
	margin-bottom: 0;
}
input[type=submit],input[type=button]{
	color: #FFF;
	border: none;
	background: #919192;
	cursor: pointer;
	max-width: 212px;
	text-align: center;
	padding: 12px;
}
input[type=submit]:hover, input[type=button]:hover{
	background: #C2152B;
}
input[type=reset]{
	color: #999;
	border: 1px #CCC solid;
	background: #FFF;
	cursor: pointer;
}
input[type=reset]:hover{
	background: #CCC;
}
select{
	appearance: none;
	-moz-appearance: none; /* Firefox */
	-webkit-appearance: none;
	background: url(../images/select-arrow.png) #919192 right center no-repeat;
	background-size: auto 100%; 
}
.radio-wrapper{
	display: inline-block;
	margin: 20px 20px 0 0;
}
.checkbox-wrapper{
	display: inline-block;
	min-width: 160px;
	margin: 0 10px 0 0;
}
.checkbox-group{
	margin-bottom: 20px;
}

.pad, .mobile{display: none !important;}
.cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: -100vw;
	background: rgba(0,0,0, 1);
	z-index: 999;
	transition: right 1s;
}
.cover.in{
	right: 0;
}
.cover.in.remove{
	display: none;
}
.cover2{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0, 0.9);
	z-index: 10;
	display: none;
}
/*
.cover .alert{
	position: absolute;
	width: 400px;
	height: 300px;
	padding: 30px 20px;
	text-align: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #FFF;
	z-index: 100;
}
.cover .alert .title{
	color: #3DB9AE;
	font-size: 22px;
	margin: 10px 0;
}
.cover .alert .txt{
	padding: 10px 0;
}
.cover .alert .btn-close{
	position: absolute;
	font-size: 26px;
	top: 10px;
	right: 10px;
	z-index: 100;
	color: #3DB9AE;
}
.cover .alert .btn{
	width: 200px;
}
*/
.btn{
	display: inline-block;
	padding: 15px 0;
	min-width: 130px;
	text-align: center;
	line-height: 14px;
	border: 1px #919192 solid;
}
.btn:hover{
	color: #FFF;
	background: #CB1525;
	border: 1px #CB1525 solid;
}
.btn-back{
	display: inline-block;
	margin: 30px 0;
	text-decoration: underline!important;
}
.btn-back:hover{

}
.btn-donate{
	width: 300px;
	border: none;
	color: #FFF;
	background-color: #7CB9CF;
}

.no-gap{margin: 0;}

.pages{
	margin: 30px 0;
	text-align: center;
}
.pages a{
	display: inline-block;
	color: #000;
	width: 10px;
	margin: 0 5px;
	box-sizing: border-box;
	text-align: center;
	font-size: 0.8rem;
}
.pages a.current, .pages a:hover{
	color: #D0303A; 
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1; /*For IE 6&7 only*/
}


@media screen and (max-width: 1190px) {
	.index .w3-col.m20{width:25%}
}
@media screen and (max-width: 960px) {

}
@media screen and (max-width: 767px) {
	.desktop{ display: none !important;}
	.mobile{ display: block !important;}
	.mobile-block{display: block !important;}

	.wrapper{
		padding: 20px!important;
	}
	header .wrapper{

	}
	header .navbar .slogan{
		display: none;
	}
	header .navbar nav{
		position: absolute;
		top: 70px;
		left: -20px;
		width: 100vw;
		height: 0;
		box-sizing: border-box;
		z-index: 100;
		transition: height 0.5s;
		background: #FFF;
		overflow: hidden;
	}
	header .navbar nav.open{
		height: 136px;
	}
	header .navbar nav ul li{
		display: block;
		padding: 10px;
		border-bottom: 1px #DDD solid;
		text-align: center;
	}
	header .navbar nav ul li:first-child{
		border-top: 1px #DDD solid;
	}
	header .navbar nav ul li:last-child{
		padding-right: 10px;
	}
	header .navbar .nav_icon{display:block;}

	footer{

	}
	.index .w3-col.m20{width:50%}

	.work .btn-detail{
		position: fixed;
		left: 20px;
		bottom: 20px;
	}
	.work .work-info{
		position: fixed;
		width: 100%;
		height: 100vh;
		box-sizing: border-box;
		padding: 20px 0;
		left: 0;
		bottom: 0;
		background: #FFF;
		z-index: 10;
		overflow-y: scroll;
		display: none;
	}
	.work .work-info .work-info-title{
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	.work .work-info .work-info-subtitle{
		margin-bottom: 20px;
	}
	.work .work-info .item2{
		padding: 15px;
		font-weight: 300;
	}
	.work .work-info .item2 .item2-title{
		font-size: 1.2rem;
		font-weight: 500;
		display: block;
		margin: 10px 0 5px;
	}
	.work .work-info .info-close{
		display: inline-block;
		margin-top: 50px;
	}


	.about .section1 h1{
		font-size: 1.4rem;
		font-weight: 300;
	}
	.about .section2{
		
	}
	.about .section3 h2{
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
	.about .section3 .item h3{
		font-size: 1.3rem;
	}
	.about .section4 h2{
		font-size: 1.4rem;
	}
	.about .section4 .subtitle{
		font-size: 1rem;
		margin-bottom: 20px;
	}

	.contact .section1 .wrapper,
	.contact .section2 .wrapper,
	.contact .section3 .wrapper{
		padding: 0 20px 60px!important;
	}
	.contact h2{
		font-size: 2rem;
		font-weight: 300;
	}
	.contact .txt{
		font-size: 1.3rem;
		font-weight: 300;
	}
	.contact h3{
		font-size: 1.8rem;
	}
	.contact form,
	.contact .addressbox{
		margin-top: 50px;
	}
	.contact .txt2{
		font-size: 1rem;
	}
}


@media screen and (max-width: 600px) {

}
