/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */ :root {
  --default-font: Arial, "微軟正黑體", "Microsoft JhengHei", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: Arial, "微軟正黑體", "Microsoft JhengHei", "Nunito", sans-serif;
  --nav-font: Arial, "微軟正黑體", "Microsoft JhengHei", "Inter", sans-serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */ :root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */ :root {
  --nav-color: #313336; /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #007d7d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
/* Smooth scroll */ :root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
a {
  /*color: var(--accent-color);*/
  color:#007d7d;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); /*
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 80px;
  margin-right: 30px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .logo a {
  color: #007d7d;
}
@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }
  .header .logo h1 {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .topbar {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .header .topbar2 {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
	
/*  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }*/
	
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.topbar {
  display: block;
  height: 35px;
  background-color: #f0f5f3;
  border-bottom: 1px solid #c9c9c9;
  padding: 8px 150px;
  font-size: 14px;
  font-weight: 700;
  text-align: right !important;
  margin-top: 0px;
  color: #007d7d;
}
.topbar a {
  color: #007d7d;
}

.topbar2 {
    display: none;
}
@media (max-width: 540px) {
  .topbar {
    display: none;
  }
  .topbar2 a {
    color: #007d7d;
  }
  .topbar2 {
    display: block;
    height: 35px;
    background-color: #f0f5f3;
    border-bottom: 1px solid #c9c9c9;
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 700;
    text-align: right !important;
    margin-top: 0px;
    color: #007d7d;
  }
}







/* header 白底控制 ------------------------------*/
.index-page .header {
  /*--background-color: rgba(255, 255, 255, 0);*/
  --background-color: rgba(255, 255, 255, 1);
}
/* Index Page Header on Scroll ------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 15px 0px;
  }
  .navmenu ul {
    margin: 0px 0px 0px;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 0px;
    font-size:0.975rem;
    font-family: var(--nav-font);
    font-weight:400;
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    min-width: 130px; /*min-width: 108px;*/
    line-height: 1.25;
   /* letter-spacing: 0.36px;*/
    background-color: #fff;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 0.975rem;
    font-weight: 400;
    line-height: 1.25;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    /*color: var(--nav-hover-color);*/
    color: #007d7d;
    background-color: #fff47e;
    border-radius: 6px;
    padding: 16px 15px;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 0px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    /*box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);*/
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: -12px;
    border-radius: 0px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 0.975rem;
    font-weight: 400;
    line-height: 2;
    border-radius: 0px; /*次選單邊圓角*/
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 0.975rem;
    font-weight: 400;
    border-radius: 0px;
  }
  .nav-menu a {
    display: block;
    position: relative;
    color: #000000;
    transition: 0.3s;
    font-size: 0.975rem;
    font-weight: 400;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    line-height: 1.25;
    letter-spacing: 0.36px;
    background-color: #fff;
    border-radius: 0px;
    /*max-width:174px;*/
    min-width: 108px;
    /*min-height:60px;*/
    padding: 16px 15px;
  }
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    /*color: #45A19A;
  text-decoration-style: solid 3px #007d7d;*/
    color: #007d7d;
    background-color: #fff47e;
    border-radius: 6px;
    /*max-width:174px;*/
    /*min-width:108px;*/
    /*min-height:60px;*/
    padding: 16px 15px;
  }
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
    margin-left: -23px;
  }
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  .nav-menu .drop-down ul a {
    /*padding: 10px 20px;*/
    transition: 0.3s;
    font-size: 0.975rem;
    font-weight: 400;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    text-transform: none;
    color: #007d7d;
  }
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #000000;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    font-weight: 700;
    border-radius: 6px;
  }
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 125%;
    border-radius: 6px;
    color: #007d7d;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    color: #007d7d;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .megamenu {
    position: static;
  }
  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .megamenu ul li {
    flex: 1;
  }
  .navmenu .megamenu ul li a, .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .megamenu ul li a:hover, .navmenu .megamenu ul li .active, .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .navmenu2 {
    padding:20px 10px;
	font-family: Arial, "微軟正黑體", "Microsoft JhengHei";
	text-align: left;
  }
  .navmenu2 ul {
    margin: 0px 5px 0px;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu2 li {
    position: relative;
	  text-align: center;
  }
  .navmenu2 a, .navmenu2 a:focus {
    color: var(--nav-color);
    padding: 16px 0px;
    font-size: 1rem;
    font-family: var(--nav-font);
    font-weight:400;
    display: flex;
    align-items: center;
	text-align: center;
    border-radius: 4px;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    min-width: 128px; /*min-width: 108px;*/
    line-height:1;
	height: 70px;
    letter-spacing: 0.36px;
    /*background-color: #fff;*/
  }
  .navmenu2 a i, .navmenu2 a:focus i {
    font-size: 1rem;
    font-weight:400;
    line-height:1;
    margin-left:0px;
    transition: 0.3s;
    letter-spacing: 0.36px;
  }
  .navmenu2 li:last-child a {
    padding-right: 0;
  }
  .navmenu2 li:hover > a, .navmenu2 .active, .navmenu2 .active:focus {
    /*color: var(--nav-hover-color);*/
    color: #007d7d;
    background-color: #fff47e;
    border-radius:4px;
    padding:10px 10px;
  }
  .navmenu2 .dropdown ul {
    margin:-20px 0px 0px;
    padding: 0px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left:0px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius:0px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    /*box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);*/
  }
  .navmenu2 .dropdown ul li {
    min-width: 200px;
    margin-left:0px;
    border-radius: 0px;
	  text-align: left;
  }
  .navmenu2 .dropdown ul a {
    padding: 10px 15px;
    font-size: 0.975rem;
    font-weight:400;
    line-height:1;
	  text-align: left;
    border-radius: 0px; /*次選單邊圓角*/
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu2 .dropdown ul a i {
    font-size: 1rem;
    font-weight:400;
    border-radius: 0px;
  }
  .nav-menu2 a {
    display: block;
    position: relative;
    color: #000000;
    transition: 0.3s;
    font-size: 1rem;
    font-weight:400;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    line-height:1;
    letter-spacing: 0.36px;
    background-color: #fff;
    border-radius: 0px;
    /*max-width:174px;*/
    min-width: 108px;
    /*min-height:60px;*/
    padding: 16px 15px;
  }
  .nav-menu2 a:hover, .nav-menu2 .active > a, .nav-menu2 li:hover > a {
    /*color: #45A19A;
  text-decoration-style: solid 3px #007d7d;*/
    color: #007d7d;
    background-color: #fff47e;
    border-radius: 6px;
    /*max-width:174px;*/
    /*min-width:108px;*/
    /*min-height:60px;*/
    padding: 16px 15px;
  }
  .nav-menu2 .drop-down ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
    margin-left: -23px;
  }
  .nav-menu2 .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .nav-menu2 .drop-down li {
    min-width: 180px;
    position: relative;
  }
  .nav-menu2 .drop-down ul a {
    /*padding: 10px 20px;*/
    transition: 0.3s;
    font-size: 1rem;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    font-weight:400;
    text-transform: none;
    color: #007d7d;
  }
  .nav-menu2 .drop-down ul a:hover, .nav-menu2 .drop-down ul .active > a, .nav-menu2 .drop-down ul li:hover > a {
    color: #000000;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    font-weight: 400;
    border-radius: 6px;
  }
  .nav-menu2 .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  .navmenu2 .dropdown ul a:hover, .navmenu2 .dropdown ul .active:hover, .navmenu2 .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu2 .dropdown:hover > ul {
    opacity: 1;
    top: 125%;
    border-radius: 6px;
    color: #007d7d;
    visibility: visible;
  }
  .navmenu2 .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    color: #007d7d;
    visibility: hidden;
  }
  .navmenu2 .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu2 .megamenu {
    position: static;
  }
  .navmenu2 .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu2 .megamenu ul li {
    flex: 1;
  }
  .navmenu2 .megamenu ul li a, .navmenu2 .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu2 .megamenu ul li a:hover, .navmenu2 .megamenu ul li .active, .navmenu2 .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu2 .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 8888;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 8888;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 8888;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
	
	
	
  .mobilem-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }	
  .navmenu2 {
    padding: 480px 600px 0px 0px;
    z-index: 8888;
    display: contents;
  }
  .navmenu2 ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 8888;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu2 a, .navmenu2 a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu2 a i, .navmenu2 a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu2 a i:hover, .navmenu2 a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu2 a:hover, .navmenu2 .active, .navmenu2 .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu2 .active i, .navmenu2 .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu2 .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }
  .navmenu2 .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu2 .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobilem-nav-active {
    overflow: hidden;
  }
  .mobilem-nav-active .mobilem-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 8888;
  }
  .mobilem-nav-active .navmenu2 {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobilem-nav-active .navmenu2 > ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #333;
  font-size: .875rem;
  background: #ffffff;
  border-top: 1px solid #c9c9c9;
}
#footer .footer-top {
  padding: 40px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 1.125rem;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: .4;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: '微軟正黑體', 'Microsoft JhengHei', 'Arial';
  color: #000000;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 20px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links h4 {
  font-size: 1.25rem;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: .4;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #000;
  font-size: 1.1rem;
  letter-spacing: -.05px;
  line-height: 1.6;
}
#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: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: .9375rem;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #007d7d;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}
#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #5fcf80;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3ac162;
}
#footer .footer-top2 {
  padding-top: 25px;
  padding-right: 0;
  padding-left: 0;
  /*padding-bottom: 15px;*/
  background: #ddd;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}
