/*google fonts 仿宋體*/
@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);
/*font-family: ‘cwTeXFangSong’, serif;*/
/*google fonts 思源黑體*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*font-family: ‘Noto Sans TC’, sans-serif;*/
/*adobe 字型 思源宋體*/
@import url("https://use.typekit.net/uvj6ngt.css");


body {
  font-family: source-han-serif-tw-subset, sans-serif;
  color: #2a2c39;
	position: relative;
}

a {
  color: #005bc0;
  text-decoration: none;
}

a:hover {
  color: #ccae7a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
}

/*--          # Back to top button          --*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1a4c6f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 2rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #86a39d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--          # button          --*/
.btn-quickbuy {
  visibility: hidden;
}




@media screen and (max-width:576px) {
	.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 996;
  background: #1a4c6f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
	.btn-quickbuy {
		
  visibility: visible;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:linear-gradient(to right, #1a4c6f, #334da7);
  color: #fff;
  width: calc(100% - 30px);
  height: 50px;
  border-radius: 8px;
  transition: all 0.4s;
	font-size: 1.125rem;
		letter-spacing: .2rem;
	line-height: 1;
	text-align: center;
	padding: 0px 5px;
}
	.btn-quickbuy:hover {
  background:linear-gradient(to right,#500097, #1a4c6f);
  color: #FFF;
}
}

/*--          # Disable AOS delay on mobile          --*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--          # Header          --*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(47, 47, 47, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background:linear-gradient(to right,rgba(21, 66, 105, 0.9),rgba(118, 153, 151, 0.7));
}

#header .logo img {
  padding: 0;
  margin: 0;
  height: 40px;
}

@media screen and (max-width:576px) {
	#header .logo img {
  padding: 0;
  margin: 0;
  height: 30px;
}
}
/*--          # Navigation Menu          --*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 1.5rem;
  color: #0e2e59;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  border-bottom: 1px solid #FFF;
	color: #FFF;
}
@media (min-width: 993px) {
.navbar a.linkMark {
	background:linear-gradient(to right bottom, rgba(255,255,255,.6), rgba(255,255,255,.2));
}
.navbar a.linkMark:hover,
.navbar li:hover>a.linkMark,
.navbar .active.linkMark
{
	background:linear-gradient(to bottom, rgba(255,255,255,.05), rgba(255,255,255,.4));
}



}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background:linear-gradient(to right bottom,  rgba(84, 122, 144, 0.9), rgba(47, 47, 47, 0.9));
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 25px;
	color: #2f2f2f;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 25px;
  bottom: 15px;
  left: 25px;
  padding: 10px 0;
  border-radius: 0;
/*  background-color: rgba(193, 193, 195, 1);*/
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	border-radius: 2px;
  padding: 10px 20px;
  margin: 5px;
  font-size: 1.25rem;
  color: #2f2f2f;
	display: block;
	text-align: center;
	background-color: rgba(255,255,255,.8);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #FFF;
	background-color: rgba(40,31,106,.5);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--          # Hero Section          --*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
	background: url("../img/VI-4.mp4") top center no-repeat;
	background-size: cover;
  padding: 0;
	height: 100vh;

}

.hero-bg-video {
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

#hero .carousel-container {
/*
	top:0;
  left:0;
*/
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}
#hero h1.text-vc img {
	position: absolute;
	height: 80%;
	top: 10%;
	left: 49%;
}
#hero h3.text-vll img {
	position: absolute;
	left: 5%;
	top: 40%;
	width: 14%;
  z-index: 2;
}
#hero h3.text-vlr img {
	position: absolute;
	letter-spacing: .8rem;
	right: 5%;
	bottom: 9%;
	width: 7%;
  z-index: 2;
}




@media (max-width: 1400px) {

}
@media (max-width: 1200px) {
	
}
@media (max-width: 996px) {
	
}

