@charset "utf-8";
/* CSS Document */

/* == 共用區 ============================================================================= */

*{
	margin:0; 
	padding:0;
	-webkit-box-sizing:border-box; /*safari & chrome*/
	-moz-box-sizing:border-box; /*firebox*/
	box-sizing:border-box; /*解除padding影響寬度關係*/
}

html, body{
	-webkit-text-size-adjust: 100%; /*避免文字自動放大*/
	width:100%;
	height:100%;
	font-family:"微軟正黑體", Arial, Helvetica,sans-serif; 
	background:#ffffff;
}

*,*::before,*::after {
	box-sizing: border-box;
}    /*----------不用算padding內距------------*/


/*----nav----*/
.bg-color-rd{
background-color: #ff0a00;
}

.bg-color-wh{
	background-color: #ffffff;
}

.bg-color-bl{
	background-color: #3F9CE8;
}

.bg-color-darkbl{
	background-color: #3C6CBB;
}
	
.bg-color-gry{
	background-color: #f4f5f8;
}

.bg-color-gr{
/*	background-color: #FFF1DA;*/
     width: 100%;
}

	

.bg-color-grr{
	background-color: #F9E2E6;
}

.nav-item{
color: #fff;
font-weight: bold;
font-size: 18px;
margin-right: 15px;	

}

.navbar {
--bs-navbar-toggler-border-color: rgba(0, 0, 0, 0);
}

.navbar-nav{
	margin-left: auto; /*---電腦NAV靠右---*/
	text-align: center;/*---手機NAV置中---*/
}

.navbar-nav .nav-link {
color: #214DA6;
}/*-----NAV 選項字體顏色------*/

.navbar-brand {
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 0rem;
	font-size: 1.15rem;
	text-decoration: none;
	white-space: nowrap;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 ;/*---取消漢堡點擊出現框框----*/
} 

.logotype{
    width: 225px;
    height: auto;
    padding: 10px 0;
	margin-left: 50px;
}

.navbar-dark .navbar-toggler-icon {
background-image: url("../img/MenuOpenerButton/list-dark.svg");
}


.getstarted,
.getstarted:focus {
            background-image: linear-gradient(to right,  #d80c18  0%, #ff6a00  100%);
            padding: 8px 12px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            border-radius: 16px;
            display: block;
			margin-left: 8px;
}

.getstarted .nav-link{
	color: #fff;
}/*-----NAV 按鈕字體顏色------*/

.getstarted-2 .nav-link{
	color: #fff;
}/*-----NAV 按鈕字體顏色------*/

.getstarted:hover,
.getstarted:focus:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
}

.getstarted-2,
.getstarted-2:focus {
            background-image: linear-gradient(to right,  #166AAF  0%, #1D73B4  100%);
            padding: 8px 12px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: #fff;            
            border-radius: 16px;
            display: block;
			margin-left: 8px;
}

.getstarted-2:hover,
.getstarted-2:focus:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff ;
            text-decoration: none;
}




/*
.logotype{
	width: 225px;
    height: 60px;
    padding: 5px 0;
}
*/



/*選單底線色*/
.hvr-underline-reveal:before{
	content:"";
	position:absolute;
	z-index:-1;
	left:0;
	right:0;
	bottom:0;
	background:#FDDA10;
	height:4px;
	-webkit-transform:translateY(4px);transform:translateY(4px);
	-webkit-transition-property:transform;
	transition-property:transform;-webkit-transition-duration:.3s;
	transition-duration:.3s;
	-webkit-transition-timing-function:ease-out;
	transition-timing-function:ease-out
}
/*選單底線色*/




/*字上移變色*/
a:link{
    color: #FFF;
	text-decoration: none;
	font-weight: bold;
	
}

a:visited{
    color: #FDDA10;
}

a:hover{
    color: #FFF;
/*	text-decoration: underline;*/
	font-weight: bold;
}

a:active{
    color: #00D0FF;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 62px;
	z-index: 99999;
	background: #F89900;
	width: 40px;
	height: 40px;
	border-radius: 60px;
	transition: all 0.4s;
  }
  
  .back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
  }
  
  .back-to-top:hover {
	background: #d98600;
	color: #fff;
  }
  
  .back-to-top.active {
	visibility: visible;
	opacity: 1;
  }

#goTop {
position: fixed;
bottom: 220px; /* 與下方的距離, 也可改為百分比, 即為距離螢幕下方的百分比 */
right: 10px; /* 與右方的距離 */
width: 70px; /* 按鈕原始寬度 */
height: 70px; /* 按鈕原始高度 */
opacity: 0.7; /* 按鈕原始透明度 */
z-index: 10;
cursor: pointer;
transition: all .5s; /* 動畫效果 持續期間 */
-webkit-transition: all .5s;
-moz-transition: all .5s;
}
#goTop:hover { /* 滑鼠經過按鈕時 */
opacity: 1; /* 透明度 */
width: 80px; /* 按鈕寬度 */
height: 80px; /* 按鈕高度 */
}

#goTop2 {
position: fixed;
bottom: 50px; /* 與下方的距離, 也可改為百分比, 即為距離螢幕下方的百分比 */
right: 10px; /* 與右方的距離 */
width: 70px; /* 按鈕原始寬度 */
height: 70px; /* 按鈕原始高度 */
opacity: 0.7; /* 按鈕原始透明度 */
z-index: 10;
cursor: pointer;
transition: all .5s; /* 動畫效果 持續期間 */
-webkit-transition: all .5s;
-moz-transition: all .5s;
}
#goTop2:hover { /* 滑鼠經過按鈕時 */
opacity: 1; /* 透明度 */
width: 80px; /* 按鈕寬度 */
height: 80px; /* 按鈕高度 */
}