#footer .credits a {
  color: #3ac162;
  transition: 0.3s;
}
#footer .credits a:hover {
  color: #5fcf80;
}
#footer .social-links1 a {
  font-size: 18px;
  display: inline-block;
  background: #4b6ab1;
  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 .social-links1 a:hover {
  background: #4b6ab1;
  color: #fff;
  text-decoration: none;
}
#footer .social-links2 a {
  font-size: 18px;
  display: inline-block;
  background: #e83f3a;
  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 .social-links2 a:hover {
  background: #e83f3a;
  color: #fff;
  text-decoration: none;
}
#footer .social-links3 a {
  font-size: 18px;
  display: inline-block;
  background: #01b902;
  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 .social-links3 a:hover {
  background: #01b902;
  color: #fff;
  text-decoration: none;
}
#footer .social-links4 a {
  font-size: 18px;
  display: inline-block;
  background: #a4c639;
  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 .social-links4 a:hover {
  background: #a4c639;
  color: #fff;
  text-decoration: none;
}
#footer .social-links5 a {
  font-size: 18px;
  display: inline-block;
  background: #979797;
  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 .social-links5 a:hover {
  background: #979797;
  color: #fff;
  text-decoration: none;
}
#footer .sharebox2 {
  margin-left: -110px;
  margin-top: 0px;
}
@media screen and (max-width: 1400px) {
  #footer .sharebox2 {
    margin-left: -85px;
  }
}
@media screen and (max-width: 1365px) {
  #footer .sharebox2 {
    margin-left: -40px;
  }
}
@media screen and (max-width: 950px) {
  #footer .sharebox2 {
    margin-left: 0px;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}
