@charset "utf-8";
/* CSS Document */


/*------------------# General-----------------*/
html {
	font-size: 16px;
}
body {
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Chiron GoRound TC", sans-serif;
  color: #333333;
	word-spacing: 0px;
	letter-spacing: 0px;
	font-size: 20px;
  font-weight: 400;
}

a {
  color: #ff626a; /*#c43333;*/
  text-decoration: none;
}

a:hover {
    color: #004a8c;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

/*------------------------ # Preloader -----------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e2b344;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*-------------------- # Back to top button ------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background-color: #ff626a;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
    background-color: #FF0000;
    color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*----- # Disable AOS delay on mobile -----*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*------------------------- # Header -------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #FFFFFF;
}

/*#header.header-transparent {
  background: transparent;
}*/

#header.header-scrolled {
    background-color: #FFFFFF;
    height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------- # Navigation Men ---------------------*/
/* web 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: 10px 0 10px 30px;
  font-size: 1.2em; /*15px;*/
  font-weight: 500;
  /*font-family: "Poppins", sans-serif;*/
  color: #004a8c;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 5px;
  left: 30px;
  background-color: #004a8c; /*#C43333;*/
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 50px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #004a8c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #004a8c; /*#C43333;*/
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  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: #cff4fc; /*#ffffff;*/
  transition: 0.3s;
  z-index: 999;
  height: 500px;
  box-shadow: 0px 0px 8px 8px rgba(105, 105, 105, 0.5);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /*bottom: 15px;*/
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  /*background-color: #fff;*/
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  /*font-size: 15px;*/
  color: #004a8c;
  /*border-bottom: 1px #ffeaea dotted;*/
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #004a8c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #e2b344;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------元件---------------*/
.Yu_l{
    display: block;
    position: absolute;
    bottom: 0px;
    left: 275px;
    width: 100px;
    height: auto;
}

/*---------------------# info Section -----------------------*/


.bg-info {
    background-color: #23496f !important;
}

/*---------------------# notice Section -----------------------*/
#notice {
    width: 100%;
    /*background: url("../images/notice-bg.png");*/
    background-size:contain;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    padding: 6% 0 40px;
}

.bg-notice {
    background-color: #23496f !important; /*#ffabab !important;*/
}

/*---------------------# product Section -----------------------*/
#STEP {
    width: 100%;
    /*background: url("../images/product-bg.png");*/
    background-size:contain;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    padding: 6% 0 40px;
}

.bg-STEP {
    background-color: #19a7ce !important; 
}

/*---------------------# QA Section -----------------------*/
#QA {
    width: 100%;
    /*background: url("../images/QA-bg.png");*/
    background-size:contain;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    padding: 6% 0 40px;
}

.bg-QA {
    background-color: #146c94 !important;
}



/*---------------------# master Section -----------------------*/
#master {
    width: 100%;
    /*background: url("../images/main_bg.png");*/
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0 40px;
    margin-right: 0px;
    margin-left: 0px;
}

.bg-master {
    background-color: #8cd7f5 !important; /*#ffeaea !important;*/
}
    
.item_main_bk {
  display: inline-block;
  position: absolute;
  z-index: -1000;
}

.item_title {
  display: inline-block;
  position: absolute;
  z-index: 500;
}

.item_cloud {
  display: inline-block;
  position: absolute;
  z-index: 600;
}

.item_cofetti {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 90vw;
    height: auto;
}

.item_left1 {
  display: inline-block;
  top: 160px;
  left: 50px;
  width: 30vw;
  height: auto;
  /*padding: 15px;
  box-sizing: border-box;*/
  position: absolute;
  z-index: 4;
}

.item_l_dragon {
  display: inline-block;
  /*bottom: 5px;
  left: 390px;*/
  width: 6vw;
  height: auto;
  /*padding: 15px;
  box-sizing: border-box;*/
  position: absolute;
  z-index: 3;
  transition: 0.3s;
  left: calc(29% - 47px);
  bottom: calc(10% - 47px);
}

.item_r_dragon {
  display: inline-block;
  top: 65px;
  right: 0px;
  width: 65vw;
  height: auto;
  /*padding: 15px;
  box-sizing: border-box;*/
  position: absolute;
  z-index: 3;
}

.item_right1 {
  display: inline-block;
  top: 120px;
  right: -268px;
  width: 40vw;
  height: auto;
  /*padding: 15px;
  box-sizing: border-box;*/
  position: absolute;
  z-index: 5;
}

.heartBox {
    animation: heartBoxfly 10s infinite ease-in-out;
}

@keyframes heartBoxfly {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(-5px, 10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
    
}

.coinBox {
    animation: coinBoxfly 5s infinite ease-out;
    /*animation: coinBoxfly 1s infinite cubic-bezier(0.31, 0.01, 0.69, 1)*/
}

@keyframes coinBoxfly {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(5px, -10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
    
}

#master h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

/*#master span {
  color: #fff;
  border-bottom: 4px solid #E2B344;
}*/

#master h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#master .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  border: solid 1px #e2b344;
}

#master .btn-get-started:hover {
  /*background: #17b57d;*/
	background: #e2b344;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  /*#master {
    background-attachment: fixed;
  }*/
}