#goTop3 {
position: fixed;
bottom: 50px; /* 與下方的距離, 也可改為百分比, 即為距離螢幕下方的百分比 */
right: 20px; /* 與右方的距離 */
width: 50px; /* 按鈕原始寬度 */
height: 50px; /* 按鈕原始高度 */
opacity: 0.8; /* 按鈕原始透明度 */
z-index: 10;
cursor: pointer;
transition: all .5s; /* 動畫效果 持續期間 */
-webkit-transition: all .5s;
-moz-transition: all .5s;
}
#goTop3:hover { /* 滑鼠經過按鈕時 */
opacity: 1; /* 透明度 */
width: 70px; /* 按鈕寬度 */
height: 70px; /* 按鈕高度 */
}

#01 #02 #03 #04 #05{
	padding-top: 40%;
}




/*--------------------*/


/* == 桌機版 ============================================================================= */

/* == BANNER == */
.head{
    
	max-width: 100%; 
    height: auto; 
background-size: cover;
background-image: url("../img/head_bg01.webp");
background-position:center; /*背景圖置中*/
background-repeat: no-repeat;
padding-top:  580px;
    margin-top: 50px;
}

.box{
margin: 0 auto;
padding-top: 55px;
}

.yt{
	
	width: 40%;
	margin: 0 auto;
	padding-bottom: 2.2em;
}


#CONTENT{
    width: 95%;
    margin: 2% auto 2% auto;
    
    /* padding-bottom: 25%;
    position: relative;
	background: url("../img/map.svg"); */
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}

#CONTENT img.earth {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.earth{
    width: 17%;
    height: auto;
    margin-right: 71%;
/*    margin-top: 1%;*/
    margin-bottom: 15%;
}
/*
.KV1{
    width: 52%;
    height: 0;
    padding-bottom:24.37%;
    background: url("../img/maptwo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:absolute;
    top:400%;
    right: 23%;
}
*/

/*
.KV2{
    width: 20%;
    height: 0;
    padding-bottom:33.22%;
    background: url("../img/maptwo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:absolute;
    top:24%;
    left: 20%;
}
*/


/*
.KV3{
    width: 18%;
    height: 0;
    padding-bottom:21.366%;
    background: url("KV3.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:absolute;
    top:17%;
    right: 21%;
}
*/



.banner-title-img{
	width: 80%;
	height: auto;
}

.banner-phone-img{
	width: 80%;
	height: auto;
}

.phone-box{
	text-align: left;
}
.banner-text-img{
	width: 50%;
	margin-top: 50%;
    left:2px;
}

.banner-people-img{
   width: 75%;
   margin: 0 auto ;
	

	
}

.banner-2people-img{
	width: 60%;
	
	margin: 0 auto;
	
}

.img-button-type{
	width:100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding-top: 20px;
	padding-bottom: 3px;
/*-webkit-filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.349));
filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.349));*/
}

.box01{
	padding-top: 1.5em;
	padding-bottom: 3em;
	
}


.box01-1{
	padding-top: 3em;
	padding-bottom: 6em;
}





.fun-style-1{
	font-size: 48px;
	color: #fff45e;
}