.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  animation-delay: -0.5s;
}
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  /*position: fixed; 向上箭頭設定*/
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}
.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}
section, .section01 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px;
  /*scroll-margin-top: 100px;*/
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section01 {
    /*scroll-margin-top: 66px;*/
  }
}
section {
  padding: 60px 0;
  overflow: hidden;
}
.section1 {
  padding: 0px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.section-bg {
  background-color: #f6f7f6;
}
.section-title {
  padding-bottom: 20px;
}
.section-title01 {
  padding-bottom: 10px;
}
.section-title02 {
  padding-bottom: 20px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 30px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  color: #37423b;
}
.section-title01 p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  color: #37423b;
}
.section-title p.t01 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  color: #007d7d;
}
.section-title01 p.t01 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  color: #007d7d;
}
.breadcrumbs {
  /*margin-top: 73px;區塊間距*/
  text-align: center;
  background: #45A19A;
  padding: 30px 0;
  color: #fff;
}
@media (max-width: 992px) {
  .breadcrumbs {
    /*margin-top: 63px;區塊間距*/
  }
}
.breadcrumbs h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
.breadcrumbs p {
  font-size: 14px;
  margin-bottom: 0;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/*.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}
.hero h1 span {
  color: var(--accent-color);
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}
.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero .btn-watch-video:hover {
  color: var(--accent-color);
}
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero .btn-get-started, .hero .btn-watch-video {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}
.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}
.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}
.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}
.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}
.featured-services .service-item .title a {
  color: var(--heading-color);
}
.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}
.featured-services .service-item .description {
  font-size: 14px;
}
.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}
.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}
.about .content p:last-child {
  margin-bottom: 20px;
  ;
}
.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}
.about .content .read-more:hover i {
  margin-left: 10px;
}
.about .about-images img {
  border-radius: 10px;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cc0000;
}
.about .content h5 {
  font-weight: 600;
  font-size: 20px;
  color: #ff7200;
}
.about .content01 h5 {
  font-weight: 600;
  font-size: 20px;
  color: #ff7200;
}
.contitle01 {
  font-weight: 600;
  font-size: 24px;
  color: #ff7200;
  line-height: 45px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
  line-height: 30px;
  display: flex;
  margin-top: -2px;
}
.about .content01 ul {
  list-style: decimal-leading-zero;
  padding: 1px 5px 0px 25px;
  margin-bottom: auto;
}
.about .content01 ul li {
  display: list-item;
  /* padding-bottom: 0px;
  line-height: 30px;
  margin-top: -2px;  */
}
.ttcontentw01 {
  padding-bottom: 10px;
  line-height: 30px;
  display: list-item;
  margin-top: -2px;
  margin: 0px 0px 0px 25px;
}
.ttcontentw01 p {
  padding-bottom: 10px;
  line-height: 30px;
  display: list-item;
  margin-top: -2px;
  margin: 0px 0px 0px 25px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 10px;
  color: #007d7d;
}
.about .content .learn-more-btn {
  background: #5fcf80;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}
.about .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}
@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cc0000;
}
.about .content h5 {
  font-weight: 600;
  font-size: 20px;
  color: #ff7200;
}
.about .content01 h5 {
  font-weight: 600;
  font-size: 20px;
  color: #ff7200;
}
.contitle01 {
  font-weight: 600;
  font-size: 24px;
  color: #ff7200;
  line-height: 45px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
  line-height: 30px;
  display: flex;
  margin-top: -2px;
}
.about .content01 ul {
  list-style: decimal-leading-zero;
  padding: 1px 5px 0px 25px;
  margin-bottom: auto;
  line-height: 32px;
}
.about .content01 ul li {
  display: list-item;
  /* padding-bottom: 0px;
  line-height: 30px;
  margin-top: -2px;  */
}
.ttcontentw01 {
  padding-bottom: 10px;
  line-height: 30px;
  display: list-item;
  margin-top: -2px;
  margin: 0px 0px 0px 25px;
}
.ttcontentw01 p {
  padding-bottom: 10px;
  line-height: 30px;
  display: list-item;
  margin-top: -2px;
  margin: 0px 0px 0px 25px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 10px;
  color: #007d7d;
}
.about .content .learn-more-btn {
  background: #5fcf80;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}
.about .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}
@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}
.about .newtitle01.active {
  color: #007d7d;
  text-decoration: underline;
  font-weight: 700;
  font-size: 20px;
}
.about .newtitle01 {
  color: #007d7d;
  text-decoration: underline;
  font-weight: 700;
  font-size: 20px;
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 0px;
}
.features .icon-box {
    display: inherit;
    text-align: center;
    /* align-items: baseline; */
    /* padding: 35px 10px; */
    margin: 5px;
    min-height: 90px;
    transition: 0.3s;
    border: 1px solid #ffb400;
    color: #ffffff;
    background-color: #ff7f0e;
    align-content: space-around;
}
.features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 5PX;
    line-height: 1.5;
    font-size: 16px;
}
.features .icon-box h3 a {
  color: #ffffff;
  transition: 0.3s;
}
.features .icon-box:hover {
  border-color: #ffb400;
  background-color: #ffffff;
}
.features .icon-box:hover h3 a {
  color: #37423b;
}
.icon-box01 {
  padding-top: 0px;
}
.icon-box01 {
  display: inherit;
  text-align: center;
  align-items: center;
  padding: 20px 10px;
  margin: 5px;
  min-height: 50px;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #ffb400;
  color: #ffffff;
  background-color: #ff7f0e;
}
.icon-box01 h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.icon-box01 h3 a {
  color: #ffffff;
  transition: 0.3s;
}
.icon-box01:hover {
  border-color: #ffb400;
  background-color: #ffffff;
}
.icon-box01:hover h3 a {
  color: #37423b;
}