@media (max-width: 768px) {
  #hero h1.text-vc img {
	position: absolute;
	height: calc(80% - 20px);
	top: 70px;
	left: 49%;
}
#hero h3.text-vll img {
	position: absolute;
	left: 5%;
	top: 40%;
	width: 16%;
  z-index: 2;
}
#hero h3.text-vlr img {
	position: absolute;
	letter-spacing: .8rem;
	right: 5%;
	bottom: 9%;
	width: 9%;
  z-index: 2;
}
}

@media (max-width: 576px) {
   #hero h1.text-vc img {
	position: absolute;
	height: calc(70% - 20px);
	top: 90px;
	left: 47%;
}
#hero h3.text-vll img {
	position: absolute;
	left: 5%;
	top: 43%;
	width: 30%;
  z-index: 2;
}
#hero h3.text-vlr img {
	position: absolute;
	letter-spacing: .8rem;
	right: 5%;
	bottom: 130px;
	width: 15%;
  z-index: 2;
}
}

/*--          # Sections General          --*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 20px 0;
	min-height: 50px;
	text-align: center;
}

.section-title h2 {
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  padding: .1rem 0;
  margin: 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
	color: #FFF;
}
.section-title h3 {
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  padding: .1rem 0;
  letter-spacing: 2px;
  text-transform: uppercase;
	color: #FFF;
	display: inline-block;
}

.section-title .left-space {
	margin-left: 2rem;
	text-align: left;
}
.section-title .right-space {
	position: relative;
	text-align: right!important;
}

.team .section-title .right-space {
	margin-left: 240px;
}
.team .section-title .left-space {
	margin-left: 10%;
}
.team .section-title .right-space {
	background: linear-gradient(to right, #d6c9b2, #30687d); /* 漸層方向與顏色可調整 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 非必要，但加上較保險 */
  text-fill-color: transparent;
}
.team .section-title h3.right-space::after {
	content: "";
	position: absolute;
	width: 220px;
	background-color: #FFF;
	height: 1px;
	left: -240px;
	top:1.6rem;
}

@media (max-width: 768px) {
	section {
  padding: 30px 0;
  overflow: hidden;
}
	.section-title {
  padding-bottom: 10px 0;
	min-height: auto;
	text-align: center;
}
	.section-title h2 {
  font-size: 2.2rem;
  padding: .1rem 0;
  margin: 5px 0;
  letter-spacing: 2px;
}
.section-title h3 {
  font-size: 1.8rem;
  padding: .1rem 0;
  letter-spacing: 2px;
  text-transform: uppercase;
	color: #FFF;
	display: inline-block;
}

.section-title .left-space {
	margin-left: 2rem;
	text-align: left;
}
.section-title .right-space {
	position: relative;
	text-align: right!important;
}
	.team .section-title .right-space {
	margin-left: 200px;
		margin-right: 0;
}
.team .section-title .left-space {
	margin-left: 0;
}
	.team .section-title h3.right-space::after {
	content: "";
	position: absolute;
	width: 120px;
	background-color: #FFF;
	height: 1px;
	left: -120px;
	top:2rem;
}
}
@media (max-width: 576px) {
	.team .section-title .right-space {
		margin-left: 0;
		margin-right: 0;
		text-align: center!important;
}
	.team .section-title h3 {
		display: none;
	}
	.team .section-title h3.right-space::after {
	content: none;
}
	.team .section-title h3 {
		text-align: center;
  font-size: 2rem;
	}
}