.h2{
	color: #1F2773;
	font-weight: bold;
	font-size: 32px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.h2-style-1{
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	width: 420px;
    height: 45px;
    background: radial-gradient(115.4% 335.05% at -0.82% 9.72%, #ff7a65 0%, #ED5616 100%);
    border-radius: 34px;
    
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
	padding-top: 0.5rem;
	margin-bottom: 1rem;
}

.h2-style-2{
	color: #E83E44;
	font-weight: 900;
	font-size: 32px;
	padding-bottom: 0.5rem;
}

h3{
	color: #1F2773;
	font-weight: bold;
	font-size: 16px;
	padding-top: 0.5em;
}

.h3-style-1{
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	padding-top: 1rem;
}

.inner h3{
	color: #1F2773;
	font-weight: bold;
	font-size: 16px;
	padding-top: 3em;
}



.h5-style-2{
	font-size: 20px;
	color: #166AB0;
	padding-bottom: 1.5rem;	
}

.h6-style{
	padding-bottom: 1.5rem;	
	
}

.h1-style-1{
	color: #ffffff;
	font-weight: bold;
	font-size: 2.35rem;
	padding-bottom: 0.5rem;
	padding-top: 4rem;
}

.h1-style-2{
	color: #fff;
	font-weight: bold;
	font-size: 1.25rem;
	line-height: 2.5rem;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}

.h1-style-3{
	font-size: 1.85rem;
	font-weight: bold;
	color: #4B92BF;
	padding-bottom: 0.5rem;
}

.h1-style-4{
	font-size: 2.35rem;
	padding-bottom: 0.5rem;
	padding-top: 4rem;
	font-weight: 900;
	color: #3C6CBB;
}

.fun-style-1{
	font-size:52px;
	color: #FFD31A;
	font-weight: bold;
}

.h2-style-1{
	font-weight:900 ; 
	font-size: 22px;
	padding-bottom: 0rem;
	color: #aa1616;
	background-color: #ffe59d;
	width: 25%;
	margin: 0 auto;
	border-radius: 20px;
	line-height: 40px;
}

h3{
	color: #ffffff;
	font-weight: bold;
	font-size: 20px;
	padding-top: 0.5em;
}

.gift-style{
	width: 220px;
	height: auto;
}

.two-img{
    width: 80%;
    margin: 0 auto;
    padding-top: 2rem;
/*	padding-bottom: 5rem;*/
	
}

.three-img{
	width: 235px;
	height: auto;
}

.earth-img{
	 width: 20%;
	
	
}

.qr-img{
    width: 70%;
	height: auto;
    padding-top: 2rem;
	
}

.slogan-img{
    margin: 0 auto;
    width: 60%;
	
}

.box02{
	padding-top: 3em;
	padding-bottom: 6em;
}


.row{
	--bs-gutter-y:1rem;
}





.card-title{
	font-weight: bold;
	font-size: 20px;
	color: #F9C30F;
	padding-top: 0.5em;
	padding-bottom: 1.2em;
}
.card-title2{
	font-weight: bold;
	font-size: 16px;
	color: #696969;
	padding-top: 8px;
	line-height:  1.8;
}

.card-text{
	font-weight: bold;
	font-size: 24px;
	color: #ff8800;
	text-align: center;
}

.card-text2{
	font-weight: bold;
	font-size: 16px;
	color: #13005A;
}

.card-text3{
	font-weight: bold;
	font-size: 16px;
	color: #E1251B;
}

.card a{
	color: #4B92BF;
	text-decoration: none;
}

.card a:hover{
	color: #ff0000;
	text-decoration: underline;
}



.card {
	--bs-card-spacer-y: 1rem;
	--bs-card-spacer-x: 1rem;
	--bs-card-title-spacer-y: 0.5rem;
	--bs-card-border-width: 1px;
	--bs-card-border-color: var(--bs-border-color-translucent);
	--bs-card-border-radius: 0.8rem;
	--bs-card-box-shadow: ;
	--bs-card-inner-border-radius: calc(0.375rem - 1px);
	--bs-card-cap-padding-y: 0.5rem;
	--bs-card-cap-padding-x: 1rem;
	--bs-card-cap-bg: rgba(0, 0, 0, 0.03);
	--bs-card-cap-color: ;
	--bs-card-height: ;
	--bs-card-color: ;
	--bs-card-bg: #fff;
	--bs-card-img-overlay-padding: 1rem;
	--bs-card-group-margin: 0.75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: var(--bs-card-height);
	word-wrap: break-word;
	background-color: var(--bs-card-bg);
	background-clip: border-box;
	border: var(--bs-card-border-width) solid var(--bs-card-border-color);
	border-radius: var(--bs-card-border-radius);
	width: 100%;
	height: 100%;
}

/*
.card img{
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding-top: 10px;
}
*/


.card img2{
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding-top: 10px;
}

.card-body h2{
	font-size: 28px;
	font-weight: 600;
	color: #08236C;
}

.card-text{
	letter-spacing: 0px;
	font-size: 18px;
}

.card-text2{
	font-weight: bold;
	font-size: 16px;
	
}

.card span{
    color: #FF2143;
	font-weight: bolder;
}
 

.etf-img{
    width: 90%;
    margin: 0 auto;  
	padding-bottom: 1rem;
	
}


.mission-img{
	width: 240px;
	height: auto;
	margin: 0 auto;
	
	
}




.fun-style-2{
	font-size: 40px;
	color: #FDDA10;
	font-weight: bold;
}


.step-size{
	width: 25%;
	margin: 0 auto;
}




.text-red{
	color: #F1055C;
	font-size: 16px;
	font-weight: bolder;
	padding-top: 8%;
	
}

.text-wh{
	color: #FFF;
	font-size: 16px;
	padding-left: 65%;
	
}

.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform 0.6s ease-in-out;
	margin-bottom: 6rem;
  }


.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 0;
	left: 15%;
	top: 92%;
	padding-top: 0;
	padding-bottom: 0;
	color: 0;
	text-align: center;
}

.step-p-style{
	font-size: 18px;
	color: #062E6C;

	font-weight: bold;
}

.p-style{
	font-size: 1.65rem;
	color: #FDDA10;
	padding-top: 0.5rem;
	font-weight: bold;
}

.getstarted-step,
.getstarted-step:focus {
            background-image: linear-gradient(to right,  #d80c18  0%, #ff6a00  100%);
            padding: 2px 16px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            border-radius: 30px;
            display: block;
			font-size: 28px;
			width: 30%;
			margin: 0 auto;
}


.getstarted-step:hover,
.getstarted-step:focus:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
}

.box03{
	text-align: center;
}

.small-p{
	font-size: 26px;
	color: #323E48;
}



.normal-p{
	font-size: 26px;
	font-weight: 600;
	color: #323E48;
}

.go-test-img{
	width: 50%;
	height: auto;
}

.smile-img{
	width: 50%;
	height: auto;
}

.note{
	width: 60%;
	padding-bottom: 0em;
	padding-top: 0em;
}

.note h2{
	color: #000000;
	text-align: center;
	font-weight: 900;
	padding: 0.5em 0.5em;
}

.note h5{
	font-weight: 900;
}

.note ul{
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 1.1px;
	margin-bottom: 0;
	padding-bottom: 1em;
	font-weight: 600;
}

.inner {
  padding: 6px;
}

.inner img {
  width: 80%;
  height: auto;
}


.text-center{
	padding-bottom: 2.5rem;
}

/* == FOOTER == */
.cis{
color: #A6A6A6;
}

/*---FOOTER字體顏色---*/
.text-muted {
--bs-text-opacity: 1;
color: #414c64 !important;
}

.footer-lg{
display: block;
}

.footer-sm{
display: none;
}

.navbar-nav{
	margin-right: 50px;
}

/* 展開收合效果 */
.slide_toggle {
	text-align: left;
	font-weight: bold;
	color:#000000;
	font-size: 20px;
	overflow:hidden;
	padding-top: 20px;
	
}
	
.slide_toggle:hover {
	text-align: left;
	font-weight: bold;
	color:#36774a;
	font-size: 20px;
	overflow:hidden;
	padding-top: 20px;
}
	
	
.slide_toggle + div {
	text-align: left;
	font-size: 1em;
	display: none;
	width:100%;
	overflow:hidden;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20;
	margin-left: auto;
}