.icon-box .ftxt01  {/*
	line-height:20px;
	padding-top:30px;*/
}

@media (max-width: 420px) {
.icon-box .ftxt01  {/*
	line-height:20px;
	padding-top:30px;*/
 }
	
}




.features .nav-tabs {
  border: 0;
}
.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}
.features .nav-item:last-child {
  margin-bottom: 0;
}
.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}
.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}
.features .nav-link p {
  font-size: 15px;
  margin: 0;
}
.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}
.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}
.features .tab-pane img {
  border-radius: 15px;
}
/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
  margin-top: 60px;
}
.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}
.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}
.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}
.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.features-details .features-item ul {
  list-style: none;
  padding: 0;
}
.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}
.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}
.features-details .features-item img {
  border-radius: 15px;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}
.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}
.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}
.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}
.services .service-item .read-more i {
  margin-left: 10px;
}
.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}
.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}
.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}
.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}
.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}
.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}
.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}
.services .service-item:hover h3 {
  color: var(--heading-color);
}
.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}
.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.more-features .icon-box {
  margin-top: 30px;
}
.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}
.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}
.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}
.pricing .description {
  font-size: 14px;
}
.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}
.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing ul li:last-child {
  padding-bottom: 0;
}
.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}
.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .featured {
  position: relative;
}
.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}
/*.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}*/
.faq .faq-container .faq-item {
  outline: none;
  border-radius: 8px 8px 0px 0px;
  margin-bottom: 20px;
  padding: 25px 50px 5px 40px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}