.about {
  background:url("../img/about-bg.jpg") center top no-repeat;
  padding: 80px 0 60px 0;
	background-size: 100% 100%;
}
.about .section-title h2 {
	color: #1e3d70;
}
.about .section-title .left-space {
	margin-left: 20%;
}
.about .section-title .right-space {
	margin-left: 240px;
}
.about .section-title .right-space {
	background: linear-gradient(to right, #008599, #232783); /* 漸層方向與顏色可調整 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 非必要，但加上較保險 */
  text-fill-color: transparent;
}
.about .section-title h3.right-space::after {
	content: "";
	position: absolute;
	width: 120px;
	background-color: #7a2b7b;
	height: 1px;
	left: -140px;
	top:1.6rem;
}

.about .content {
	width: 85%;
	margin: 20px auto;
	font-size: 1.5rem;
	font-family: source-han-serif-tw-subset, sans-serif;
}

@media (max-width: 768px) {
	.about {
  background:url("../img/about-bg.jpg") center top no-repeat;
  padding: 60px 0 20px 0;
	background-size: 100% 100%;
}
.about .section-title h2 {
	color: #1e3d70;
}
.about .section-title .left-space {
	margin-left: 0%;
}
.about .section-title .right-space {
	margin-left: 70px;
	margin-right: 0px;
	text-align: right!important;
}
.about .section-title .right-space {
	background: linear-gradient(to right, #008599, #232783); /* 漸層方向與顏色可調整 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 非必要，但加上較保險 */
  text-fill-color: transparent;
}
.about .section-title h3.right-space::after {
	content: "";
	position: absolute;
	width: 60px;
	background-color: #7a2b7b;
	height: 1px;
	left: -70px;
	top:1.6rem;
}
	.about .content {
	width: 100%;
	margin: 10px auto;
	font-size: 1.375rem;
}
}
.sale-title {
}

.sale .section-title h2 {
	color: #0f315b;
}


.sub-title {
  margin: 1rem 0 2rem 0;
  font-size: 1.6rem;
  font-weight: 300;
	letter-spacing: .1rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
	text-align: center;
}

@media (max-width:768px) {

}
@media (max-width:576px) {
	
}

/*reason*/

.reason .section-title {
	margin-bottom: 20px;
}
.reason .section-title h3 {
	color: #0f315b;
}
.reason .section-title .left-space {
	margin-left: -20%;
	text-align: left;
	display: inline-block;
	position: relative;
}
.reason .section-title .right-space {
	margin-right: 25%;
	background: linear-gradient(to right, #008599, #232783); /* 漸層方向與顏色可調整 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 非必要，但加上較保險 */
  text-fill-color: transparent;
}
.reason .section-title h3.left-space::after {
	content: "";
	position: absolute;
	width: 120px;
	background-color: #194a6d;
	height: 1px;
	right: -140px;
	top:1.6rem;
}
@media (max-width: 768px) {
	.reason .section-title {
		text-align: left;
	}
	.reason .section-title .left-space {
	margin-left: 0px;
		margin-right: 120px;
}
.reason .section-title .right-space {
	margin-right: 0%;
}
.reason .section-title h3.left-space::after {
	content: "";
	position: absolute;
	width: 90px;
	background-color: #194a6d;
	height: 1px;
	right: -100px;
	top:1.4rem;
}
}
@media (max-width: 576px) {
	.reason .section-title {
		text-align: left;
	}
	.reason .section-title .left-space {
	margin-left: 0px;
		margin-right: 60px;
}
.reason .section-title .right-space {
	margin-right: 0%;
}
.reason .section-title h3.left-space::after {
	content: "";
	position: absolute;
	width: 70px;
	background-color: #194a6d;
	height: 1px;
	right: -70px;
	top:1.4rem;
}
	.reason .section-title h2 {
		font-size:2rem;
	}
}

.reason .reason-card {
	margin: 10px auto;
	text-align: center;
	font-family: source-han-serif-tw-subset, sans-serif;
}
.reason .reason-card h3 {
	color: #0f315b;
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: bold;
	margin: 20px 0;
}
.reason .reason-card p {
	font-size: 1.5rem;
	color: #0f315b;
	margin: 10px;
	text-align: left;
}

/*--          # Cta-a          --*/
.cta-a {
  background:url("../img/cta-a-bg.jpg") center bottom no-repeat;
  padding: 60px 0 80px 0;
	background-size: 100% 100%;
}

.cta-a h3 {
	text-align: center;
  font-size: 1.8rem;
	line-height: 2.6rem;
  font-weight: 700;
	font-family: source-han-serif-tw-subset, sans-serif;
	letter-spacing: .2rem;
	color: #2f3c58;
}

@media (max-width: 768px) {
 .cta-a h3 {
	text-align: center;
  font-size: 1.375rem;
	line-height: 2rem;
}
}

/*--          # Cta          --*/
.cta-b {
  padding: 60px 0;
}

.cta-b h3 {
	text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
	font-family: source-han-serif-tw-subset, sans-serif;
	letter-spacing: .2rem;
	background: linear-gradient(270deg, #2d4aa9, #ff56ad,#ffafd7, #2d4aa9); /* 多段讓循環更自然 */
  background-size: 600% 600%;
  animation: gradientShift 10s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



@media (max-width: 992px) {

	
}

@media (max-width: 768px) {
 .cta-b {
  padding: 20px 0;
}
}

/*--          # speaker          --*/

.speaker .speaker-carousel,
.speaker .speaker-slider {
  overflow: hidden;
}

.speaker {
	background: url("../img/speaker-bg.jpg") top center no-repeat;
	background-size: 100% 100%;
}

.speaker .speaker-item {
  box-sizing: content-box;
 background: rgba(255,255,255,.8);
  padding: 20px;
  text-align: left;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
	font-family: source-han-serif-tw-subset, sans-serif;
	color: #0f315b;
	margin-bottom: 10px;
	transition: all .3s;
}
.speaker .speaker-item:hover {
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
 background: rgba(255,255,255,1);
}
.speaker .speaker-item .speaker-type {
	width: 40%;
	float: left;
}
.speaker .speaker-item .speaker-type .time {
	color: #0f315b;
	font-size: 1.5rem;
}
.speaker .speaker-item .speaker-type h4 {
	display: inline-block;
	background: linear-gradient(to right, #0b4258, #477888);
	color: #FFF;
	padding: 4px 8px;
	margin: 0;
}
.speaker .speaker-item .speaker-info {
	width: 55%;
	float: right;
}
.speaker .speaker-item .speaker-info .name {
	color: #0f315b;
	font-size: 2.25rem;
	font-weight: bold;
	white-space: nowrap;
	padding: 5px 20px 5px 0;
	margin-right: 20px;
	position: relative;
}
.speaker .speaker-item .speaker-info .name::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 50px;
	right: 0;
	top: 10px;
	background-color: #0f315b;
}
.speaker .speaker-item .speaker-info p {
	font-size: 1.375rem;
	margin: 0;
}
.speaker .speaker-item h3 {
	font-size: 2.625rem;
	font-weight: bold;
	letter-spacing: .2rem;
	margin: 20px 0 0 0;
}

.speaker .speaker-item .content font {
	font-size: 1rem;
	color: rgba(161,2,158,.8);
}
.speaker .speaker-item .about-title {
	background: linear-gradient(to right, #0b4258, #477888);
	display: inline-block;
	color: #FFF;
	padding: 2px 4px;
	font-size: 1.25rem;
}
.speaker .speaker-item .about-title:hover {
	background:#477888;
}
.speaker .speaker-item p.content {
	font-size: 1.375rem;
	padding: 5px 0;
	
}
.speaker .speaker-img {
	position: relative;
	text-align: right;
}

@media (max-width:1200px){
	
	
}
@media (max-width:992px){
	
	
}
@media (max-width:768px){
	.speaker .speaker-item .speaker-type {
	width: 100%;
	float: none;
}
	.speaker-type p {
		margin: 0;
		padding: 0;
	}
.speaker .speaker-item .speaker-type .time {
	color: #0f315b;
	font-size: 1.375rem;
}
.speaker .speaker-item .speaker-type h4 {
	display: inline-block;
	background: linear-gradient(to right, #0b4258, #477888);
	color: #FFF;
	padding: 4px 8px;
	margin: 0;
}
.speaker .speaker-item .speaker-info {
	width: 100%;
	float: none;
	margin-top: 5px;
}
	.speaker .speaker-item .speaker-info .name {
	color: #0f315b;
	font-size: 2rem;
	font-weight: bold;
	white-space: nowrap;
	padding: 10px 20px 4px 0;
	margin-right: 20px;
	position: relative;
}
	.speaker .speaker-item .speaker-info p {
	font-size: 1rem;
	margin: 0;
		padding-top: 10px;
}
.speaker .speaker-item h3 {
	font-size: 2.625rem;
	font-weight: bold;
	letter-spacing: .2rem;
	margin: 20px 0 0 0;
}
	.speaker .speaker-item p.content {
	font-size: 1.125rem;
	padding: 5px 0;
		width: calc(100% - 140px);
	
}
.speaker .speaker-img {
	position: absolute;
	top: 230px;
	right: 20px;
	text-align: right;
	width: 120px;
}
}
@media (max-width:576px) {
	.speaker .speaker-item .speaker-info {
		min-height: 130px;
	}
	.speaker .speaker-item .speaker-info .name {
	color: #0f315b;
	font-size: 1.8rem;
	}
	.speaker .speaker-item .speaker-info .name::after {
	content: "";
	position: absolute;
	width: 120px;
	height: 1px;
	left: 0;
	top: 60px;
	background-color: #0f315b;
}
	.speaker .speaker-item .speaker-info p {
	font-size: 1rem;
	margin: 0;
		padding-top: 10px;
	width: calc(100% - 110px);
		
}
	.speaker .speaker-item h3 {
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: .1rem;
	margin: 20px 0 0 0;
}
	.speaker .speaker-item p.content {
	font-size: 1.125rem;
	padding: 5px 0;
	width: calc(100% );
	
}
.speaker .speaker-img {
	position: absolute;
	top: 52px;
	right: 0px;
	text-align: right;
	width: 120px;
}
}

/*--          # Team          --*/
.team {
	background:linear-gradient(to bottom, #06192e ,#272250);
	background-size:contain;
  padding: 60px 0;
}
.team .section-title {
	margin-bottom: 4rem;
}

.team .member {
  margin-bottom: 20px;
	width: 100%;
/*  overflow: hidden;*/
	transition: ease-in-out 0.3s;
}
.team .m-left {
	margin-left: 80px;
}
.team .m-right {
	margin-right: 80px;
}
.team .m-top {
	margin-top: 120px;
}
.team .m-top-- {
	margin-top: -60px;
}
.team .m-top-helf {
	margin-top: 60px;
}
.team .m-bottom {
	margin-bottom: 120px;
}

.team .member .member-img {
  position: relative;
/*  overflow: hidden;*/
	max-width: 320px;
/*	margin: 20px auto;*/
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.1);
}

.gradient-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,97,158,.8) 0%, rgba(0,97,158,0) 80%);
  z-index: 1;
  pointer-events: none;
}

/*
.team .member .member-img::after {
	position: absolute;
	content: "";
	left: -20px;
	top: 60%;
	width: 200px;
	height: 90px;
	background: rgba(0,84,166,.8);
	z-index: 1;
}
*/
.team .member:hover {
}

.team .member .member-info {
	position: absolute;
	bottom: 5px;
	left: 0;
	color: #FFF;
  padding: 0 20px 20px;
	font-family: source-han-serif-tw-subset, sans-serif;
	z-index: 4;
}
.team .member .member-info::after {
	position: absolute;
	content: "";
	left: -20px;
	top: 20px;
	width: 190px;
	height: 70px;
	z-index: 1;
}
.team .member .member-info.block-1::after {
	background: rgba(0,84,166,.8);
}
.team .member .member-info.block-2::after {
	background: rgba(0,141,166,.8);
}
.team .member .member-info.block-3::after {
	background: rgba(96,0,166,.8);
}
.team .member .member-info.block-4::after {
	background: rgba(43,166,0,.8);
}
.team .member .member-info.block-5::after {
	background: rgba(166,82,0,.8);
}
.team .member .member-info.block-6::after {
	background: rgba(166,0,98,.8);
}

.team .member .member-info .member-title img {
	z-index: 5!important;
	position: relative;
	width: 80%;
}
.team .member .member-info h4 {
	position: relative;
	font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
	margin: 20px 0 0 0;
	letter-spacing: .2rem;
	z-index: 3;
}

.team .member .member-info .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
	margin-bottom: 10px;
	letter-spacing: .2rem;
}



@media (max-width:1200px) {
	
}
@media (max-width:768px) {
	.team {
  padding: 20px 0;
}
.team .section-title {
	margin-bottom: 2rem;
}

	.team .member .member-info::after {
	position: absolute;
	content: "";
	left: -20px;
	top: 20px;
	width: 190px;
	height: 60px;
	z-index: 1;
}
	.team .m-top {
	margin-top: 10px;
}
.team .m-top-- {
	margin-top: 10px;
}
.team .m-top-helf {
	margin-top: 10px;
}
.team .m-bottom {
	margin-bottom: 120px;
}
}

/*agenda*/
.agenda .section-title h2 {
	color: #0f315b;
}
.agenda-group {
	position: relative;
}
.agenda-group::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #5fcee7, #d0b0e9);
	top:0;
	left: 0;
}
.agenda-item {
	position: relative;
	border-bottom: 1px solid #bece8e;
}



.agenda-group .agenda-title {
  background-color: #ffde74;
  padding: 1rem 0;
  text-align: center;
}
.agenda-group .agenda-title h2 {
  font-size: 1.875rem;
  color: #003100;
}
.agenda-title .sec-title {
  color: #444444;
  font-size: 1.375rem;
}
.agenda-group .agenda-item {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding: 0;
  overflow: auto;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.agenda-group .agenda-item:hover {
  background-color: rgba(255, 255, 255, 1);
}
.agenda-group .date, .agenda-group .location {
  display: none;
}
.agenda-item .set-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	padding: .5rem;
}
.agenda-item .set-bgA {
	background: linear-gradient(to right, #5fcee7, #d0b0e9);
}
.agenda-item .set-bgB {
	background: linear-gradient(to right, #e6ba8b, #90c664);
}
.agenda-item .breaktime {
	text-align: center;
	font-size: 1.125rem;
	padding: .5rem;
	background: linear-gradient(to right, rgba(230,186,139, .2), rgba(144,198,100, .2));
}
.agenda-item .breaktime font {
	font-size: 1rem;
}
.agenda-item .time {
  font-size: 1.375rem;
  color: #3e3e3e;
  width: 25%;
  text-align: center;
  float: left;
	padding: .5rem 0;
}
.agenda-item .info {
  width: 75%;
  text-align: left;
  float: left;
	padding: .5rem 0;
}
.agenda-item .info .issue {
  font-size: 1.5rem;
  color: #0e445a;
  padding: 0;
}

.agenda-item .info .speaker {
  padding-top: 0.2rem;
  font-size: 1.125rem;
  color: #444444;
  line-height: 1.6rem;
	background: none;
}
.agenda-item .info .speaker span {
  color: #126700;
}

@media (max-width:768px) {
	.agenda-item .time {
  font-size: 1.125rem;
  color: #3e3e3e;
  width: 100%;
  text-align: left;
  float: none;
	padding: .5rem 0 0 0;
}
.agenda-item .info {
  width: 85%;
  text-align: left;
  float: right;
	padding: 0 0 .5rem 0;
}
}
@media (max-width:576px) {
}
.agenda-item .info {
  width: 100%;
  text-align: left;
  float: none;
	padding: 0 0 .5rem 0;
}

/*--          # sale          --*/
.sale {
	background: url("../img/sale-bg.jpg") top center no-repeat;
	background-size: 100% 100%;
	padding: 60px 0;
}
.sale .sale-title {
  text-align: center;
  margin: 2rem auto;
}
.sale .sale-title h2 {
/*
  font-weight: 500;
  display: inline-block;
  padding: 15px 10px 5px;
  min-height: 78px;
  letter-spacing: .2rem;
  position: relative;
  z-index: 50;
*/
}

.sale .sale-info {
	color: #0f315b;
	margin: 20px 0;
}
.sale .sale-info .date {
	font-size: 2rem;
	font-weight: bold;
	padding: 0;
	margin: 0;
}
.sale .sale-info .time {
	font-size: 1.6rem;
	font-weight: bold;
}
.sale .sale-info .time font {
	font-size: 1.365rem;
}
.sale-info .location p {
	font-size: 2rem;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
.sale-info .location .location-name {
	font-size: 2.75rem;
	float: left;
	line-height: 3rem;
	font-weight: bold;
	left: .5rem;
	margin: 0 10px 0 0;
}
.sale-info .location .address {
	font-size: 1.125rem;
	line-height: 1.4rem;
	display: inline;
}

.sale .location-pic {
	margin: 20px 0;
	height: 200px;
	overflow: hidden;
	
}

.sale .location-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 圖片填滿容器 */
  object-position: center 35%; /* 對齊底部 */
}


@media (max-width:576px) {
	.sale .sale-info .date {
	font-size: 1.6rem;
}
.sale .sale-info .time {
	font-size: 1.365rem;
	font-weight: bold;
}
.sale .sale-info .time font {
	font-size: 1.125rem;
}
.sale-info .location p {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
.sale-info .location .location-name {
	font-size: 2.2rem;
	float: left;
	line-height: 3rem;
	font-weight: bold;
	left: .5rem;
	margin: 0 10px 0 0;
}
	.sale-info .location .address {
	font-size: 1rem;
	line-height: 1.4rem;
	display: inline;
}
}

.sale .box {
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: .1rem;
	background-color: #FFF;
	box-shadow: 0 2px 18px rgba(0,0,0,.3);
	margin-bottom: 10px;
}
.sale .box h3 {
  font-weight: 700;
  padding: 15px 0;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 1.8rem;
	line-height: 2.4rem;
  color: #6200fc;
  display: inline-block;
  position: relative;
}

.sale .box .price-tag {
  font-size: 1.5rem;
  letter-spacing: normal;
  margin-bottom: .5rem;
}
.sale .box .price-tag span {
  font-size: 2.4rem;
  font-weight: 900;
	background: linear-gradient(to right, #a8039e, #4a0096); /* 漸層方向與顏色可調整 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 非必要，但加上較保險 */
  text-fill-color: transparent;
}
.sale .box p {
	font-size: 1.125rem;
}
.sale .box a.box-link {
  display: block;
  font-size: 1.25rem;
  padding: 10px 0;
	background: linear-gradient(to right,#4a0096,#a8039e);
  color: #FFF;
  transition: 0.3s;
}
.sale .box a.box-link:hover {
  background: #231816;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  color: #FFF;
}


.sale .disabled {
	box-shadow: 0 2px 12px rgba(0,0,0,.05);
	background: rgba(255,255,255,.5);
}


.sale .disabled h3,
.sale .disabled .price-tag,
.sale .disabled p {
	color: #7896a6;
}
.sale .disabled .price-tag span {
	background: linear-gradient(to right, #7896a6, #7896a6);
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 非必要，但加上較保險 */
  text-fill-color: transparent;
}

.sale .disabled a.box-link {
		display: block;
  font-size: 1.25rem;
  padding: 10px 0;
	background: linear-gradient(to right,#7d9aac,#8da8b8);
  color: #FFF;
  transition: 0.3s;
}
.sale .disabled a.box-link:hover {
	background: #7d9aac;
}

h3.gift-title {
	color: #0f315b;
	font-size: 2rem;
	font-weight: bold;
	margin: 30px 0 10px 0;
}

.gift-box {
	position: relative;
	margin-top: 1rem;
}
.gift-box h3 {
	position: absolute;
	top:-.8rem;
	left: 0;
	background-color: rgba(161,2,158,.8);
	color: #FFF;
	font-size: 1.375rem;
	padding: 6px 8px;
	min-width: 70%;
	z-index: 5;
}
.gift-box .gift-pic {
	overflow: hidden;
}
.gift-box .gift-pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gift-box .gift-pic img:hover {
	transform: scale(1.1);
}
.gift-note {
	text-align: center;
	padding: 10px;
}
.alert-note {
	color: #0f315b;
	font-size: 0.9375rem;
	text-align: right;
}

@media (max-width:1200px) {

}
@media (max-width:992px) {

}
@media (max-width:768px) {
	.alert-note {
	color: #0f315b;
	font-size: 0.9375rem;
	text-align: right;
}

  
}


/*FAQ */
.sale .faq .card {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.faq .card-header {
	background-color: transparent;
  border-bottom: none;
  padding-left: 0;
  padding-right: 0;
	font-size: 1.375rem;
}
.faq .btn {
	background-color: transparent;
  padding: 0;
  color: #FFF; 
  font-weight: 500;
  text-align: left;
font-size: 1.25rem;
	
}
.faq .card-body {
	background-color: rgba(40,31,106,.5);
	color: #FFF;
	font-size: 1.25rem;
}

@media (max-width:768px) {
	.faq .btn {
		color: #292852;
	}
}
/*--          # activity          --*/
.sponsor {
	background: url("../img/sponsor-bg.jpg") bottom center no-repeat;
	background-size: 100% 100%;
  padding: 60px 0 80px;
}
.sponsor .section-title h2 {
	color: #0f315b;
	margin-bottom: 20px;
}
.sponsor-group h3 {
	color: #1d5070;
	font-size: 1.25rem;
	position: relative;
}
.sponsor-group h3::after {
	position: absolute;
	content: "";
	width: 150px;
	height: 1px;
	left: 5.5rem;
	top: .75rem;;
	background: #1d5070;
}
.sponsor-group img {
	height: 40px;
	margin: 20px 20px 40px 5px;
}
@media (max-width: 1200px) {
  
 
}
@media (max-width: 992px) {
  
}
@media (max-width: 768px) {
  .sponsor {
	background: url("../img/sponsor-bg.jpg") bottom center no-repeat;
	background-size: 100% 100%;
  padding: 20px 0 120px;
}
	.sponsor-group h3 {
	color: #1d5070;
		margin-left: 20px;
	font-size: 1.125rem;
	position: relative;
}
.sponsor-group h3::after {
	position: absolute;
	content: "";
	width: 150px;
	height: 1px;
	left: 5.5rem;
	top: .75rem;;
	background: #1d5070;
}
	.sponsor-group img {
	height: 30px;
	margin: 20px 20px;
}
}


/*--          # Footer          --*/
#footer {
  padding: 40px;
  background: #081b3f;
	color: #FFFFFF;
}
#footer .footer-logo {
  padding: 10px 0 5px 0;
}

#footer .footer-links {
  margin: 20px 0;
  text-align: center;
}
#footer .footer-links a {
  color: #FFF;
  opacity: 1;
  font-size: 1.5rem;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
	margin: 0 0 0 10px;
}

#footer .footer-links a:hover {
  opacity: 0.6;
}
#footer .footer-links img {
	width: 160px;
  margin-bottom: 10px;
	display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}
#footer .footer-content h3 {
  font-size: 1rem;
}
#footer .footer-content {
  color: #FFF;
}
#footer .copyright {
  font-size: 0.9375rem;
  line-height: 1.6rem;
}
#footer .copyright a {
  color: #FFF;
  text-decoration: underline;
}
#footer .credits {
  float: right;
  font-size: 13px;
}
#footer .credits a {
  transition: 0.3s;
}
@media (max-width: 768px) {
	#footer {
		padding: 0 0 40px 0;
		margin-top: -40px;
	}
  #footer .footer-logo {
    padding: 10px 0 5px 0;
    margin: 0 auto;
    text-align: center;
  }
  #footer .footer-links {
    margin: 0 auto 80px;
    text-align: center;
  }
	#footer .footer-links img {
		display: block;
		margin: 5px auto 15px;
	}
  #footer .footer-content {
    text-align: center;
    margin-top: 20px;
  }
  #footer .footer-content span {
    display: block;
  }
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}