.nav-pills {
    --bs-nav-pills-border-radius: 0.375rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #E74138;
	padding-bottom: 0.8em;
	padding-top: 2em;
}

.item-font-size .nav-link{
	color: #E74138;
	line-height: 2rem;
}

.nav-pills .nav-link {
	background: #F8D3DA;
}

.wrap1{
	overflow: hidden;
	background-image: url("../img/bg-01.webp");
	background-position: bottom bottom;
	background-size: cover;
	background-attachment: fixed;
	box-shadow:inset 0px 25px 25px -25px rgba(13, 34, 66, 0.644),
                inset 0px -25px 25px -25px rgb(13, 34, 66, 0.644); 
}

.content-center {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.wrap2 {
	overflow: hidden;
	background-image: url("../img/bg-02.webp");
	background-position: bottom center;
	background-size: cover;
	background-attachment: fixed;
}

#advantage{
	margin: auto 0;
}

.advantage-p{
	font-size: 22px;
	text-align: justify
}

.advantage-img{
	width: 60%;
	margin: 0 auto;
	padding-top: 2rem;
}



.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
    font-size: 26px;
	font-weight: 600;
	letter-spacing: 0px;
}


.accordion {
    --bs-accordion-color: #ffffff;
	--bs-accordion-bg: 0;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
	--bs-accordion-border-color: 0;
	--bs-accordion-border-width: 0;
	--bs-accordion-border-radius: 0;
	--bs-accordion-inner-border-radius: 0;

    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon:url("../images/chevron-down.svg");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("../images/chevron-down.svg");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #ffffff;
	padding-bottom: 5rem;
}

.accordion-button:not(.collapsed) {
    color:#fdda10;
    background-color: #2e364400;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
	font-weight: 600;
}


.accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
	text-align: left;
	line-height: 36px;
	letter-spacing: 0.5px;
	font-size: 18px;
}



.h3-style{
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	font-size: 32px;
	padding-top: 5rem;
	padding-bottom: 1.2rem;
}

.font-color-wh{
    color:#ffffff;
}
.font-color-bu{
    color:#0B54BF;
}

.font-color-bk{
	color:#333131;
}


