@charset "UTF-8";
/* CSS Document */
html, body {
  width: 100vw;
  overflow-x: hidden;
  font-family: 'Noto Sans TC', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}
body {
  padding: 80px 0 0 0;
}
@media (max-width: 991px) {
  body {
    padding: 64px 0 0 0;
  }
}
* {
  backface-visibility: hidden;
}
a, a:hover {
  text-decoration: none;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.navbar-custom {
  padding: 0;
}
.navbar-custom .inner {
  position: relative;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
}
.navbar-custom .inner::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #302b44;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  -moz-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  display: block;
}

.navbar-custom .inner.nav-bg::before {
	content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #302b44;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  -moz-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  display: block;
	background-image: url(../img/index/nav-bg.png);
	background-position: left center;
	background-repeat: no-repeat;
	-moz-background-size:contain;
-webkit-background-size:contain;
-o-background-size:contain;
background-size:contain;
}

.navbar-custom .inner .container {
  margin-top: -10px;
}
.navbar-custom .navbar-brand img {
  height: 40px;
}
.navbar-custom .nav-link {
  color: #fff;
  font-weight: 450;
  font-size: 0.93rem;
  letter-spacing: 1px;
  padding: 0 1.2rem !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar-custom .nav-link:hover {
  color: #00ab71;
}
.navbar-custom .nav-link.alt-link {
  transform: scale(1.5);
  padding: 0 !important;
}
@media (max-width: 991px) {
  .navbar-custom .inner {
    height: 80px;
  }
  .navbar-custom .navbar-brand img {
    height: 30px;
  }
}
.navbar-custom .navbar-toggler {
  color: #fff;
  font-size: .8rem;
  text-align: center;
  padding: 0.4rem;
  background-color: transparent;
  border-radius: 0;
}
.navbar-custom .navbar-toggler span {
  font-size: .75rem;
  font-weight: 500;
  display: block;
  padding-top: .2rem;
}
.mobile-nav {
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(48, 43, 68, .95);
  transform: scale(1.1);
  opacity: 0;
  backdrop-filter: blur(5px);
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
body.nav-open .mobile-nav {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.mobile-nav .navbar-toggler {
  position: absolute;
  z-index: 99;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: .8rem;
  text-align: center;
  padding: 0.4rem;
  background-color: transparent;
  border-radius: 0;
}
.mobile-nav .navbar-toggler span {
  font-size: .75rem;
  font-weight: 500;
  display: block;
  padding-top: .2rem;
}
.mobile-nav .mobile-inner {
  width: calc(100vw - 100px);
  height: auto;
  margin: 0 auto;
  display: block;
}
.mobile-nav .mobile-inner a {
  width: 100%;
  padding: 1rem 0;
  display: block;
  border-bottom: solid 1px rgba(255, 255, 255, .2);
  font-size: .95rem;
  font-weight: 450;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
}
.mobile-nav .mobile-inner a:hover {
  color: #fff;
}
.mobile-nav .mobile-inner a span {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  display: block;
  font-size: .45rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .5);
  transform: translateY(-50%) scaleY(0.95);
}
.masthead {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  z-index: 2;
}
.masthead video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}
.masthead .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: transparent;
  /*background-color: rgba(0,0,0, .15);*/
  background-image: url(../img/scan.gif);
  mix-blend-mode: color-burn;
  opacity: .1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}