/*.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}*/
.faq .faq-container .faq-item h3 {
  color: #333;
  font-size: 1.18rem;
  font-weight: 700;
  display: block;
  position: relative;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}
.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
  background-color: #aff1ec;
}
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding: 30px 20px 20px 40px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  background-color: #f1fffe;
}
.faq .faq-container .faq-item .faq-content p .conbox01 {
  background-color: #f1fffe;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
  padding: 30px 20px 30px 40px;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}
.faq .faq-container .faq-item .faq-content p .conbox01 a {
  background-color: #f1fffe;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
  padding: 30px 20px 30px 40px;
  color: #007d7d;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.8;
}
.faq .faq-container .faq-item .faq-content p .concbox02 {
  display: block;
  float: left;
  margin: 0px 20px 0px 60px;
  padding: 15px 50px;
  text-align: center;
  border-radius: 10px;
  background-color: #45A19A;
  color: #fff;
}
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}
.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}
.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}
.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}
.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.testimonials .swiper-slide {
  opacity: 0.3;
}
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.service-details .service-box + .service-box {
  margin-top: 30px;
}
.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.service-details .services-list {
  background-color: var(--surface-color);
}
.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}
.service-details .services-list a:first-child {
  margin-top: 0;
}
.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.service-details .services-list a.active i {
  color: var(--contrast-color);
}
.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}
.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}
.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}
.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .download-catalog a:hover {
  color: var(--accent-color);
}
.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}
.service-details .help-box .help-icon {
  font-size: 48px;
}
.service-details .help-box h4, .service-details .help-box a {
  color: var(--contrast-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/*--------------------------------------------------------------
# 首頁下方綠底快捷區
--------------------------------------------------------------*/
.ServerF {
  padding: 20px 0;
  background-color: #007d7d;
}
.ServerF .counters span {
  font-size: 1.0625rem;
  display: block;
  color: #fff;
  font-weight: 700;
  padding-top: 5px;
}
.ServerF .counters span img {
  width: 10%;
  margin-bottom: 2px;
}
.ServerF .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: '微軟正黑體', 'Microsoft JhengHei', 'Arial';
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.bottomBn {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  font: inherit;
  line-height: 150%;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 0;
}
.web {
  display: block;
}
.tab {
  display: none;
}
.mobile {
  display: none;
}
.imgbox.full img {
  width: 100%;
}
.imgbox img {
  display: block;
  max-width: 100%;
}
.b01 {
  display: block;
  max-width: 50%;
}
@media only screen and (min-device-width : 768px) and (max-device-width :819px) and (orientation :landscape) and (-webkit-min-device-pixel-ratio:2) {
  .web {
    display: none;
  }
  .tab {
    display: block;
  }
  .mobile {
    display: none;
  }
  .b01 {
    display: block;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .web {
    display: none;
  }
  .tab {
    display: none;
  }
  .mobile {
    display: block;
  }
  .b01 {
    display: block;
    max-width: 70%;
  }
}
h1, h3 {
  text-transform: uppercase;
}
.titletxt01 {
  text-align: left;
  font-weight: bold;
  color: #45299b;
  margin: 20px 0px;
}
.titletxt02 {
  text-align: left;
  font-weight: bold;
  color: #1c6f6f;
  margin: 20px 0px;
}
.titletxt03 {
  text-align: left;
  font-weight: bold;
  color: #2f7cb7;
  margin: 20px 0px;
}
.titletxt04 {
  text-align: left;
  font-weight: bold;
  color: #ff6600;
  margin: 20px 0px;
}
.counter {
  text-align: center;
}
.count-up {
  margin: 0px 0px 30px;
  border: 0px solid #45A19A;
  border-radius: 10px;
  padding: 15px 5px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}
.counter-count {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  color: #0181cc;
  text-align: center;
  display: inline-block;
  margin: 20px 0px;
}
.counter-count2 {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  color: #0181cc;
  text-align: center;
  display: inline-block;
  margin: 20px 0px;
}
.countp00 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2;
  position: relative;
  color: #0181cc;
  text-align: center;
  display: inline-block;
  padding-bottom: 16px;
}

@media (max-width: 1180px) {
.countp00 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  position: relative;
  color: #0181cc;
  text-align: center;
  display: inline-block;
  padding-bottom: 16px;
}
}


.countp01 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  color: #666666;
  text-align: center;
  display: inline-block;
}
.countp02 {
  font-size: 0.91rem;
  line-height: 1.4;
  position: relative;
  color: #666666;
  text-align: center;
  display: inline-block;
}
/* -----Mail btn------- */
button.mailbtn {
  /*position: fixed;*/
  margin: 30px 0px 0px 0px;
  right: 25px;
  border: 5px solid #f9ff92;
  font-size: 30px;
  padding: 7px 0px 10px 0px;
  width: 40%;
  height: 80px;
  border-radius: 50px;
  transition: all 0.4s;
  color: #fff;
  background: #ff7200;
}
button.mailbtn i {
  color: #fff;
  font-size: 30px;
}
button.mailbtn:hover {
  transform: translateY(-5px);
  background: #226088;
  border: 5px solid #91d4ff;
}
button.mailbtn:hover i {
  color: #fff;
}
@media (max-width: 375px) {
  button.mailbtn {
    bottom: 22px;
    right: 25px;
    border: none;
    font-size: 20px;
    padding: 7px 0px 10px 0px;
    width: 95%;
    height: 50px;
    border-radius: 30px;
    transition: all 0.4s;
    color: #fff;
    background: #ff7200;
    font-size: 20px;
  }
  button.mailbtn i {
    color: #fff;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  button.mailbtn {
    /*position: fixed;*/
    bottom: 22px;
    right: 25px;
    border: none;
    font-size: 20px;
    padding: 7px 0px 10px 0px;
    width: 60%;
    height: 50px;
    border-radius: 30px;
    transition: all 0.4s;
    color: #fff;
    background: #ff7200;
    font-size: 22px;
  }
  button.mailbtn i {
    color: #fff;
    font-size: 22px;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}
.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #007d7d;
  color: #fff;
  transition: all 0.4s;
}
.back-to-top i:hover {
  background: #3ac162;
  color: #fff;
}
/* -----Scrolltop btn------- */
button.scrolltop-btn {
  position: fixed;
  bottom: 22px;
  right: 25px;
  border: none;
  background: #007d7d;
  width: 95px;
  height: 35px;
  padding-left: 10px;
  border-radius: 30px;
  transition: all 0.4s;
  color: #fff;
}
button.scrolltop-btn i {
  color: #fff;
  font-size: 20px;
}
button.scrolltop-btn:hover {
  transform: translateY(-5px);
  background: #6Accc9;
  /*border: 3px solid #6Accc9;*/
}
button.scrolltop-btn:hover i {
  color: #fff;
}
/* -----End of Scrolltop btn------- */
.serfaq {
  --bs-serfaq-color: var(--bs-body-color);
  --bs-serfaq-bg: var(--bs-body-bg);
  --bs-serfaq-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-serfaq-border-color: var(--bs-border-color);*/
  --bs-serfaq-border-width: var(--bs-border-width);
  --bs-serfaq-border-radius: var(--bs-border-radius);
  --bs-serfaq-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-serfaq-btn-padding-x: 1.25rem;
  --bs-serfaq-btn-padding-y: 1rem;
  --bs-serfaq-btn-color: var(--bs-body-color);
  --bs-serfaq-btn-bg: var(--bs-serfaq-bg);
  --bs-serfaq-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-serfaq-btn-icon-width: 1.25rem;
  --bs-serfaq-btn-icon-transform: rotate(-180deg);
  --bs-serfaq-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-serfaq-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-serfaq-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-serfaq-body-padding-x: 1.25rem;
  --bs-serfaq-body-padding-y: 1rem;
  --bs-serfaq-active-color: var(--bs-primary-text-emphasis);
  --bs-serfaq-active-bg: var(--bs-primary-bg-subtle)
}
.serfaq-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-serfaq-btn-padding-y) var(--bs-serfaq-btn-padding-x);
  font-size: 1.2rem;
  color: var(--bs-serfaq-btn-color);
  text-align: left;
  background-color: var(--bs-serfaq-btn-bg);
  border: 0;
  border-radius: 8px 8px 0px 0px;
  overflow-anchor: none;
  transition: var(--bs-serfaq-transition);
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1.1rem;
  font-weight: 700;
  /*padding: 20px 30px 20px 30px;*/
  padding: 0px 0px 20px 00px;
  outline: none;
  /*background-color: #aff1ec;*/
  border-radius: 8px 8px 0px 0px;
  /* box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
}
@media (prefers-reduced-motion:reduce) {
  .serfaq-button {
    transition: none
  }
}
.serfaq-button:not(.collapsed) {
  color: var(--bs-serfaq-active-color);
  background-color: var(--bs-serfaq-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-serfaq-border-width)) 0 var(--bs-serfaq-border-color)
}
.serfaq-button:not(.collapsed)::after {
  background-image: var(--bs-serfaq-btn-active-icon);
  transform: var(--bs-serfaq-btn-icon-transform)
}
.serfaq-button::after {
  flex-shrink: 0;
  width: var(--bs-serfaq-btn-icon-width);
  height: var(--bs-serfaq-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-serfaq-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-serfaq-btn-icon-width);
  transition: var(--bs-serfaq-btn-icon-transition)
}
@media (prefers-reduced-motion:reduce) {
  .serfaq-button::after {
    transition: none;
  }
}
.serfaq-button:hover {
  z-index: 2;
}
.serfaq-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-serfaq-btn-focus-box-shadow)
}
.serfaq-header {
  margin-bottom: 0;
}
.serfaq-item {
  color: var(--bs-serfaq-color);
  background-color: var(--bs-serfaq-bg);
  border: var(--bs-serfaq-border-width) solid var(--bs-serfaq-border-color);
}
.serfaq-item:first-of-type {
  border-top-left-radius: var(--bs-serfaq-border-radius);
  border-top-right-radius: var(--bs-serfaq-border-radius);
}
.serfaq-item:first-of-type > .serfaq-header .serfaq-button {
  border-top-left-radius: var(--bs-serfaq-inner-border-radius);
  border-top-right-radius: var(--bs-serfaq-inner-border-radius)
}
.serfaq-item:not(:first-of-type) {
  border-top: 0
}
.serfaq-item:last-of-type {
  border-bottom-right-radius: var(--bs-serfaq-border-radius);
  border-bottom-left-radius: var(--bs-serfaq-border-radius)
}
.serfaq-item:last-of-type > .serfaq-header .serfaq-button.collapsed {
  border-bottom-right-radius: var(--bs-serfaq-inner-border-radius);
  border-bottom-left-radius: var(--bs-serfaq-inner-border-radius)
}
.serfaq-item:last-of-type > .serfaq-collapse {
  border-bottom-right-radius: var(--bs-serfaq-border-radius);
  border-bottom-left-radius: var(--bs-serfaq-border-radius)
}
.serfaq-body {
  padding: var(--bs-serfaq-body-padding-y) var(--bs-serfaq-body-padding-x)
}
.serfaq-flush > .serfaq-item {
  border-right: 0;
  border-left: 0;
  margin: 0px 0px 20px 0px;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 30px 20px 30px;
  outline: none;
  /*background-color: #aff1ec;*/
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.serfaq-flush > .serfaq-item:first-child {
  border-top: 0
}
.serfaq-flush > .serfaq-item:last-child {
  border-bottom: 0
}
.serfaq-flush > .serfaq-item > .serfaq-collapse, .serfaq-flush > .serfaq-item > .serfaq-header .serfaq-button, .serfaq-flush > .serfaq-item > .serfaq-header .serfaq-button.collapsed {
  border-radius: 0
}
[data-bs-theme=dark] .serfaq-button::after {
  --bs-serfaq-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  --bs-serfaq-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")
}
.faq .faq-list {
  padding: 0 30px;
}
.faq .ftitle01 {
  color: #007d7d;
  font-weight: bold;
  font-size: 1.1rem;
  margin:40px 0px 20px -20px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 0px;
  /*background-color: #fff;*/
  border-radius: 8px;
  position: relative;
  /*box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);*/
}
.faq .faq-list a {
  color: #333;
  display: block;
  position: relative;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 30px 20px 30px;
  outline: none;
  background-color: #aff1ec;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.faq .faq-list a:hover {
  color: #333;
  display: block;
  position: relative;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 30px 20px 30px;
  outline: none;
  background-color: #aff1ec;
  border-radius: 8px 8px 0px 0px;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
}
.qt00 {
  margin-right: 15px;
  font-size: 1.3rem;
  margin: 0px 15px;
}
.conbox {
  padding: 30px 40px 30px 40px;
  color: #000;
}
.conbox01 {
  background-color: #f1fffe;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
  padding:0px 0px 0px 0px;
  color: #333;
  font-size: 1rem;
  line-height:2;
}
.concbox02 {
  display: block;
  float: left;
  margin: 0px 20px 0px 60px;
  padding: 15px 50px;
  text-align: center;
  border-radius: 10px;
  background-color: #45A19A;
  color: #fff;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ff8400;
  background-color: #ffeeb3;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 32px;
  position: absolute;
  right: 15px;
  top: 20px;
  color: #007d7d;
  background-color: #aff1ec;
  border-radius: 8px 8px 0px 0px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 30px 20px 20px 40px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  background-color: #f1fffe;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
}
.faq .faq-list .icon-show {
  display: none;
  color: #007d7d;
  background: #fff;
  border-radius: 0px 0px 8px 8px;
}
.faq .faq-list a.collapsed {
  color: #666;
  background: #fff;
}
.faq .faq-list a.collapsed:hover {
  color: #666;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
  /*color:#333; 開啟後箭頭顏色*/
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq .faq-list .con01 {
  margin-bottom: 0;
  padding: 30px 40px 30px 40px;
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  line-height: 2;
  /*transition: background-color .5s ease-in-out;*/
  user-select: none;
}
.faq .faq-list .con01 ul {
  padding: 0;
  list-style: decimal;
}
.faq .faq-list .con01 li + li {
  margin-top: -15px;
}
.faq .faq-list .con01 li {
  padding: 20px;
  /*background: #fff;*/
  border-radius: 4px;
  position: relative;
}
.faq .faq-list .con01 a {
  color: #ff8400;
  display: block;
  position: relative;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
}




#main #faq .container .faq-list ul li #faq-list-5 .conbox span a {
  color: #007d7d;
  /*background-color: #fff;*/
  box-shadow: 0 0 0px 0 rgb(0 0 0 / 0%);
  padding: 0px;
  display: contents;
  line-height: 1.63;
  font-size: 1rem;
  text-decoration: underline;
}
#main #faq .container .faq-list ul li #faq-list-7 .conbox span a {
  color: #007d7d;
  /*background-color: #fff;*/
  box-shadow: 0 0 0px 0 rgb(0 0 0 / 0%);
  padding: 0px;
  display: contents;
  line-height: 1.63;
  font-size: 1rem;
  text-decoration: underline;
}
#main #faq .container .faq-list ul li #faq-list-8 .conbox span a {
  color: #007d7d;
  /*background-color: #fff;*/
  box-shadow: 0 0 0px 0 rgb(0 0 0 / 0%);
  padding: 0px;
  display: contents;
  font-size: 1rem;
  line-height: 1.63;
  text-decoration: underline;
}
#main #faq .container .faq-list ul li #faq-list-9 .conbox span a {
  color: #007d7d;
  /*background-color: #fff;*/
  box-shadow: 0 0 0px 0 rgb(0 0 0 / 0%);
  padding: 0px;
  display: contents;
  word-break: break-all;
  line-height: 1.63;
  font-size: 1rem;
  text-decoration: underline;
}
#main #faq .container .faq-list ul li #faq-list-10 .conbox span a {
  color: #007d7d;
  /*background-color: #fff;*/
  box-shadow: 0 0 0px 0 rgb(0 0 0 / 0%);
  padding: 0px;
  display: contents;
  line-height: 1.63;
  font-size: 1rem;
  text-decoration: underline;
  border-bottom: 1px #000 solid;
  padding-bottom: 5px;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