/*左右滑動buttom*/
.slick-prev {
  width: 62px;
  height: 62px;
  float: left;
  display: block;
  background-image: url(./../img/gArrows.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
  z-index: 100;
}
.slick-prev:hover {
  width: 62px;
  height: 62px;
  float: left;
  display: block;
  background-image: url(./../img/bArrows.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}
.slick-prev:focus {
  width: 62px;
  height: 62px;
  float: left;
  display: block;
  background-image: url(./../img/bArrows.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.slick-next {
  width: 62px;
  height: 62px;
  transform: rotate(180deg);
  float: left;
  display: block;
  background-image: url(./../img/gArrows.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
  z-index: 100;
}
.slick-next:hover {
  width: 62px;
  height: 62px;
  float: left;
  display: block;
  background-image: url(./../img/bArrows.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}
.slick-next:focus {
  width: 62px;
  height: 62px;
  float: left;
  display: block;
  background-image: url(./../img/bArrows.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.slick-next:before {
  content: "";
}

.slick-prev:before {
  content: "";
}

.slick-prev {
  top: 48.3% !important;
}
@media (max-width: 1250px) {
  .slick-prev {
    left: 0px;
  }
}
@media (max-width: 840px) {
  .slick-prev {
    left: -26px;
  }
}
@media (max-width: 576px) {
  .slick-prev {
    left: -4px;
  }
}

.slick-next {
  top: 43.9% !important;
}
@media (max-width: 1250px) {
  .slick-next {
    right: 0px;
  }
}
@media (max-width: 840px) {
  .slick-next {
    right: -26px;
  }
}
@media (max-width: 576px) {
  .slick-next {
    right: -4px;
  }
}

.dp-example-section .slick-next {
  top: 57.3% !important;
}
.dp-example-section .slick-prev {
  top: 64% !important;
}
/*左右滑動buttom*/

/*內建左右滑動buttom*/
/*
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*/
/*內建左右滑動buttom*/

/* ============================= pad ================================== */	
@media (min-width: 768px) and (max-width: 991.981024px){

/* == NAV BANNER == */

/*
.logotype{
 width: 180px;
 height: 52px;
}
*/
	
.logotype{
 width: 180px;
 margin-left: 20px;
}
	
.nav-item{
    font-size: 16px;
    margin-left: 20px;
	padding-top: 5px;
	margin-right: 12px;	

}/*-----20240116調整------*/

.item-font-size{
	font-size: 18px;
}/*-----20240116調整------*/	

.underline-style {
	background-image: linear-gradient(to right, rgba(230, 230, 230, 0) 0%, #dedddd 50%, rgba(230, 230, 230, 0) 100%);
	background-repeat: no-repeat;
	background-size: 100% 0.1em;
	background-position: 0 100%;
}

.getstarted,
.getstarted:focus {
            background-image: linear-gradient(to right,  #d80c18  0%, #ff6a00  100%);
            padding: 2px 16px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            border-radius: 30px;
            display: block;
			margin-left: 0px;
			margin-top: 10px;
}

.getstarted-2,
.getstarted-2:focus {
            background-image: linear-gradient(to right, #FF8008 0%, #FFC837  51%, #FF8008  100%);
            padding: 2px 16px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: #fff;            
            border-radius: 30px;
            display: block;
			margin-left: 0px;
			margin-top: 10px;
}


.head{

background-size: cover;
background-position:center; /*背景圖置中*/
background-repeat: no-repeat;
margin-top:  50px;
}


	.banner-text-img{
		width: 68%;
		margin: 0 auto;
	}
	
	.banner-title-img{
		width: 90%;
		height: auto;
	}
	
	.banner-phone-img{
		width: 95%;
		height: auto;
	}
	
	.banner-people-img{
		width: 90%;
		height: 0 auto;
	}
	
	.banner-2people-img{
		width: 90%;
		
		margin: 0 auto;
	}

.phone-box{
		text-align: left;
	}



.box01{
		padding-top: 0.8em;
		
	}
	
	
.box01-1{
		padding-top: 2em;
		padding-bottom: 2em;
	}
	
.box01-2{
	width: 90%;	
	height: auto;
	padding-top:0em;
	margin:0 auto;
	}

	
.fun-style-1{
		font-size: 40px;
		color: #fff45e;
	}
	
	
	

	
.two-img{
    padding-top: 1rem;
	width: 80%;
}
	
.qr-img{
    padding-top: 1rem;
	width: 80%;
}
	
.slogan-img{
    margin: 0 auto;
    width: 60%;
	
}	
	

	
.box02{
		padding-top: 1em;
		padding-bottom: 2em;
	}
	
.h1-style-1{
		font-size: 2rem;
		padding-bottom: 0.5rem;
		padding-top: 4rem;
	}
	
.fun-style-1{
		font-size: 40px;
	}
	
.h2-style-1{
		font-size: 20px;
		padding-bottom: 0rem;
		width: 40%;
	}
	
h3{
		color: #ffffff;
		font-weight: bold;
		font-size: 18px;
		padding-top: 0.5em;
	}
	
.h3-style-1{
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	padding-top: 1rem;
}	
	
.gift-style{
		width: 120px;
		height: auto;
	}
	
.three-img{
	width: 120px;
	height: auto;
}
	

.row{
		--bs-gutter-y:1rem;
	}
	
.card {
		--bs-card-spacer-y: 1rem;
		--bs-card-spacer-x: 1rem;
		--bs-card-title-spacer-y: 0.5rem;
		--bs-card-border-width: 1px;
		--bs-card-border-color: var(--bs-border-color-translucent);
		--bs-card-border-radius: 0.375rem;
		--bs-card-box-shadow: ;
		--bs-card-inner-border-radius: calc(0.375rem - 1px);
		--bs-card-cap-padding-y: 0.5rem;
		--bs-card-cap-padding-x: 1rem;
		--bs-card-cap-bg: rgba(0, 0, 0, 0.03);
		--bs-card-cap-color: ;
		--bs-card-height: ;
		--bs-card-color: ;
		--bs-card-bg: #fff;
		--bs-card-img-overlay-padding: 1rem;
		--bs-card-group-margin: 0.75rem;
		position: relative;
		display: flex;
		flex-direction: column;
		min-width:100%;
		height: var(--bs-card-height);
		word-wrap: break-word;
		background-color: var(--bs-card-bg);
		background-clip: border-box;
		border: var(--bs-card-border-width) solid var(--bs-card-border-color);
		border-radius: var(--bs-card-border-radius);
		margin: 0 auto;
	}
	
	.card-title{
		font-weight: bold;
		font-size: 20px;
		padding-bottom: 1.5rem;
		
	}
	.card-title2{
	font-weight: bold;
	font-size: 16px;
	color: #696969;
	}
	
	.card-text{
		font-weight: bold;
		font-size: 20px;
		color: #ff8800;
		text-align: center;
	}
	
	.card-text2{
	font-weight: bold;
	font-size: 16px;
	color: #13005A;
}
	
	.etf-img{
    width: 80%;
    margin: 0 auto;
	padding-bottom: 1rem;
	
}
	
	.mission-img{
		width: 200px;
		height: auto;
		margin: 0 auto;
	}

.h1-style-2{
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
}
	
.h1-style{
	text-align: center;
	color: #0B54BF;
	font-weight: 600;
	font-size: 36px;
/*	padding-top: 1.2rem;*/
	padding-bottom: 0.5rem;
}
	

.fun-style-2{
	font-size: 32px;
	font-weight: bold;
}
	
h2{
	color: #1F2773;
	font-weight: bold;
	font-size: 20px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.h2-style-1{
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	width: 420px;
    height: 45px;
    background: radial-gradient(115.4% 335.05% at -0.82% 9.72%, #ff7a65 0%, #ED5616 100%);
    border-radius: 34px;
    
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
	padding-top: 0.5rem;
	margin-bottom: 1rem;
}

.h2-style-2{
	color: #E83E44;
	font-weight: 900;
	font-size: 28px;
	padding-bottom: 0.5rem;
}	

.step-size{
	
	margin: 0 auto;
}

.h1-style-3{
	font-size: 18px;
	font-weight: bold;
	color: #4B92BF;
	padding-top: 2rem;
	

}

.h1-style-4{
	font-size: 2rem;
	padding-bottom: 0.5rem;
	padding-top: 4rem;
}	

.img-button-type{
width:100%;
height: auto;
display: block;
margin: 0 auto;
padding-top: 50px;
/*-webkit-filter: drop-shadow(6px 6px 7px rgba(0, 0, 0, 0.349));
filter: drop-shadow(6px 6px 7px rgba(0, 0, 0, 0.349));*/
}


.advantage-p{
	font-size: 16px;
}	
	
	

.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform 0.6s ease-in-out;
	margin-bottom: 5rem;
  }


.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 0;
	left: 15%;
	top: 92%;
	padding-top: 0;
	padding-bottom: 0;
	color: 0;
	text-align: center;
}

.step-p-style{
	font-size: 1.55rem;

}


.getstarted-step,
.getstarted-step:focus {
			font-size: 22px;
			width: 30%;
			margin: 0 auto;
}



.small-p{
	font-size: 20px;
}



.normal-p{
	font-size: 20px;
}

.go-test-img{
	width: 70%;
	height: auto;
}

.smile-img{
	width: 40%;
	height: auto;
}


.note{
	width: 90%;
	padding-bottom: 2em;
	padding-top: 1em;
}



.note ol{
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	margin-bottom: 0;
}
	
.yt{
	
	width: 100%;
	margin: 0 auto;
	margin-bottom: 25px;
}

.text-center{
	padding-bottom: 2.8rem;
}	


/* == FOOTER == */
.cis{
font-size: 10px;
}

.footer-lg{
display: none;
}

.footer-sm{
display: block;
font-size: 13px;
}


}

.inner {
  padding: 6px;
}

.inner img {
  width: 50%;
  height: auto;
}


/*----FOR置底只在手機顯示----*/
@media (min-width: 768px) {
	.display-in-mobile {
	display: none;
	}
}


.accordion-button {
    font-size: 20px;
}


.accordion-body {
	line-height: 30px;
	letter-spacing: 0px;
	font-size: 18px;
	padding-left: 40px;
}

/* == 手機版型區 ============================================================================= */
@media screen and ( max-width:767px ){

/* ==NAV  BANNER == */
.navbar-brand {
	width: 80%;
}

/*
.logotype{
	width: auto;
	height: 47.46px;
	padding:10px 5px;
}
*/
	
.logotype{
  width: 164.5px;
  padding:10px 5px;
  margin-left: 5px;
}
	

/*
.navbar-nav {
	padding-left: 0px;
}
*/

	
.navbar-nav {
    padding-left: 10px;
}
	
.nav-item{
	font-size: 18px;
	font-weight: bold;
	margin-right: 12px;	

}

.nav-link{
	margin-top: 10px;
}
	
.item-font-size{
	font-size: 16px;
}/*-----20240116調整------*/	

.underline-style {
	background-image: linear-gradient(to right, rgba(230, 230, 230, 0) 0%, #dedddd 50%, rgba(230, 230, 230, 0) 100%);
	background-repeat: no-repeat;
	background-size: 100% 0.1em;
	background-position: 0 100%;
}

.getstarted,
.getstarted:focus {
            background-image: linear-gradient(to right,  #d80c18  0%, #ff6a00  100%);
            padding: 2px 16px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            border-radius: 30px;
            display: block;
			margin-left: 0px;
			margin-top: 2rem;
}

.getstarted-2,
.getstarted-2:focus {
            background-image: linear-gradient(to right, #FF8008 0%, #FFC837  51%, #FF8008  100%);
            padding: 2px 16px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: #fff;            
            border-radius: 30px;
            display: block;
			margin-left: 0px;
			margin-top: 10px;
}



.head{
width: 100%;
background-size: cover;
background-image: url("../img/head_bg01_m.webp");
position: relative;
overflow: hidden;
}

.banner-text-img{
	width: 100%;
	padding-top: 3%;
	margin: 0 auto;
}

.banner-title-img{
	width: 100%;
	height: auto;
}

.banner-phone-img{
	width: 70%;
	height: auto;
}

.banner-people-img{
	width: 100%;
	margin: 0 auto;
	

}
	
.banner-2people-img{
	width: 100%;
	
	margin: 0 auto;

}

.phone-box{
	text-align: center;
	height: 350px;
}


 .bg-color-gr {
    background-position: center center;
    padding-top: 53px;
/*    padding-bottom: 10%;*/
    background: url(../img/kv1_m.webp) no-repeat;
    background-size: contain;
    margin: 0 auto;
  }
.box01{
	padding-top: 0.5em;
	
}


.box01-1{
	padding-top: 1em;
	padding-bottom: 2em;
}
	
.box01-2{	
	width: 80%;	
	height: auto;
	margin-top:11%;
	margin-left: 10%;
	margin-bottom: 0;
}
	
	
.KV1{
    width: 90%;
    height: 0;
    padding-bottom:24.37%;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:absolute;
    top: 18%;
    right: 25%;
	z-index: 10;
}

.KV2{
    width: 110%;
    height: 0;
    padding-bottom:33.22%;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:absolute;
    top: 80%;
    left: 18%;
	z-index: 10;
}	



.fun-style-1{
	font-size: 30px;
	color: #fff45e;
}
	
.h1-style{
	text-align: center;
	color: #0B54BF;
	font-weight: 600;
	font-size: 24px;
/*	padding-top: 1.2rem;*/
	padding-bottom: 0.5rem;
}	

h2{
	color: #1F2773;
	font-weight: bold;
	font-size: 20px;
	padding-top: 0.5em;
}

.h2-style-1{
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	width: 300px;
    height: 45px;
    background: radial-gradient(115.4% 335.05% at -0.82% 9.72%, #ff7a65 0%, #ED5616 100%);
    border-radius: 34px;
    
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
	padding-top: 0.5rem;
	margin-bottom: 1rem;
}

.h2-style-2{
	color: #E83E44;
	font-weight: 900;
	font-size: 24px;
	padding-bottom: 0.5rem;
}
h3{
	color: #1F2773;
	font-size: 12px;
	padding-top: 0em;
}
	
.h3-style-1{
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	padding-top: 1rem;
}	
	
.h5-style{
	font-size: 18px;
	color: #F1C955;
	padding-bottom: 1.5rem;	
}	

.h6-style{
	padding-bottom: 1rem;	
	
}

.text-red{
	color: #F1055C;
	font-size: 12px;
	font-weight: bold;
	padding-top: 15%;
	
	
}
	
.text-wh{
	color: #FFF;
	font-size: 8px;
	padding-left: 55%;
	
}
	
	
.h1-style-1{
	font-size: 2rem;
	padding-bottom: 0.5rem;
	padding-top: 4.5rem;
}
	
.h1-style-4{
	font-size: 2rem;
	padding-bottom: 0.25rem;
	padding-top: 5rem;
}	

.fun-style-1{
	font-size: 30px;
}

.h2-style-1{
	font-size: 16px;
	padding-bottom: 0rem;
	width: 80%;
}

h3{
	color: #ffffff;
	font-weight: bold;
	font-size: 16px;
	padding-top: 0em;
}

	

	
.img-button-type{
width:80%;
height: auto;
display: block;
margin: 0 auto;
padding-top: 50px;
/*-webkit-filter: drop-shadow(6px 6px 7px rgba(0, 0, 0, 0.349));
filter: drop-shadow(6px 6px 7px rgba(0, 0, 0, 0.349));*/
}	

	
.two-img{
    padding-top: 1rem;
	margin: 0 auto;
    width: 110%;
	padding-bottom: 2rem;
	padding-right: 10%;
	
}

	
	
.qr-img{
    margin: 0 auto;
    width: 100%;
    padding-bottom: 10px;
}
	
.slogan-img{
    margin: 0 auto;
    width: 70%;
	
}		

.gift-style{
	width: 180px;
	height: auto;
}
	
.three-img{
	width: 180px;
	height: auto;
}	

.box02{
	padding-top: 1em;
	padding-bottom: 2em;
}

.row{
	--bs-gutter-y:1rem;
}

.card {
	--bs-card-spacer-y: 1rem;
	--bs-card-spacer-x: 1rem;
	--bs-card-title-spacer-y: 0.5rem;
	--bs-card-border-width: 1px;
	--bs-card-border-color: var(--bs-border-color-translucent);
	--bs-card-border-radius: 0.375rem;
	--bs-card-box-shadow: ;
	--bs-card-inner-border-radius: calc(0.375rem - 1px);
	--bs-card-cap-padding-y: 0.5rem;
	--bs-card-cap-padding-x: 1rem;
	--bs-card-cap-bg: rgba(0, 0, 0, 0.03);
	--bs-card-cap-color: ;
	--bs-card-height: ;
	--bs-card-color: ;
	--bs-card-bg: #fff;
	--bs-card-img-overlay-padding: 1rem;
	--bs-card-group-margin: 0.75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: var(--bs-card-height);
	word-wrap: break-word;
	background-color: var(--bs-card-bg);
	background-clip: border-box;
	border: var(--bs-card-border-width) solid var(--bs-card-border-color);
	border-radius: var(--bs-card-border-radius);
	width: 280px;
	margin: 0 auto;
}

.card-title{
	font-weight: bold;
	font-size: 18px;
	color: #F1C955;
	padding-top: 15px;
	line-height: 1.8;
}
.card-title2{
	font-weight: bold;
	font-size: 12;
	color: #696969;
	padding-top: 8px;
}	

.card-text{
	font-weight: bold;
	font-size: 18px;
	color: #ff8800;
	text-align: center;
}

.card-text2{
	font-weight: bold;
	font-size: 16px;
	color: #13005A;
}

.card-body h2{
	font-size: 20px;
	font-weight: 600;
	color: #08236C;
}
	
	
.etf-img{
    width: 100%;
    margin: 0 auto;
	padding-bottom: 1rem;
	
	
}	
	
.advantage-p{
	font-size: 16px;
}

.advantage-img{
	width: 40%;
	margin: 0 auto;
	padding-top: 2rem;
	padding-bottom: 1rem;
}	
	

.mission-img{
	width: 220px;
	margin: 0 auto;
}


.h1-style-2{
	font-size: 1.1rem;
	padding-bottom: 0.5rem;
	font-weight: bolder;
}

.fun-style-2{
	font-size: 30px;
	font-weight: bolder;
}

.step-size{
	
	margin: 0 auto;
}



.h1-style-3{
	font-size: 20px;
	font-weight: bolder;
	color: #4B92BF;
	padding-top: 1.8rem;
	
	
}
	
.h1-style{
	text-align: center;
	color: #0B54BF;
	font-weight: 600;
	font-size: 22px;
	padding-top: 1.2rem;
	padding-bottom: 1rem;
}	
	
.text-center{
/*	padding-bottom: 1.8rem;*/
	padding-bottom: 0.2rem;
}	



.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform 0.6s ease-in-out;
	margin-bottom: 5rem;
  }


.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 0;
	left: 15%;
	top: 92%;
	padding-top: 0;
	padding-bottom: 0;
	color: 0;
	text-align: center;
}

.step-p-style{
	font-size: 16px;

}


.getstarted-step,
.getstarted-step:focus {
			font-size: 18px;
			width: 80%;
			margin: 0 auto;
}


.box03{
	text-align: left;
}

.small-p{
	font-size: 16px;
	margin-bottom: 0.5rem;
}



.normal-p{
	font-size: 16px;
}

.go-test-img{
	width: 100%;
	height: auto;
}

.smile-img{
	width: 50%;
	height: auto;
}



.note{
	width: 100%;
	padding-bottom: 0em;
	padding-top: 0em;
}

.note h2{
	font-size: 22px;
}

.note ol{
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.slide_toggle {
	text-align: left;
	line-height: 200%;
	font-size: 14px;
	overflow:hidden;
	padding-top: 2px;
	padding-left: 10px;
}
	
.slide_toggle:hover {
	text-align: left;
	line-height:200%;
	font-size: 14px;
	overflow:hidden;
	padding-top: 2px;
	padding-left: 10px;
}
	
.slide_toggle + div {
	text-align: left;
	font-size: 14px;
	display: none;
	width:100%;
	overflow:hidden;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20;
	margin-left: auto;
}

.yt{
	width: 80%;
	margin: 0 auto ;
}

/* == FOOTER == */
.cis{
font-size: 10px;
}

.footer-lg{
display: none;
}

.footer-sm{
display: block;
font-size: 13px;
}



/*
#mybutton {
	padding: 12px;
	background-image: linear-gradient(to top,  #ff3946  0%, #ffa1a1  100%);
	position: sticky;
	bottom: 0;
	z-index: 999;
	
	border-radius: 20px 20px 0 0;
  
  }
  #mybutton a {
	 display: flex;
	  justify-content: center;
	  align-items: center;
	color: white;
	   font-size: 20px;
	  font-weight: 600;
   letter-spacing: 2px;
  }


}
*/



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 62px;
  z-index: 99999;
  background: #F89900;
  width: 40px;
  height: 40px;
  border-radius: 60px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #C87C00;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}	


/* == FOOTER == */
.cis{
	font-size: 10px;
}

.footer-lg{
display: none;
}

.footer-sm{
display: block;
font-size: 13px;
}



	
.link--highlight,
.link--highlight:active,
.link--highlight:focus,
.link--highlight:hover {
  text-decoration: none;
  color: #ac1f35;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #333;
  transition: color 0.5s;
  background-color: #c9c9c9;
}

.link-btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: 1;
  left: 0;
  top: 0;
  transition: transform 0.5s;
}

.link-btn[data-text]:after {
  content: attr(data-text);
  display: block;
  flex: none;
  margin-left: 10px;
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 130%;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .link-btn[data-text]:after {
    font-size: 1.125rem;
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0.02em;
    margin-left: 8px;
  }
}
.link-btn,
.link-btn:active,
.link-btn:focus,
.link-btn:hover {
  text-decoration: none;
}

.link-btn__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
  flex: none;
  position: relative;
  z-index: 2;
  transition: color 0.5s;
}

@media (max-width: 480px) {
  .link-btn__icon {
    width: 24px;
    height: 24px;
  }
}
body:not(.mobile) .link-btn:active,
body:not(.mobile) .link-btn:focus,
body:not(.mobile) .link-btn:hover {
  color: #333;
}

body:not(.mobile) .link-btn:active:before,
body:not(.mobile) .link-btn:focus:before,
body:not(.mobile) .link-btn:hover:before {
  transform: translateY(-100%);
}

.link-btn--main {
  color: #fff;
  background-color: #000;
}

.link-btn--main:before {
  background: radial-gradient(97.73% 2804.85% at 2.27% 100%, #F4F1EC 0%, #FFFFFF 100%);
  box-shadow: 0px 0px 36px rgba(139, 145, 150, 0.25);
}

.link-btn--main,
.link-btn--main:active,
.link-btn--main:focus,
.link-btn--main:hover {
  color: #fff !important;
}

body:not(.mobile) .link-btn--main:active .link-btn__icon,
body:not(.mobile) .link-btn--main:hover .link-btn__icon {
  color: #ac1f35;
}
	
	

.accordion{
	padding-bottom: 1rem;
}

.accordion-button {
	font-size: 16px;
}



.accordion-body {
	line-height: 22px;
	letter-spacing: 0px;
	font-size: 16px;
	
}
	

/*slider滑動的底色*/
.portfolio_slider {
  margin: 30px auto;
  max-width: 1200px;
  
}
.portfolio_slider {
  flex: 1 1 0;
}

.inner {
  padding: 6px;
}

.inner img {
  width: 90%;
  height: auto;
}
	



.hero-banner {
  padding-bottom: 30px;
    
}

@media only screen and (max-width: 768px) {
  .hero-banner {
  padding-top: 60px;
}
}


.hero-banner {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-size: cover;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-banner .left-hero-color {
  padding-top: 250px;
  z-index: 1;
}
.hero-banner .left-hero-color::before {
  position: absolute;
  content: "";
  top: 150px;
  left: -150px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-banner .left-hero-color img {
  margin-left: -35px;
}
.hero-banner .left-hero-color h1, .hero-banner .left-hero-color .h1 {
  font-size: 75px;
  max-width: 70%;
}
.hero-banner .left-hero-color p {
  color: #7A8496;
  font-size: 18px;
  padding: 30px 0;
  font-weight: 500;
}
.hero-banner .left-hero-color a span {
  transform: rotate(90deg);
}
.hero-banner .right-hero-color {
    padding-top: 100px;
    z-index: 1;
}
.hero-banner .right-hero-color::after {
  position: absolute;
  content: "";
  top: 250px;
  right: -150px;
  width: 35%;
  height: 70%;
  background-size: contain;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
  z-index: -1;
}
	
	
#mybutton {
	padding: 12px;
	background-image: linear-gradient(to top,  #ff7d04  0%, #ffc74e  100%);
	position: sticky;
	bottom: 0;
	z-index: 999;
	
	border-radius: 20px 20px 0 0;
  
  }
  #mybutton a {
	 display: flex;
	  justify-content: center;
	  align-items: center;
	color: white;
	   font-size: 20px;
	  font-weight: 600;
   letter-spacing: 2px;
  }	

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  padding: 20px 0;
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;

  color: #fff;

  clear: both;
  background-size: 100%;
  background-color: #a1a1a1;

  letter-spacing: 1px;
  font-size: 15px;
  line-height: 18px;
  margin: 0px auto;

}




@media (max-width: 767px) {
  footer {

    
  }

  footer span {
    display: block;
    text-indent: -99999px;
    height: 7px;
  }
}