.masthead .dc1 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  transform-origin: right top;
  /*background-color: rgba(0,0,0, .15);*/
  background-image: url(../img/banner-dc1.png);
  -moz-background-size: contain;
  -webkit-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
}
.masthead .dc2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  transform-origin: left bottom;
  /*background-color: rgba(0,0,0, .15);*/
  background-image: url(../img/banner-dc2.png);
  -moz-background-size: contain;
  -webkit-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.masthead .slogan {
  width: 55%;
  height: auto;
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.masthead .slogan img {
  filter: drop-shadow(3px 3px 10px #000000);
  -webkit-filter: drop-shadow(3px 3px 10px #000000);
  -moz-filter: drop-shadow(3px 3px 10px #000000);
}
@media (max-width: 991px) {
  .masthead {
    height: calc(100vh - 64px);
  }
  .masthead .slogan {
    width: 80%;
    top: 40%;
  }
  .masthead .dc1, .masthead .dc2 {
    transform: scale(2);
  }
  
  .masthead .cover {
	  background-image: none;
	  background-color: rgba(0,0,0,1);
  }
}
.main-content {
  width: 100%;
  background-color: #fff;
  z-index: 1;
  /*margin-top: -15%;*/
  padding-top: 3%;
}
.parallax {
  margin: 0;
  width: 100%;
  /* Create the parallax scrolling effect */
  background-position: center top;
  background-repeat: no-repeat;
  -moz-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-attachment: scroll;
}
@media (max-width: 991px) {
  .main-content {
    /*margin-top: -20%;*/
    padding-top: 5%;
  }
}
.bg1 {
  background-image: url(../img/bg1.png);
}
.main-content .section {
  width: 100%;
  margin: 0 0 4rem 0;
}

@media (max-width: 991px) {
	.main-content .section {
  margin: 0 0 6rem 0;
}
}
.main-content .section h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3e3a39;
  letter-spacing: 3px;
}
a.index-prom-link .promo-thumb {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  background-color: #00ab71;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.index-prom-link:hover .promo-thumb {
  opacity: .65;
}
a.index-prom-link .promo-title {
  display: flex;
  align-items: center;
}

a.index-prom-link .promo-title h3 {
  font-family: 'Noto Serif TC', serif;
  font-weight: 600;
  font-size: 1.35rem;
  display: inline-block;
  margin: 0;
  color: #3b2875;
  padding: 0 1rem 0 0;
  letter-spacing: .1rem;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.index-prom-link .promo-title span {
  font-size: .95rem;
  display: inline-block;
  font-weight: 400;
  color: #3e3a39;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.index-prom-link:hover .promo-title h3, a.index-prom-link:hover .promo-title span {
  color: #00ab71;
}

.more-btn {
	font-size: .95rem;
	font-weight: 500;
	transform: scaleY(.95);
	color: #3e3a39;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.more-btn:hover {
	color: #00ab71;
}

.more-btn span {
	display: inline-block;
	padding: 0 0 0 0.5rem;
}

.more-btn:hover span {
	animation: sg 1s ease-in infinite;
}

 @keyframes sg {
 0% {
 transform: translateX(0);
}
	 50% {
 transform: translateX( 0.5rem);
}
 100% {
 transform: translateX(0);
}
}

.index-news-list {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: .65rem .35rem;
	font-size: 1.05rem;
	font-weight: 450;
	color: #3b2875;
	border-bottom: solid 1px rgba(35, 24, 21, .1);
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.index-news-list::before {
	content: '';
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(35, 24, 21, .05);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.index-news-list span {
	display: inline-block;
	font-size: .95rem;
	font-weight: 400;
	padding: 0 1rem 0 0;
	color: #3e3a39;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.index-news-list:hover, .index-news-list:hover span {
	color: #00ab71;
}

.index-news-list:hover::before {
	opacity: 1;
}

@media (max-width: 991px) {
	.index-news-list {
		display: block;
		font-size: .95rem;
	}
	.index-news-list span {
		height: 100%;
		display: block;
		margin-bottom: .3rem;
		font-size: .8rem;
	}
}

.main-p {
	font-weight: 400;
	font-size: .95rem;
	color: #3e3a39;
	line-height: 1.8rem;
	text-align: justify;
}

.footer {
	margin: 6rem 0 0 0 !important;
	padding: 4rem 2rem;
	background-color: rgba(23,120,115, .95);
	-webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.footer-link a {
	font-size: .95rem;
	font-weight: 400;
	color: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
	position: relative;
	display: block;
}

.footer-link a::before {
	content: '';
	position: absolute;
	z-index: 2;
	left: 0;
	top: 50%;
	width: 1px;
	height: 50%;
	display: block;
	background-color: #fff;
	transform: translateY(-50%);
}

.footer-link a:hover {
	opacity: .5;
}

.footer-info {
	font-size: .95rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
}

.footer-copy {
	font-size: .7rem;
	font-size: 400;
	color: rgba(255,255,255, .75);
	text-align: center;
}

.page-title {
	position: relative;
	display: block;
	width: 100%;
	height: 200px;
	-moz-background-size:cover;
-webkit-background-size:cover;
-o-background-size:cover;
background-size:cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #000;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

@media (max-width: 991px) {
	.page-title {
		height: 150px;
	}
}

.page-title .overlay {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .5);
	mix-blend-mode: multiply;
}

.page-title .title {
	position: absolute;
	z-index: 2;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-family: 'Noto Serif TC', serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: #fff;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.85);
}

.page-topic h3 {
	position: relative;
	font-family: 'Noto Serif TC', serif;
	font-weight: 700;
	font-size: 1.35rem;
	letter-spacing: .2rem;
	color: #3e3a39;
	padding: 0 0 .75rem 0;
	margin: 0;
}

.page-topic h3::before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: #999;
}

.page-topic h3::after {
	content: '';
	position: absolute;
	z-index: 2;
	width: 150px;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: #00ab71;
}

.page-topic h5 {
	font-weight: 600;
	font-size: 1.05rem;
	color: #3e3a39;
	margin: 0 0 .5rem 0;
}

.page-topic h4 {
	font-weight: 600;
	font-size: 1.35rem;
	color: #3e3a39;
	margin: 0 0 .5rem 0;
}

.page-topic h4.pp {
	font-family: 'Noto Serif TC', serif;
	font-weight: 600;
	font-size: 1.35rem;
	color: #3b2875;
	margin: 0 0 .75rem 0;
}

.page-topic p {
	font-weight: 400;
	font-size: .95rem;
	color: #3e3a39;
	line-height: 1.5rem;
	text-align: justify;
}

.high-inner {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border: solid 3px rgba(0,0,0,.15);
	padding: 0;
}

.high-inner.grey {
	border: none;
	background-color: rgba(0,0,0,.05);
}

.high-inner .texts {
	padding: .75rem 1.5rem;
}

.high-inner h5 {
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: .1rem;
	color: #3e3a39;
	text-align: left;
	margin: 0;
}

.high-inner p {
	font-weight: 400;
	font-size: .95rem;
	color: #3e3a39;
	text-align: justify;
	margin: 0;
}

.high-inner .icon {
	width: 45%;
	margin: 0 auto;
	padding: 1.5rem 0 .5rem 0;
	display: block;
}

.select-css {
	display: block;
	font-size: 1.1rem;
	font-weight: 500;
	color: #31416d;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #31416d;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2331416d%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
 display: none;
}
.select-css:hover {
	border-color: #888;
}
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}
.select-css option {
	font-weight: normal;
}

.portfolio-item {
	right: 0;
	margin: 0 0 15px
}
.portfolio-item .portfolio-link {
	position: relative;
	display: block;
	margin: 0 auto;
	cursor: pointer
}
.portfolio-item .portfolio-link .portfolio-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0;
	background-color: rgba(0,171,113,.9);
	background-blend-mode: overlay;
}
.portfolio-item .portfolio-link .portfolio-hover:hover {
	opacity: 1
}

.portfolio-item .portfolio-link .promo-thumb {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 55.5%;
  background-color: #00ab71;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
	font-size: 20px;
	position: absolute;
	top: 50%;
	width: 100%;
	height: 20px;
	margin-top: -12px;
	text-align: center;
	color: #fff
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
	margin-top: -12px
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3, .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
	margin: 0
}
.portfolio-item .portfolio-caption {
	width: 100%;
	margin: 0 auto;
 padding: 1rem 0 1.2rem 0;
	text-align: center;
	background-color: #f0f0f0
}
.portfolio-item .portfolio-caption h4 {
 margin: 0 0 .4rem;
	text-transform: none;
	font-size: 1.25rem;
	font-weight: 700;
	color: #3b2875;
	font-family: 'Noto Serif TC', serif;
}
.portfolio-item .portfolio-caption p {
 font-size: .85rem;
	margin: 0;
}

.case-title {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.case-title .case-pic {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 47.5%;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width:767px) {
	.case-title .case-pic {
		padding-bottom: 80%;
	}
}

.case-title2 {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	height: 140px;
	margin-top: -20px;
}

.case-title2::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #00ab71;
	-moz-background-size:contain;
-webkit-background-size:contain;
-o-background-size:contain;
background-size:contain;
  background-position: right center;
  background-repeat: no-repeat;
	background-image: url("../img/page/tbg.png");
	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
}


.case-title2 h1 {
	    font-family: 'Noto Serif TC', serif;
    font-weight: 700;
    font-size: 2.5rem;
    display: inline-block;
    margin: 0;
	color: #fff;
}

.case-title2 span {
	font-weight: 400;
	display: inline-block;
	padding: 0 0 0 2rem;
	color: #fff;
}

@media (max-width:767px) {
	.case-title2 h1 {
		font-size: 2rem;
	}
	.case-title2 span {
	font-weight: 400;
	display: block;
	padding: 0;
	margin: .5rem 0 0 0;
	width: 100%;
}
}


.case-title3 {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
}

.case-title3 h1 {
	    font-family: 'Noto Serif TC', serif;
    font-weight: 700;
    font-size: 2.1rem;
    display: inline-block;
    margin: 0;
	color: #3b2875;
}

.case-title3 span {
	font-weight: 400;
	display: inline-block;
	padding: 0 0 0 2rem;
	color: #333;
}

@media (max-width:767px) {
	.case-title3 {
		display:block;
	}
	.case-title3 h1 {
		font-size: 1.8rem;
	}
	.case-title3 span {
		font-size:.95em;
	font-weight: 400;
	display: block;
	padding: 0;
	margin: .5rem 0 0 0;
	width: 100%;
}
}

.timeline {
	position: relative;
	width: 100%;
	height:100%;
	min-height: 500px;
	padding-left: 30px;
}

.timeline::before {
	content:'';
	position:absolute;
	z-index: 0;
	height: 100%;
	width: 2px;
	background-color: #00ab71;
	left: 1px;
	top: 8px;
}

.year-dot {
	position:relative;
	margin-bottom: 4rem;
}

.year-dot::before {
	content:'';
	position:absolute;
	z-index: 1;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #00ab71;
	left: -19px;
	top: .4rem;	
}

.year-dot h4 {
	font-family: 'Noto Serif TC', serif;
    font-weight: 600;
	font-size: 1.3rem;
	color: #00ab71;
	line-height: 1.3rem;
}

.process-bl {
	margin: 0 -3px;
}

.process-bl > .col-md-6 {
	padding: 0 3px;
}

.process-inner {
	width: 100%;
	height: 100%;
	padding: 0;
	background-color: rgba(0,0,0, .05)
}

.process-pic {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 65%;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.process-inner h5 {
	display:flex;
	width: 90%;
	margin: 1rem auto;
	font-size: .95rem;
	font-weight: 400;
	color: #3e3a39;
}

.process-inner h5 span {
	display:inline-block;
	padding-right: 1rem;
	font-weight: 600;
	flex-shrink: 0;
}


.detail {
	margin: 2rem 0;
}

.detail h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #3e3a39;
}

.detail ul {
	list-style-type: none;
	padding: 0;
	margin-bottom: 0;
}

.detail ul li {
	font-size: .95rem;
	font-weight: 400;
	display:block;
	padding: .6rem;
	border-top: solid 1px #DDD;
	display: flex;
}

.detail ul li span {
	display:inline-block;
	padding-right: 1rem;
	font-weight: 600;
	flex-shrink: 0;
}

.detail ul li:last-child {
	border-bottom: solid 1px #DDD;
}

@media (max-width:767px) {
	.detail ul li {
		font-size: .9rem;
	}
	
	.detail ul.left-ul > li:last-child {
	border-bottom: none;
}

}

.sqr {
	background-color: rgba(0,0,0, .05);
	padding: 1rem;
}

.page-icon {
	display:block;
	width: 100%;
	padding-bottom: 100%;
	-moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.btn-sg {
	font-size: .95rem !important;
	font-weight: 500;
	color: #fff;
	background-color: #3b2875;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-sg:hover {
	opacity: .65;
	color: #fff;
}

.btn-s {
	margin: 0 -2px;
}

.btn-s > .col-12 {
	padding: 0 2px;
}

.map-frame iframe {
	border: solid 1px #fff;
}

@media (max-width:767px) {
	.map-frame {
		min-height: 300px;
}
}

.side-menu {
	width: 100%;
}

.side-menu li a {
	width: 100%;
	background-color: transparent;
	color: #3b2875;
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: 1px;
	padding: .65rem 1rem;
	display: block;
	-webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.side-menu li a:hover {
	background-color: #eee;
}

.side-menu li a.active, .side-menu li a.active:hover {
	color: #fff;
	background-color: #3b2875;
}

.side-menu li {
	border-top: solid 1px #DDD;
}

.side-menu li:last-child {
	border-bottom: solid 1px #DDD;
}

.inner-pic {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 66.7%;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


.page-link {
	position: relative;
	display: block;
    padding:.5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #31416d;
	background-color: #fff;
	border: 1px solid #ddd
}
.page-link:hover {
	z-index: 2;
	color: #0056b3;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6
}
.page-link:focus {
	z-index: 2;
	outline: 0;
    box-shadow:0 0 0 .2rem rgba(0,123,255,.25)
}
.page-item:first-child .page-link {
	margin-left: 0;
border-top-left-radius:0;
border-bottom-left-radius:0
}
.page-item:last-child .page-link {
border-top-right-radius:0;
border-bottom-right-radius:0
}
.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: #302b44;
	border-color: #302b44
}
.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6
}
.pagination-lg .page-link {
padding:.75rem 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5
}
.pagination-lg .page-item:first-child .page-link {
border-top-left-radius:0;
border-bottom-left-radius:0
}
.pagination-lg .page-item:last-child .page-link {
border-top-right-radius:0;
border-bottom-right-radius:0
}
.pagination-sm .page-link {
padding:.25rem .5rem;
font-size:.875rem;
	line-height: 1.5
}
.pagination-sm .page-item:first-child .page-link {
border-top-left-radius:0;
border-bottom-left-radius:0
}
.pagination-sm .page-item:last-child .page-link {
border-top-right-radius:0;
border-bottom-right-radius:0
}

.prot {
	width: 100%;
 padding: 0 .8rem;
}
.prot p.prot-inner {
	background: #302b44!important;
	color: #fff;
 font-size: .95rem !important;
	font-weight: 700;
 padding: .3rem 0;
}
.prot span {
	font-weight: 400;
 padding-right: .5rem;
}

.post-preview a .post-title {
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
	-webkit-transition: all ease .25s;
	transition: all ease .25s;
	font-family: 'Noto Serif TC', serif;
}
.post-preview a .post-text {
 font-size: .95rem;
	line-height: 1.5rem;
	font-weight: 400;
	color: #666;
	-webkit-transition: all ease .25s;
	transition: all ease .25s;
	text-align: justify;
}
.post-preview a:hover .post-title, .post-preview a:hover .post-text {
	color: #00ab71;
}
.post-meta {
 font-size: .7rem;
	font-weight: 600;
	color: #666;
 letter-spacing: .1rem;
 margin-bottom: .5rem;
	display: flex;
	align-items: center;
}
.post-meta span {
	font-weight: 500;
    padding: .3rem .5rem;
	letter-spacing: 0;
	display: inline-block;
	margin: 0 1rem 0 0;
	color: #fff;
}

.post-meta span.s1 {
	background-color: crimson;
}

.post-meta span.s2 {
	background-color: darkblue;
}

.post-meta span.s3 {
	background-color: darkslategrey;
}

.post-list hr {
	margin: 2rem 0;
}

h1.post-title {
	font-size: 2.5rem;
	line-height: 4rem;
	font-weight: 700;
	color: #3b2875;
	margin-bottom: 1rem;
	-webkit-transition: all ease .25s;
	transition: all ease .25s;
	font-family: 'Noto Serif TC', serif;
}

.contact-text h5 {
	font-size: 1.1rem;
	color: #333;
	font-weight: 700;
}
.contact-title {
	font-weight: 300;
	margin-right: 1rem;
}
.map {
	width: 100%;
	height: 20rem;
}
.form-bg {
	background-color: rgba(0,0,0,0.05);
}
 @media (max-width:767px) {
.contact-text h5 {
 font-size: .85rem;
}
.map {
	height: 15rem;
}
}


.form-control {
	display: block;
	font-size: 1.1rem;
	font-weight: 500;
	color: #31416d;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #31416d;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}
 form .form-control::-webkit-input-placeholder {
 color: #31416d;
}
 form .form-control::-moz-placeholder {
 color: #31416d;
}
form .form-control:-ms-input-placeholder {
 color: #31416d;
}
form .form-control:placeholder {
 color: #31416d;
}
form lable {
	color: #ddd;
}
h4.title {
	color: #3b2875;;
	font-weight: 700;
	font-size: 1.6rem;
	font-family: 'Noto Serif TC', serif;
}
.btn {
 padding: .5rem 1rem;
	font-size: 50%;
	text-transform: uppercase;
 letter-spacing: .1rem;
	border-radius: 0;
}
.btn-primary {
	color: #31416d;
	background-color: #fff;
	border: solid 1px #31416d;
}
.btn-primary:hover {
	color: #FFF;
	background-color: #31416d;
	border: solid 1px #31416d;
}
.btn-primary:focus {
	background-color: #31416d;
	color: #fff
}
.btn-primary:active {
	background-color: #31416d!important
}
.btn-primary2 {
	color: #fff;
	background-color: #31416d;
	border: solid 1px #31416d;
	font-size: 1.1rem;
}
.btn-primary2:hover {
	color: #31416d;
	background-color: #fff;
	border: solid 1px #31416d;
}
.btn-primary2:focus {
	background-color: #fff;
	color: #31416d
}
.btn-primary2:active {
	background-color: #31416d!important
}

#loading {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: rgba(255, 255, 255, 0.95);
}
 @keyframes lds-rolling {
 0% {
 -webkit-transform: translate(-50%, -50%) rotate(0deg);
 transform: translate(-50%, -50%) rotate(0deg);
}
 100% {
 -webkit-transform: translate(-50%, -50%) rotate(360deg);
 transform: translate(-50%, -50%) rotate(360deg);
}
}
@-webkit-keyframes lds-rolling {
 0% {
 -webkit-transform: translate(-50%, -50%) rotate(0deg);
 transform: translate(-50%, -50%) rotate(0deg);
}
 100% {
 -webkit-transform: translate(-50%, -50%) rotate(360deg);
 transform: translate(-50%, -50%) rotate(360deg);
}
}
.lds-rolling {
	position: relative;
}
.lds-rolling div, .lds-rolling div:after {
	position: absolute;
	width: 86px;
	height: 86px;
	border: 6px solid #00ab71;
	border-top-color: transparent;
	border-radius: 50%;
}
.lds-rolling div {
	-webkit-animation: lds-rolling 1s linear infinite;
	animation: lds-rolling 1s linear infinite;
	top: 100px;
	left: 100px;
}
.lds-rolling div:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.lds-rolling {
	width: 200px !important;
	height: 200px !important;
	-webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
	transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 0px; /* Place the button at the bottom of the page */
    right: 0px; /* Place the button 30px from the right */
    z-index: 9999; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #00ab71; /* Set a background color */
    color: #fff; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px 15px 10px 15px;
    border-radius: 0px; /* Rounded corners */
    font-size: 1rem; /* Increase font size */
}

#myBtn:hover {
	color:#FFF;
    background-color: #00ab71; /* Add a dark-grey background on hover */
}