@media (max-width: 991px) {
  /*#master {
    padding-top: 80px;
  }*/

  #master .animated {
    animation: none;
  }

  #master .master-img {
    text-align: center;
  }

  #master .master-img img {
    max-width: 50%;
  }

  #master h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #master h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #master .master-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/**
.master-waves {
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 120px; 
    z-index: 5;
    position: relative;
}
/**
.wave_1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave_2 use {
  animation: move-forever2 8s cubic-bezier(1, 0.01, 0.32, 0.74) infinite;
  animation-delay: -2s;
}

.wave_3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}
**/
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*-----------------------# Sections ---------------------------*/
section {
  padding: 60px 0px;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  /*color: #aaaaaa;*/
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #E2B344;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  /*color: #010483;*/
}


/*-----------------------# app_start-----------------------*/
.app_start {
  padding: 40px 0 0 0;
}

.app_start .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  margin-bottom: 15px;
}

.app_start .icon-box {
  margin-top: 40px;
}

.app_start .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}

.app_start .icon-box .icon i {
  color: #e2b344;
  font-size: 32px;
}

.app_start .icon-box:hover .icon {
  background: #e2b344;
  border-color: #e2b344;
}

.app_start .icon-box:hover .icon i {
  color: #fff;
}

.app_start .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.app_start .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.app_start .icon-box .title a:hover {
  color: #e2b344;
}

.app_start .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.app_start .video-box {
  background: url("../img/app_start.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

.app_start .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.app_start .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.app_start .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.app_start .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.app_start .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*------------------------ # Features ------------------------*/

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover {
  background: #ebebff;
}

/*------------------------ # Counts --------------------------*/

.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #e2b344;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #010483;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*------------------------ # Details -------------------------*/

.details {
  /*background: url("../images/content-bg.png");*/
  background-size: contain;
  background-position: left top;
  background-repeat:repeat-y;
}

.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #010483;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e2b344;
}

.details .content p:last-child {
  margin-bottom: 0;
}



/*----------------------- # Gallery --------------------------*/

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# intro
--------------------------------------------------------------*/
.intro {
    padding: 100px 0;
    background-repeat: no-repeat;
    /*background-image: url("../images/bg_intro.jpg");*/
    background-position: center bottom;
    background-size: cover;
    position: relative;
    color: #ffffff;
}

.intro::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*background: #003a5D;*/
  background: rgba(0,58,93, 0.85);
}

.intro .section-header {
  margin-bottom: 40px;
}

.intro .intro-carousel,
.intro .intro-slider {
  overflow: hidden;
}

.intro .intro-item {
  text-align: center;
  color: #fff;
}

.intro .intro-item .intro-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.intro .intro-item h3 {
  font-size: 40px;
  font-weight: bolder;
  margin: 10px 0 5px 0;
  /*color: #E2B344;*/
}

.intro .intro-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.intro .intro-item .quote-icon-left,
.intro .intro-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.intro .intro-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.intro .intro-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.intro .intro-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #fff;
}

.intro .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.intro .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.intro .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e2b344;
}

@media (min-width: 1024px) {
  .intro {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .intro .intro-item p {
    width: 80%;
  }
}

/*----------------------- # Team -----------------------------*/

/*.team {
  background: #fff;
}*/

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  /*bottom: -80px;*/
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  /*font-size: 16px;
  color: #01036f;*/
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #e2b344;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  /*font-style: italic;*/
  display: block;
  /*font-size: 13px;
  color: #01036f;*/
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.team .member .social a:hover {
  color: #e2b344;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}


/*------------------------ # Footer --------------------------*/
#footer {
    /* [disabled]background-color: #F1F1F1; */
    color: #333;
    font-size: 14px;
    position: relative;
}

#footer .footer-top {
  padding: 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 15px;
    /* [disabled]background-color: #010246; */
    color: #333333;
    border-top: 4px solid #e2b344;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /*font-family: "Montserrat", sans-serif;*/
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #e2b344;
  color: #fff;

  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #61ebba;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #149f6e;
}

#footer .copyright {
    border-top: 1px solid #E0E0E0;
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*-----------------------------------------------------*/
.bg-app {
	background: #003A5D; 
}

.bg-c {
    background: url("../images/bg_c1.png");
    background-size: cover;
    background-position:left;
    background-repeat:no-repeat;
    background-attachment: fixed;
}