#faq .container .faq-list ul li #faq-list-1 ol li a {
  color: #007d7d;
  display: contents;
  text-decoration: underline;
  /*position: relative;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 0;
  padding: 20px 30px 10px 15px;
  outline: none;
  background-color: #aff1ec;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 0%);
}
#faq .container .faq-list ul li #faq-list-2 p a {
  color: #007d7d;
  display: contents;
  text-decoration: underline;
  /*position: relative;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 0;
  padding: 20px 30px 10px 15px;
  outline: none;
  background-color: #aff1ec;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 0%);
}
#faq .container .faq-list ul li #faq-list-3 ol li a {
  color: #007d7d;
  display: contents;
  text-decoration: underline;
  /*position: relative;*/
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 0;
  padding: 20px 30px 10px 15px;
  outline: none;
  background-color: #aff1ec;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 0%);
}


/*20250828新版FAQ*/
.accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.accordion-button {
    padding: 22px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #666;
    background-color: #ffffff;
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  /*background-color: #4a4a4a;*/
  background-color: #1f9898;
	
  font-size: 1.1rem;
  font-weight: 700;
}
.accordion-button:focus {
  box-shadow: none;	
  border-color: rgba(0, 0, 0, .125);
}
.accordion-button::after {
  background-size: 20px;
  transition: all 0.3s ease; 
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}
.accordion-body {
  padding:25px 20px 25px 25px;
 /* background-color: #ffffff;*/
  background-color: #f1fffe;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.abconbox01{
  background-color: #f1fffe;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
  padding:0px 10px 10px 15px;
  color: #333;
  font-size: 1rem;
  line-height:2;
}