.appdw {
    background-repeat: no-repeat;
    background-image: url(../images/bg_appdw.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    background-attachment: fixed;
}

.appdw::before {
  content: "";
  position: absolute;
  background: rgba(255,255,255, 0.25);
}

.text-gold {
	color: #E2B344 !important;
}

.text-navy {
	color: #004a8c !important;
}

.text-green {
	color: #2ec4b6 !important;
}

.text-darkred {
    color: #D40000 !important;
}

.text_line{
    border-bottom: 1px dotted #FF9C9C;
    width: content;
}

.text-bold {
    font-weight: 700;
}

.shadow-appOS {
    width: auto;
    height: auto;
    line-height: 4rem;
    background-color: #fffae6;
    padding: 20px;
    border-radius: 0 0 30px 30px;
    border: #cc8e5a 2px solid;
    border-top: 0px;
}

/*----- tab -----*/
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    background-color: #ffffff;
    /*border-color: #fd7e14;*/
    border-radius: 20px 20px 0 0;
    border: #cc8e5a 2px solid;
    border-bottom: 0px;
    padding: 20px 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #fffae6;
    border-color: #cc8e5a;
    border-bottom: 0px;
    padding: 20px 0;
}

@media (max-width: 1366px) {
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    font-size: 16px ;
    font-weight: bold;
    padding: 10px 0;
  }
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    font-size: 16px ;
    font-weight: bold;
    padding: 10px 0;
  }
    .shadow-appOS {
    font-size: medium !important;
    /*line-height: 2rem !important;*/
    }
    
}

@media (min-width: 1024px) {
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    font-size: 18px !important;
    font-weight: bold;
  }
    .shadow-appOS {
    font-size: medium !important;
    }

}

@media (min-width: 992px) {
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    font-size: 22px !important;
  }
    .shadow-appOS {
    font-size: 20px !important;
    }

}


/* Dashed red border */
hr.new2 {
  border-top: 2px dashed red;
}

/*----- scrollbar -----*/
.scrollbar {
  height: auto;
  width: auto;
  overflow-y: scroll;
}

/*
 *  STYLE 1
 */
#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background-color: #ffffff;
}

#style-1::-webkit-scrollbar {
  width: 12px;
  background-color: #ffeaea;
}

#style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  background-color: #ff626a; /*#FF9C9C;*/
}

/*
 *  STYLE 2
 */
#style-2::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background-color: #ffffff;
}

#style-2::-webkit-scrollbar {
  width: 12px;
  background-color: #ffeaea;
}

#style-2::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  background-color: #ff626a; /*#FF9C9C;*/
}

/*
 *  STYLE 3
 */
#style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background-color: #ffffff;
}

#style-3::-webkit-scrollbar {
  width: 12px;
  background-color: #ffeaea;
}

#style-3::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  background-color: #ff626a; /*#FF9C9C;*/
}

.mirror_LR {          /* 水平鏡像翻轉 */
    -moz-transform:scaleX(-1);
    -webkit-transform:scaleX(-1);
    -o-transform:scaleX(-1);
    transform:scaleX(-1);
    /*兼容IE*/
    filter:FlipH;
}
.mirror_UD {        /* 垂直鏡像翻轉 */
    -moz-transform:scaleY(-1);
    -webkit-transform:scaleY(-1);
    -o-transform:scaleY(-1);
    transform:scaleY(-1);
    /*兼容IE*/
    filter:FlipV;
}

.text-darkblue {
    color: #064183 !important;
}


/*=============accordion===============*/


.accordion-flush .accordion-item:first-child {
    border-color: #fff; /* 確保無框線 */
}
.accordion-item:not(:first-of-type) {
    border-color: #fff; /* 確保無框線 */
}

.accordion-item .accordion-button {
  background-color: #ffffff;
  box-shadow: none;
  color: var(--bs-primary);
}
/* 1. 隱藏原生的箭頭圖示，並設置 ::after 偽元素樣式 */
.accordion-button::after {
    /* 移除 Bootstrap 預設的 background-image 樣式 */
    background-image: none !important;

    /* 設置我們的加號/減號樣式 */
    content: '+'; /* 預設內容為加號 */
    font-size: 1.25rem;
    font-weight: bold;
    /* 確保圖示位於 Accordion-button 的右側 */
    width: 1em; 
    text-align: center;
    display: flex; /* 使用 flex 排列，使其能獨立於文字定位 */
    align-items: center;
    justify-content: center;
    margin-left: auto; /* 將圖示推向最右側 */
    
    /* 確保所有狀態下符號的位置一致 */
    transform: none; 
}

/* 2. 在展開狀態時，將加號替換為減號 */
/* 當按鈕不是收合狀態時 (即展開狀態)，我們改變 ::after 的 content */
.accordion-button:not(.collapsed)::after {
    content: '-';
    font-weight: bold;
    color: var(--bs-accordion-active-color);
}

.accordion-button:not(.collapsed) {
    color: var(--bs-link-hover-color);
    background-color: #ffffff;
    border-bottom: 1px #cfe2ff solid !important;
    
}
/*
.accordion-button:focus {
  border-color: #fff;
  box-shadow: none;
}*/