/**
* 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: #444444; /* 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: #007d7d; /* 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: #77b6ca; /* 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);
  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);*/
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  /* max-height:60px;*/
  max-height: 55px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
/*  background: var(--accent-color);*/
	background-color:#17a2b8;
  font-size: 1rem;
  padding: 12px 25px;
  margin: 0px 0px 30px 0px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background-color:#17a2b8;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1366px) {
  .header {
    /*color:#fff;
  background-color: #007d7d;*/
    /*color: var(--default-color);*/
    /*background-color: var(--background-color);*/
    padding: 7px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  .header .logo img {
    max-height: 50px;
  }
}
@media (max-width:820px) {
  .header { /*
  color:#fff;
  background-color: #007d7d;*/
    /*color: var(--default-color);*/
    /*background-color: var(--background-color);*/
    padding: 5px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  .header .logo img {
    max-height: 45px;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 0rem;
    margin-left: 15%;
  }
}
@media (max-width: 480px) {
  .header .logo img {
    max-height: 45px;
    padding: 5px 0px;
  }
  .header .logo h1 {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .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);
}
/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}
/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
    text-align: center;
  }
  .navmenu a, .navmenu a:focus {
    /*color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;*/
    display: block;
    position: relative;
    /*color: #fff;*/
    transition: 0.3s;
    font-size: 1.125rem;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.36px;
    /*background-color:#fff;*/
    border-radius: 6px;
    /*max-width:174px;*/
    min-width: 108px;
    /*min-height:60px;*/
    padding: 16px 15px;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 18px;
    font-weight: bold;
    line-height: 0;
    margin-left: 2px;
    transition: 0.3s;
    color: #007d7d;
    text-decoration-style: solid 3px #007d7d;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: #45A19A;
    text-decoration-style: solid 3px #007d7d;
    border-radius: 6px;
    /*max-width:174px;*/
    /*min-width:108px;*/
    /*min-height:60px;
  padding: 16px 15px;*/
    /*color: var(--nav-hover-color);*/
  }
  .navmenu .dropdown ul {
    margin: 0;
    /* padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;*/
    top: 130%;
    /*z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);	  */
    display: block;
    position: absolute;
    left: 14px;
    /*top: calc(100% + 30px);*/
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 5px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navmenu .dropdown ul li {
    min-width: 180px;
  }
  .navmenu .dropdown ul a {
    /*   color: var(--nav-dropdown-color);*/
    padding: 12px 15px;
    transition: 0.3s;
    font-size: 1.125rem;
    font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
    font-weight: 700;
    text-transform: none;
    color: #007d7d;
    text-align: left;
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
    color: #777777;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    /*color: var(--nav-dropdown-hover-color);*/
    color: #777777;
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    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;
  }
}
/* 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: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 50px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    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: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 15px;
    line-height: 0;
    margin-left: 5px;
    color: #007d7d;
    font-weight: bold;
    /* 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);*/
    color: #007d7d;
    font-weight: bold;
  }
  .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: 9999;
  }
  .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;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: .975rem;
  background: #007d7d;
  border-top: 0px 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-top2 {
  padding-top: 25px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 15px;
  background: #007d7d;
}
#footer .txt01 {
  font-size: .875rem;
  line-height: 25px;
  letter-spacing: -.1px;
  display: inline-block;
  margin-bottom: 8px;
}
#footer .txt02 {
  font-size: .875rem;
  line-height: 15px;
  letter-spacing: -.1px;
  display: inline-block;
  margin-bottom: 8px;
}
.boxnotice {
  padding: 15px 0px 0px;
  background-color: #1f9ba0;
  margin-top: 40px;
}
.boxnotice .noticetxt01 {
  font-size: 0.93rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
}
#header .topbar {
  height: 35px;
  background-color: #f0f5f3;
  border-bottom: 1px solid #c9c9c9;
  padding: 8px 250px;
}
/*--------------------------------------------------------------
# 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;
  }
}
/*--------------------------------------------------------------
# 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 0px 20px;
  scroll-margin-top: 100px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# 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;
}
.faq .section-title {
  text-align: left;
  padding-bottom: 60px;
  position: relative;
}
.faq .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;
}
.faq .section-title h2:after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgb(154, 225, 175);
  margin: 14px 10px 14px 47px;
}
.section-title01 {
  text-align: left;
  padding-bottom: 0px;
  position: relative;
}
.section-title p {
  margin-bottom: 0px;
}
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 2rem;
  margin: 10px 0px;
  color: #007d7d;
}
.about .content h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 10px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  /*color: #666666;*/
  text-align: left;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5fcf80;
}
.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 Section
--------------------------------------------------------------*/
.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: decimal;
  padding: 0px 0px 0px 5px;
  margin-top: -20px;
}
.about .content ul li {
  /*padding-bottom: 10px;
  line-height: 30px;*/
  padding-bottom: 5px;
  line-height: 25px;
  display: block;
  /*margin-top: -2px;*/
}
.about .content01 ul {
  list-style: decimal;
  padding: 1px 5px 0px 5px;
  margin-bottom: auto;
  font-size: 1rem;
}
.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;
}
.about .maint001 {
  font-size: 2rem;
  color: #ff6600;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}
/*廠商介紹-公司標題*/
.comtitle001 {
  color: #007d7d;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 0;
}
.companycontitle {
  font-size: 1.2rem;
  color: #333333;
  font-weight: bold;
}
.companyconicon {
  font-size: 1.8rem;
  color: #98c748;
}
.companyconicon02 {
  font-size: 1.8rem;
  color: #52bb97;
}
.companycontxt {
  font-size: 1rem;
  color: #333333;
}
.about .content02 ul {
  list-style: decimal;
  padding: 0px 0px 0px 5px;
  margin-top: -8px;
}
.about .content02 ul li { /*
  padding-bottom: 10px;*/
  line-height: 30px;
  padding-bottom: 5px;
  /* line-height:25px;*/
  display: flex;
  margin-top: -2px;
}
.about .content02 ul {
  list-style: decimal;
  padding: 8px 5px 0px 25px;
  margin-bottom: auto;
  font-size: 1rem;
}
.about .content02 ul li {
  display: list-item;
  /* padding-bottom: 0px;
  line-height: 30px;
  margin-top: -2px;  */
}
.about .cominfotitle01 {
  color: #ff6600;
  font-weight: 700;
  font-size: 1.4rem;
}
.tabinfo01 {
  font-size: 1.2rem;
  background-color: #6ea01f;
  margin: 10px 0px -17px;
  color: #fff;
  padding: 8px 8px 5px 8px;
  border-radius: 10px 10px 0px 0px;
  width: 10%;
  text-align: center;
}
.tabinfo02 {
  font-size: 1.2rem;
  background-color: #6ea01f;
  margin: 10px 0px -17px;
  color: #fff;
  padding: 8px 8px 5px 8px;
  border-radius: 10px 10px 0px 0px;
  width: 18%;
  text-align: center;
}
.tabinfo03 {
  font-size: 1.2rem;
  background-color: #6ea01f;
  margin: 10px 0px -17px;
  color: #fff;
  padding: 8px 8px 5px 8px;
  border-radius: 10px 10px 0px 0px;
  width: 23%;
  text-align: center;
}
.tabinfob01 {
  font-size: 1.2rem;
  background-color: #52bb97;
  margin: 10px 0px -17px;
  color: #fff;
  padding: 8px 8px 5px 8px;
  border-radius: 10px 10px 0px 0px;
  width: 10%;
  text-align: center;
}
.tabinfob02 {
  font-size: 1.2rem;
  background-color: #52bb97;
  margin: 10px 0px -17px;
  color: #fff;
  padding: 8px 8px 5px 8px;
  border-radius: 10px 10px 0px 0px;
  width: 20%;
  text-align: center;
}
@media (max-width: 768px) {
  .tabinfo01 {
    font-size: 1.2rem;
    background-color: #6ea01f;
    margin: 10px 0px -17px;
    color: #fff;
    padding: 8px 8px 5px 8px;
    border-radius: 10px 10px 0px 0px;
    width: 30%;
    text-align: center;
  }
  .tabinfo02 {
    font-size: 1.2rem;
    background-color: #6ea01f;
    margin: 10px 0px -17px;
    color: #fff;
    padding: 8px 8px 5px 8px;
    border-radius: 10px 10px 0px 0px;
    width: 65%;
    text-align: center;
  }
  .tabinfob01 {
    font-size: 1.2rem;
    background-color: #52bb97;
    margin: 10px 0px -17px;
    color: #fff;
    padding: 8px 8px 5px 8px;
    border-radius: 10px 10px 0px 0px;
    width: 30%;
    text-align: center;
  }
  .tabinfob02 {
    font-size: 1.2rem;
    background-color: #52bb97;
    margin: 10px 0px -17px;
    color: #fff;
    padding: 8px 8px 5px 8px;
    border-radius: 10px 10px 0px 0px;
    width: 50%;
    text-align: center;
  }
  .tabinfo03 {
    font-size: 1.2rem;
    background-color: #6ea01f;
    margin: 10px 0px -17px;
    color: #fff;
    padding: 8px 8px 5px 8px;
    border-radius: 10px 10px 0px 0px;
    width: 65%;
    text-align: center;
  }
}
/*
.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: 0;
}

.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;
}*/
/*--------------------------------------------------------------
# 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 .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;
  }
}

/*--------------------------------------------------------------
# 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);
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder, .contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
/*--------------------------------------------------------------
# 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 */
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 37px;
  bottom: 20px;
  z-index: 99999;
  background: #6Accc9;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background: #15b0a3;
  /*background-color: color-mix(in srgb, var(--accent-color), transparent 20%);*/
  color: var(--contrast-color);
  transform: translateY(-5px);
  ;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/*
.scroll-top  {
    position: fixed;
    bottom: 15px;
    right: 30px;
    border: none;
    background: #6Accc9;
    width: 60px;
    height: 60px;
    padding-left: 7px;
    border-radius: 100px;
    transition: all 0.4s;
    color: #fff;
}
.scroll-top  i {
  color: #fff;
  font-weight: 900;
  font-size:26px;
  margin-left: -8px;
}
.scroll-top :hover {
  visibility: visible;
  transform: translateY(-5px);
    width: 60px;
    height: 60px;
  background: #15b0a3;
    border-radius: 100px;
    transition: all 0.4s;
    padding-left: 7px;
}
.scroll-top :hover i {
  color: #fff;
  font-weight: 900;
  font-size:26px;
  margin-left: -8px;
}
@media (max-width:540px) {
.scroll-top  {
        position: fixed;
        bottom: 18px;
        right: 29px;
        border: none;
        background: #6Accc9;
        width: 60px;
        height: 60px;
        padding-left: 7px;
        border-radius: 30px;
        transition: all 0.4s;
        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%;
  }
}
/*單元主分頁選單*/
.imgmenuc01 {
  width: 18%;
  margin: 0px 5px 0px 10px;
  float: left;
  border-radius: 10px;
}
.imgmenum01 {
  width: 18%;
  float: left;
  margin: 0px 2px 0px 2px;
  border-radius: 10px;
}
button.tmcmenu00 {
  /*position: fixed;*/
  width: 100%;
  margin: 0px 0px 0px 10px;
  float: left;
  border: none;
  transition: all 0.4s;
  background-color: #6ea01f;
  border-radius: 10px;
}
button.tmcmenu00:hover {
  transform: translateY(-5px);
  ;
  box-shadow: 0px 8px 5px 0px rgb(0 0 0 / 20%);
}
button.tmcmenu01 {
  /*position: fixed;*/
  width: 100%;
  margin: 0px 0px 0px 10px;
  float: left;
  border: none;
  transition: all 0.4s;
  background-color: #459d80;
  border-radius: 10px;
}
button.tmcmenu01:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 5px 0px rgb(0 0 0 / 20%);
}
@media (max-width:540px) {
  button.tmcmenu00 {
    width: 100%;
    margin: 0px 0px 0px 10px;
    float: left;
    border: none;
    transition: all 0.4s;
    background-color: #6ea01f;
    border-radius: 10px;
  }
  button.tmcmenu01 {
    width: 100%;
    margin: 0px 0px 0px 10px;
    float: left;
    border: none;
    transition: all 0.4s;
    background-color: #459d80;
    border-radius: 10px;
  }
}
button.tmmmenu00 {
  /*position: fixed;*/
  width: 100%;
  margin: 0px 0px 0px 10px;
  float: left;
  border: none;
  transition: all 0.4s;
  background-color: #6ea01f;
  border-radius: 10px;
}
button.tmmmenu00:hover {
  transform: translateY(-5px);
  ;
  box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 20%);
}
button.tmmmenu01 {
  /*position: fixed;*/
  width: 100%;
  margin: 0px 0px 0px 10px;
  float: left;
  border: none;
  transition: all 0.4s;
  background-color: #459d80;
  border-radius: 10px;
}
button.tmmmenu01:hover {
  transform: translateY(-5px);
  ;
  box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 20%);
}
@media (max-width:540px) {
  button.tmmmenu00 {
    width: 100%;
    margin: 0px 0px 0px 10px;
    float: left;
    border: none;
    transition: all 0.4s;
    background-color: #6ea01f;
    border-radius: 10px;
  }
  button.tmmmenu01 {
    width: 100%;
    margin: 0px 0px 0px 10px;
    float: left;
    border: none;
    transition: all 0.4s;
    background-color: #459d80;
    border-radius: 10px;
  }
}
/*首頁button*/
/*.conmenua00 {
	margin: 20px 0px;
    border: none;
    transition: all 0.4s;
    background-color: transparent;
	background-color:#5d7936;
    border-radius: 19px;
}
.conmenua00 :hover {
    transform: translateY(-5px);
	background-color:#5d7936;
    border-radius: 19px;
    box-shadow: 0px 8px 5px 0px rgb(0 0 0 / 20%);
}
.conmenuc00 {
	margin: 20px 0px;
    border: none;
    transition: all 0.4s;
    background-color: transparent;
	background-color:#237d56;
    border-radius: 19px;
}
.conmenuc00 :hover {
    transform: translateY(-5px);
	background-color:#237d56;
    border-radius: 19px;
    box-shadow: 0px 8px 5px 0px rgb(0 0 0 / 20%);
}
@media (max-width:540px) {
.conmenua00 {
	margin: 20px 0px;
    border: none;
    transition: all 0.4s;
    background-color: transparent;
	/*background-color:#5d7936;
    border-radius: 19px;
}*/
.conmenuc00 {
  margin: 20px 0px;
  border: none;
  transition: all 0.4s;
  background-color: transparent;
  /*background-color:#237d56;*/
  border-radius: 19px;
}
/*首頁button-20250901更新*/
.conmenua00 {
  margin: 20px 0px;
  border: none;
  transition: all 0.4s;
  background-color: transparent;
  background-color: #5d7936;
  border-radius: 21px;
  transform: translateY(-5px);
  /*box-shadow: 0px 85px 5px 0px rgb(0 0 0 / 20%);*/
}
.conmenua00 :hover {
  background-color: #5d7936;
  border-radius: 21px;
  transform: translateY(0px);
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}
.conmenuc00 {
  margin: 20px 0px;
  border: none;
  transition: all 0.4s;
  background-color: transparent;
  background-color: #237d56;
  border-radius: 21px;
  transform: translateY(-5px);
  /* box-shadow: 0px 85px 5px 0px rgb(0 0 0 / 20%)*/
}
.conmenuc00 :hover {
  transform: translateY(0px);
  background-color: #237d56;
  border-radius: 21px;
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}
@media (max-width:540px) {
  .conmenua00 {
    margin: 20px 0px;
    border: none;
    transition: all 0.4s;
    background-color: transparent;
    /*background-color:#5d7936;*/
    border-radius: 24px;
    transform: translateY(-5px);
    /*box-shadow: 0px 85px 5px 0px rgb(0 0 0 / 20%)*/
  }
  .conmenuc00 {
    margin: 20px 0px;
    border: none;
    transition: all 0.4s;
    background-color: transparent;
    /*background-color:#237d56;*/
    border-radius: 24px;
    transform: translateY(-5px);
    /*box-shadow: 0px 85px 5px 0px rgb(0 0 0 / 20%)*/
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width :819px) and (orientation : portrait) 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%;
  }
}
/* -----Scrolltop btn------- */
button.scrolltop-btn03 {
  position: fixed;
  bottom: 65px;
  right: 0.5%;
  border: none;
  background: transparent;
  width: 140px;
  height: 140px;
  /* padding: 10px 0px; */
  /* border-radius: 60px; */
  /* line-height: 16px; */
  transition: all 0.4s;
  color: #fff;
  font-weight: bold;
  animation: titleTag-ani 2s ease-in-out infinite;
}
@keyframes titleTag-ani {
  0% {
    transform: translateY(0px) rotate(1deg);
    transform-origin: center bottom;
  }
  50% {
    transform: translateX(10px) rotate(-1deg);
    transform-origin: center bottom;
  }
  100% {
    transform: translateY(0px) rotate(1deg);
    transform-origin: center bottom;
  }
}
button.scrolltop-btn03:hover {
  transform: translateY(-5px);
  background: transparent;
  border: none;
}
button.scrolltop-btn03:hover i {
  background: transparent;
  border: none;
}
@media (max-width:767px) {
  button.scrolltop-btn03 {
    position: fixed;
    bottom: 80px;
    right: 5px;
    border: none;
    background: transparent;
    width: 130px;
    height: 130px;
    /* padding: 10px 0px; */
    /* border-radius: 60px; */
    /* line-height: 16px; */
    transition: all 0.4s;
    color: #fff;
    font-weight: bold;
    animation: titleTag-ani 2s ease-in-out infinite;
  }
}
@media (max-width:540px) {
  button.scrolltop-btn03 {
    position: fixed;
    bottom: 80px;
    right: 2px;
    border: none;
    background: transparent;
    width: 130px;
    height: 130px;
    /* padding: 10px 0px; */
    /* border-radius: 60px; */
    /* line-height: 16px; */
    transition: all 0.4s;
    color: #fff;
    font-weight: bold;
    animation: titleTag-ani 2s ease-in-out infinite;
  }
}
/* -----Scrolltop btn------- */
button.scrolltop-btn04 {
  position: fixed;
  bottom: 210px;
  right: 5px;
  border: none;
  background: transparent;
  /*width:80%;
  height:auto;*/
  background-size: 50% 50%;
  background: url("images/icon_ibmchatbox01.png") top center;
  /* padding: 10px 0px; */
  /* border-radius: 60px; */
  /* line-height: 16px; */
  transition: all 0.4s;
  color: #fff;
  font-weight: bold;
  /*animation: titleTag-ani 2s ease-in-out infinite;*/
}
@keyframes titleTag-ani {
  0% {
    transform: translateY(0px) rotate(1deg);
    transform-origin: center bottom;
  }
  50% {
    transform: translateX(10px) rotate(-1deg);
    transform-origin: center bottom;
  }
  100% {
    transform: translateY(0px) rotate(1deg);
    transform-origin: center bottom;
  }
}
button.scrolltop-btn04:hover {
  /* transform: translateY(-5px);
  background: transparent;*/
  background: url("../images/icon_ibmchatbox02.png") top center;
  border: none;
}
button.scrolltop-btn04:hover i {
  background: transparent;
  border: none;
}
@media (max-width:767px) {
  button.scrolltop-btn04 {
    position: fixed;
    bottom: 210px;
    right: 5px;
    border: none;
    background: transparent;
    /*width: 90px;
    height: 90px;*/
    /* padding: 10px 0px; */
    /* border-radius: 60px; */
    /* line-height: 16px; */
    transition: all 0.4s;
    color: #fff;
    font-weight: bold;
    /*animation: titleTag-ani 2s ease-in-out infinite;*/
  }
}
@media (max-width:540px) {
  button.scrolltop-btn04 {
    position: fixed;
    bottom: 200px;
    right: 5px;
    border: none;
    background: transparent;
    /*width: 90px;
    height: 90px;*/
    /* padding: 10px 0px; */
    /* border-radius: 60px; */
    /* line-height: 16px; */
    transition: all 0.4s;
    color: #fff;
    font-weight: bold;
    /*animation: titleTag-ani 2s ease-in-out infinite;*/
  }
}
/* -----Scrolltop btn------- */
button.scrolltop-btn05 {
  position: fixed;
  bottom: 195px;
  right: 35px;
  border: none;
  background: transparent;
  width: 90px;
  height: 90px;
  /* padding: 10px 0px; */
  /* border-radius: 60px; */
  /* line-height: 16px; */
  transition: all 0.4s;
  color: #fff;
  font-weight: bold;
  animation: titleTag-ani 2s ease-in-out infinite;
}
@keyframes titleTag-ani {
  0% {
    transform: translateY(0px) rotate(1deg);
    transform-origin: center bottom;
  }
  50% {
    transform: translateX(10px) rotate(-1deg);
    transform-origin: center bottom;
  }
  100% {
    transform: translateY(0px) rotate(1deg);
    transform-origin: center bottom;
  }
}
button.scrolltop-btn05:hover {
  transform: translateY(-5px);
  background: transparent;
  border: none;
}
button.scrolltop-btn05:hover i {
  background: transparent;
  border: none;
}
@media (max-width:767px) {
  button.scrolltop-btn05 {
    position: fixed;
    bottom: 200px;
    right: 25px;
    border: none;
    background: transparent;
    width: 90px;
    height: 90px;
    /* padding: 10px 0px; */
    /* border-radius: 60px; */
    /* line-height: 16px; */
    transition: all 0.4s;
    color: #fff;
    font-weight: bold;
    animation: titleTag-ani 2s ease-in-out infinite;
  }
}
@media (max-width:540px) {
  button.scrolltop-btn05 {
    position: fixed;
    bottom: 200px;
    right: 22px;
    border: none;
    background: transparent;
    width: 80px;
    height: 80px;
    /* padding: 10px 0px; */
    /* border-radius: 60px; */
    /* line-height: 16px; */
    transition: all 0.4s;
    color: #fff;
    font-weight: bold;
    animation: titleTag-ani 2s ease-in-out infinite;
  }
}
.img-mainpic00 {
  max-width: 95%;
  height: auto;
  margin: 20px 0px;
  background-color: transparent;
  /*background-color:#5d7936;*/
  border-radius: 21px;
  transform: translateY(-5px);
  box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 20%);
}
.img-mainpic00 a:hover {
  /*max-width: 100%;*/
  height: auto;
  transition: all 0.2s;
  background-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0px 15px 5px 0px rgb(0 0 0 / 0%)
}
.img-mainpic00 a:focus {
  /*max-width: 100%;*/
  height: auto;
  transition: all 0.2s;
  background-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 0%)
}
.img-mainpic01 {
  max-width: 100%;
  height: auto;
}
.img-mainpic01 a:hover {
  height: auto;
}
.img-mainpic01 a:focus {
  height: auto;
}
@media (max-width:540px) {
  .img-mainpic00 {
    max-width: 100%;
    height: auto;
    margin: 20px 0px;
    background-color: transparent;
    /*background-color:#5d7936;*/
    border-radius: 26px;
    border: none;
    transform: translateY(-5px);
    box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 20%);
  }
  .img-mainpic00 a:hover {
    /*max-width: 100%;*/
    height: auto;
    transition: all 0.2s;
    border: none;
    /*background-color: transparent;*/
    transform: translateY(-2px);
    border-radius: 26px;
    /*box-shadow: 0px 15px 5px 0px rgb(0 0 0 / 0%)*/
  }
  .img-mainpic00 a:focus {
    /*max-width: 100%;*/
    height: auto;
    transition: all 0.2s;
    border: none;
    /*background-color: transparent;*/
    transform: translateY(-2px);
    border-radius: 26px;
    /* box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 0%)*/
  }
}





/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faqmenuinfo {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 0px;
    color: #007d7d;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: -30px;
}
.faqmenuinfotxt {
  list-style: none;
  color:#666;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight:700;
  border: 0px #BCBCBC solid;
  margin-bottom: 60px;	
}
.faqmenuinfo .t01 {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  margin-right: 10px;
  border-radius: 10px;
}

.faqmenuinfo02 {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 0px;
    color: #007d7d;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 900;
    margin: -30px 0px 50px 0px;
}
.faqmenuinfo02 .t01 {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  margin-right:0px;
  border-radius: 10px;
}

@media (max-width:540px) {
	
.faqmenuinfo02 .t01 {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    display: inline-flex;
    font-weight: 900;
    background-color: #45A19A;
    padding: 15px;
    margin-left: -30px;
    margin-right: 0px;
    border-radius: 10px;
}
}


@media (max-width:540px) {
    .faqmenuinfo02 .t01 {
        color: #fff;
        text-decoration: none;
        font-size: 1.3rem;
        display: inline-flex;
        font-weight: 900;
        background-color: #45A19A;
        padding: 20px;
        /* margin-left: -30px; */
        margin-right:0px;
	margin: 10px 0px;
        border-radius: 10px;
        width: 130px;
    }
	.faqmenuinfo02 {
    /* width: 100%; */
    /* height: auto; */
    /* padding: 0px 0px 0px 0px; */
    /* color: #007d7d; */
    /* text-decoration: none; */
    /* font-size: 1.3rem; */
    /* font-weight: 900; */
    margin:-30px 10px 50px -10px;
}
	.faqmenuinfo02 > ul > li a {
    color: #666;
        width: 130px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    display: inline-flex;
    background-color: #fff;
    padding: 20px;
	margin: 10px 0px;
    border-radius: 10px;
    border: 1px solid #cccccc;
}
}


.faqmenuinfo > ul {
  display: block;
  /*margin: 20px 0px 20px -50px;*/
  text-align: center;
  list-style: none;
}
.faqmenuinfo> ul > li {
    display: inline-block;
    /* vertical-align: top; */
    font-family: '微軟正黑體';
    /* margin: 0 -5px 0px 0px; */
    /* border: 0px solid #BCBCBC; */
    /* height: 25px; */
    /* line-height: 1.5; */
    /* background: #cdcdcd; */
    padding: 0px 10px;
    /* list-style: none; */
    /* box-sizing: border-box;*/
}
.faqmenuinfo > ul > li a {
  color: #666;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  background-color: #fff;
  padding: 15px;
  border-radius:10px;
  border: 1px solid #cccccc;
}
.faqmenuinfo > ul > li a:hover {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  border-radius:10px;
}
.faqmenuinfo  > ul > li.active {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #fff;
  padding: 15px;
  border-radius:10px;
  border: 1px solid #007d7d;
}
.faqmenuinfo > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
/*.tab-inner {
  padding-left: 0px;
  background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  border-radius: 20px;
  height: 50px;
}*/

.faqmenuinfo02 > ul {
  display: block;
  /*margin: 20px 0px 20px -50px;*/
  text-align: center;
  list-style: none;
}
.faqmenuinfo02 > ul > li {
    display: inline-block;
    /* vertical-align: top; */
    font-family: '微軟正黑體';
    /* margin: 0 -5px 0px 0px; */
    /* border: 0px solid #BCBCBC; */
    /* height: 25px; */
    /* line-height: 1.5; */
    /* background: #cdcdcd; */
    padding: 0px 10px;
    /* list-style: none; */
    /* box-sizing: border-box;*/
}
.faqmenuinfo02 > ul > li a {
  color: #666;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #fff;
  padding: 15px;
  border-radius:10px;
  border: 1px solid #cccccc;
}
.faqmenuinfo02 > ul > li a:hover {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  border-radius:10px;
}
.faqmenuinfo02  > ul > li.active {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #fff;
  padding: 15px;
  border-radius:10px;
  border: 1px solid #007d7d;
}
.faqmenuinfo02 > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}







.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: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 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.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;
}

.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);
}

.qt00 {
  margin-right: 15px;
  font-size: 1.3rem;
  margin: 0px 10px 0px 5px;
}
.conbox {
  padding: 0px 10px 0px 0px;
  color: #000;
}
.conbox01 {
  background-color: #f1fffe;
  /*box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);*/
  padding:0px 0px 0px 20px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
}
.concbox02 {
  display: block;
  float: left;
  margin: 0px 20px 0px 60px;
  padding: 15px 50px;
  text-align: center;
  border-radius: 10px;
  background-color: #45A19A;
  color: #fff;
}

/*20250920新版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: 15px 30px 20px 25px;
  /* background-color: #ffffff;*/
  background-color: #f1fffe;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
/*--------------------------------------------------------------
# 策略
--------------------------------------------------------------*/
.courses01 {
  margin: -60px 0px -60px;
}
.courses01 .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 10px 0px 10px 0px;
  color: #007d7d;
  text-align: center;
}
.courses01 .content h2::after {
  /*content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.courses01 .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.courses01 .content p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
  text-align: center;
  margin: 20px 0px 20px 0px;
}
/*.courses01 {
  padding-left: 0px;
  background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);
  padding: 64px 0;
}*/
.courses01 .course01-item {
  border-radius: 5px;
  border: 0px solid #eef0ef;
  background-color: #fff;
}
.courses01 .course01-content {
  padding: 15px;
}
.courses01 .course01-content h2 {
  font-weight: 700;
  line-height: 1.3;
  font-size: 2rem;
  color: #ff6600;
}
.courses01 .course01-content h3 {
  font-weight: 600;
  /*line-height: 1.5;*/
  font-size: 1.4rem;
}
.courses01 .course01-content h3 a {
  color: #37423b;
  transition: 0.3s;
}
.courses01 .course01-content h3 a:hover {
  color: #5fcf80;
}
.courses01 .course01-content p {
  font-size: 1.05rem;
  color: #333333;
  line-height: 2;
}
.courses01 .course01-content .quote-icon-left, .courses01 .course01-content .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}
.courses01 .course01-content .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.courses01 .course01-content .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 5px;
}
.courses01 .course01-content h4 {
  font-size: 1.15rem;
  background: #45A19A;
  padding: 8px 5px;
  color: #fff;
  margin: 5px 0px 15px 0px;
  font-weight: 600;
  border-radius: 00px 20px 20px 0px;
}
.courses01 .course01-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}
.courses01 .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}
.courses01 .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}
.courses01 .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}
.courses01 .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}
/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eef0ef;
}
.trainers .member img {
  margin: -1px -1px 30px -1px;
}
.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}
.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.trainers .member .social {
  margin-top: 15px;
}
.trainers .member .social a {
  color: #7e9486;
  transition: 0.3s;
}
.trainers .member .social a:hover {
  color: #5fcf80;
}
.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
/*--------------------------------------------------------------
about Strategy
--------------------------------------------------------------*/
.Strategy {
  padding-left: 50px;
  background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);
  padding: 64px 0;
}
.Strategy .Strategy-wrap {
  max-width: 1024px;
  margin: 0px 15px;
  /* padding: 0 40px; */
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  /* padding: 37px 70px; */
  background-image: url(../assets/assets/mascot.svg);
  background-repeat: no-repeat;
  background-position: right 25px bottom;
}
.Strategy .Strategy-item {
  box-sizing: border-box;
  padding: 30px 20px 30px 20px;
  margin: 30px 15px;
  min-height: 200px;
  border: 0px solid #eef0ef;
  position: relative;
  /* background: #fff;*/
}
.Strategy .Strategy-item .Strategy-img {
  width: 150px;
  border-radius: 100px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.Strategy .Strategy-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.Strategy .Strategy-item h4 {
  font-size: 1rem;
  color: #999;
  margin: 0;
}
.Strategy .Strategy-item .quote-icon-left, .Strategy .Strategy-item .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}
.Strategy .Strategy-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.Strategy .Strategy-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 5px;
}
.Strategy .Strategy-item p {
  /*font-style: italic;*/
  margin: 15px auto 15px auto;
  line-height: 1.8;
}
.Strategy .owl-nav, .Strategy .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.Strategy .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.Strategy .owl-dot.active {
  background-color: #5fcf80 !important;
}
@media (max-width: 767px) {
  .Strategy .Strategy-wrap {
    padding-left: 0;
  }
  .Strategy .Strategy-item {
    padding: 30px;
    margin: 15px;
  }
  .Strategy .Strategy-item .Strategy-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# 36DNA >> 推動三大政策及六大主軸
--------------------------------------------------------------*/
.dna001 {
  margin: 0px 0px -60px;
}
.dna001 .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 10px 0px 10px 0px;
  color: #007d7d;
  text-align: center;
}
.dna001 .content h2::after {
  /*content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.dna001 .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.dna001 .content p {
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333333;
  text-align: left;
  /*text-align: center;*/
  margin: 20px 0px 20px 0px;
}
.principle .principle-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 280px;
}
.principle .principle-item .principle-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.principle .principle-item h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  /*color: #ff8400;*/
  color: #007d7d;
}
.dna001 .principle-item h4 {
  font-size: 16px;
  color: #333333;
  margin: 0px 0px 0px 0;
  line-height: 1.8;
  padding: 10px 25px;
}
.principle .principle-item .quote-icon-left, .principle .principle-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}
.principle .principle-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.principle .principle .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.principle .principle-item p {
  font-style: normal;
  line-height: 1.8;
  /* font-style: italic; */
  margin: 0 15px 15px 15px;
  padding: 10px 20px 20px;
  /* background: #f3f9fd; */
  /* position: relative; */
  /* margin-bottom: 35px; */
  /* border-radius: 6px;*/
}
.principle .principle-item p::after {
  /*  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px); */
  content: "";
  width: 0;
  height: 0;
}
.principle .owl-nav, .principle .owl-dots {
  margin-top: 35px;
  text-align: center;
}
.principle .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.principle .owl-dot.active {
  background-color: #45A19A !important;
}
@media (max-width: 767px) {
  .principle {
    margin: 30px 10px;
  }
}
/*--------------------------------------------------------------
# 36DNA >> 公平待客十大原則 推動三大政策及六大主軸
--------------------------------------------------------------*/
.principle .content h2 {
  font-weight: 700;
  font-size: 2rem;
  margin: 10px 0px;
  color: #007d7d;
}
.principle .content h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 10px;
}
.principle .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.principle .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  /*color: #666666;*/
  text-align: left;
}
.principle .section-title h2 {
  font-weight: 700;
  font-size: 2rem;
  margin: 1px 0px 0px 0px;
  color: #007d7d;
}
.principle .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;
}
.principle .section-title h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.principle .section-title p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
  margin: 25px 0px 40px 0px;
  text-align: left;
}
/*--------------------------------------------------------------
# 服務與建議
--------------------------------------------------------------*/
.serviceA01 {
  align-items: center;
  text-align: center;
}
.serviceA01 .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 10px 0px 10px 0px;
  color: #007d7d;
  text-align: center;
}
.serviceA01 .content h2::after {
  /*  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.serviceA01 .content h3 {
  line-height: 1.3;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  color: #007d7d;
}
.serviceA01 .content p {
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: center;
  color: #666666;
  margin: 0px 0px 40px 0px;
}
.serviceA01 img {
  width: 120px;
}
#tab-demoA {
  width: 100%;
  height: auto;
  padding-left: 0px;
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  /*height: 50px;*/
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  border-radius: 20px;
  /*height: 50px;*/
}
#tab-demoA > ul {
  display: block;
  margin: 20px 0px 20px -50px;
  text-align: center;
  list-style: none;
}
.tab-title {
  list-style: none;
}
#tab-demoA > ul > li {
  display: inline-block;
  vertical-align: top;
  font-family: '微軟正黑體';
  margin: 0 -5px 0px 0px;
  border: 0px solid #BCBCBC;
  /*height: 25px;*/
  line-height: 1.5;
  /*background: #cdcdcd;*/
  padding: 0px 10px;
  list-style: none;
  box-sizing: border-box;
}
#tab-demoA > ul > li a {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
}
#tab-demoA > ul > li.active {
  border-bottom: 1px solid #007d7d;
}
#tab-demoA > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
.tab-inner {
  padding-left: 0px;
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  padding: 30px 0;
  /*background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  border-radius: 20px;
  /*height: 50px;*/
}
.serviceA01 .serviceA01-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 280px;
}
.serviceA01 .serviceA01-item .serviceA01-img {
  width: 50px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}
.serviceA01 .serviceA01-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  /*color: #ff8400;*/
  color: #007d7d;
}
.serviceA01 .tab-inner h4 {
  font-size: 1.5rem;
  font-weight: 700px;
  color: #333333;
  margin: 0px 0px 0px 0px;
  line-height: 1.8;
  padding: 10px 25px;
}
.serviceA01 .serviceA01-item .quote-icon-left, .serviceA01 .serviceA01-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}
.serviceA01 .serviceA01-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.serviceA01 .serviceA01 .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.serviceA01 .serviceA01-item p {
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  /* font-style: italic; */
  margin: 0 15px 15px 15px;
  /*padding: 10px 20px 20px;*/
  /* background: #f3f9fd; */
  /* position: relative; */
  /* margin-bottom: 35px; */
  /* border-radius: 6px;*/
}
.serviceA01 .serviceA01-item p::after {
  /* content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px); */
  content: "";
  width: 0;
  height: 0;
}
.serviceA01 .owl-nav, .serviceA01 .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  text-align: center;
  background-color: #ddd !important;
}
.serviceA01 .owl-dot.active {
  background-color: #45A19A !important;
  text-align: center;
}
@media (max-width: 767px) {
  .serviceA01 {
    margin: 30px 10px;
  }
}
@media (max-width:320px) {
  #tab-demoA {
    width: 100%;
    height: auto;
  }
  #tab-demoA > ul {
    display: block;
    margin: 20px 0px 20px -50px;
    text-align: center;
    list-style: none;
  }
  .tab-title {
    list-style: none;
  }
  #tab-demoA > ul > li {
    display: inline-block;
    vertical-align: top;
    font-family: '微軟正黑體';
    margin: 0 -5px 0px 0px;
    border: 0px solid #BCBCBC;
    /*height: 25px;*/
    line-height: 1.5;
    /*background: #cdcdcd;*/
    padding: 0px 8px;
    list-style: none;
    box-sizing: border-box;
  }
  #tab-demoA > ul > li a {
    color: #007d7d;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
  }
  #tab-demoA > ul > li.active {
    border-bottom: 1px solid #007d7d;
  }
  #tab-demoA > .tab-inner {
    clear: both;
    color: #000;
    border: 0px #BCBCBC solid;
  }
}
/*貼心核保政策*/
.serviceB01 {
  align-items: center;
  text-align: center;
}
.serviceB01 .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 0px 0px 30px 0px;
  color: #007d7d;
  text-align: center;
}
.serviceB01 .content h2::after {
  /*  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.t01 {
  font-weight: 900;
  font-size: 1.6rem;
  margin: 20px 0px 10px 0px;
  color: #ff6600;
  text-align: center;
}
.t01::after {
  /*  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.serviceB01 .content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  /* color: #ff8400; */
  color: #007d7d;
}
.serviceB01 .content p {
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  /* font-style: italic; */
  margin: 0 15px 15px 15px;
  /* padding: 10px 20px 20px; */
  /* background: #f3f9fd; */
  /* position: relative; */
  /* margin-bottom: 35px; */
  /* border-radius: 6px; */
}
.serviceB01 .content img {
  width: 50%;
}
#tab-demoB {
  width: 100%;
  height: auto;
  padding-left: 0px;
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  /*height: 50px;*/
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  border-radius: 20px;
  /*height: 50px;*/
}
#tab-demoB > ul {
  display: block;
  margin: 20px 0px 20px -50px;
  text-align: center;
  list-style: none;
}
.tab-title {
  list-style: none;
}
#tab-demoB > ul > li {
  display: inline-block;
  vertical-align: top;
  font-family: '微軟正黑體';
  margin: 0 -5px 0px 0px;
  border: 0px solid #BCBCBC;
  /*height: 25px;*/
  line-height: 1.5;
  /*background: #cdcdcd;*/
  padding: 0px 10px;
  list-style: none;
  box-sizing: border-box;
}
#tab-demoB > ul > li a {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
}
#tab-demoB > ul > li.active {
  border-bottom: 1px solid #007d7d;
}
#tab-demoB > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
.tab-inner {
  padding-left: 0px;
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  padding: 30px 0;
  /*background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  border-radius: 20px;
  /*height: 50px;*/
}
.serviceB01 .serviceB01-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 280px;
}
.serviceB01 .serviceB01-item .serviceB01-img {
  width: 50px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}
.serviceB01 .serviceB01-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  /*color: #ff8400;*/
  color: #007d7d;
}
.serviceB01 .tab-inner02 h4 {
  font-size: 1.5rem;
  font-weight: 700px;
  color: #333333;
  margin: 0px 0px 0px 0px;
  line-height: 1.8;
  padding: 10px 25px;
}
.serviceB01 .serviceB01-item .quote-icon-left, .serviceB01 .serviceB01-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}
.serviceB01 .serviceB01-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.serviceB01 .serviceB01 .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.serviceB01 .serviceB01-item p {
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  /* font-style: italic; */
  margin: 0 15px 15px 15px;
  /*padding: 10px 20px 20px;*/
  /* background: #f3f9fd; */
  /* position: relative; */
  /* margin-bottom: 35px; */
  /* border-radius: 6px;*/
}
.serviceB01 .serviceB01-item p::after {
  /* content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px); */
  content: "";
  width: 0;
  height: 0;
}
.serviceB01 .owl-nav, .serviceB01 .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  text-align: center;
  background-color: #ddd !important;
}
.serviceB01 .owl-dot.active {
  background-color: #45A19A !important;
  text-align: center;
}
@media (max-width: 767px) {
  .serviceB01 {
    margin: 30px 10px;
  }
  .serviceB01 .content img {
    width: 50%;
  }
}
@media (max-width:320px) {
  #tab-demoB {
    width: 100%;
    height: auto;
  }
  #tab-demoB > ul {
    display: block;
    margin: 20px 0px 20px -50px;
    text-align: center;
    list-style: none;
  }
  .tab-title {
    list-style: none;
  }
  #tab-demoB > ul > li {
    display: inline-block;
    vertical-align: top;
    font-family: '微軟正黑體';
    margin: 0 -5px 0px 0px;
    border: 0px solid #BCBCBC;
    /*height: 25px;*/
    line-height: 1.5;
    /*background: #cdcdcd;*/
    padding: 0px 8px;
    list-style: none;
    box-sizing: border-box;
  }
  #tab-demoB > ul > li a {
    color: #007d7d;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
  }
  #tab-demoB > ul > li.active {
    border-bottom: 1px solid #007d7d;
  }
  #tab-demoB > .tab-inner02 {
    clear: both;
    color: #000;
    border: 0px #BCBCBC solid;
  }
}
/*--------------------------------------------------------------
# 服務與溝通 >> 多元溝通管道
--------------------------------------------------------------*/
.channels {
  margin: 0px 0px -60px;
}
.channels .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 10px 0px 10px 0px;
  color: #007d7d;
  text-align: center;
}
.channels .content h2::after {
  /*content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.channels .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.channels .content p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  text-align: center;
  margin: 20px 0px 20px 0px;
}
.channels .content .imgicon {
  width: 80%;
  height: auto;
}
.channels .content .title01 {
  color: #007d7d;
  font-weight: 900;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.5;
}
.channels .content .txt01 {
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
}
.channels img {
  width: 70%;
}

.channels .linkbt01 {
  width:120px;height:45px;border-radius: 100px;text-align: center;padding:10px 0px;
}

.channels .linkbt01 .twork01 {
 color:#fff;font-size:0.9375rem;font-weight: 900;
  width:120px;height:45px;border-radius: 100px;text-align: center;padding:10px 0px;
}


@media (max-width: 767px) {
  .channels img {
    width: 35%;
  }
}
/*--------------------------------------------------------------
# 感動與成就 -- 暖心故事
--------------------------------------------------------------*/
.storyA01 {
  align-items: center;
  text-align: center;
}
.storyA01 .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 10px 0px 10px 0px;
  color: #007d7d;
  text-align: center;
}
.storyA01 .content h2::after {
  /*  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.storyA01 .content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 20px 0px;
  line-height: 1.3;
  text-align: left;
}
.storyA01 .content p {
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: left;
  color: #333333;
  margin: 0px 0px 150px 0px;
}
.tabtxt01 {
  background-color: #25bdcb;
  width: 90px;
  height: 30px;
  font-size: 1.03rem;
  padding: 3px;
  color: #fff;
  border-radius: 60px;
}
.tabtxt02 {
  background-color: #f12e6a;
  width: 90px;
  height: 30px;
  font-size: 1.03rem;
  padding: 3px;
  color: #fff;
  border-radius: 60px;
}
.tabtxt03 {
  background-color: #3ab8ec;
  width: 90px;
  height: 30px;
  font-size: 1.03rem;
  padding: 3px;
  color: #fff;
  border-radius: 60px;
}
.tabtxt04 {
  height: 30px;
  font-size: 1rem;
  padding: 3px;
  color: #444444;
}
.tabtxt05 {
  background: linear-gradient(96.52deg, #93ba79 15.34%, #329788 85.02%);
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  width: 200px;
  height: 50px;
  font-size: 1.2rem;
  padding: 12px;
  color: #fff;
  border-radius: 60px;
  font-weight: 900;
  margin: 50px auto 20px;
  text-align: center;
}
.tabtxt05 a:active .tabtxt05 a:link {
  width: 200px;
  height: 50px;
  font-size: 1.2rem;
  padding: 12px;
  color: #fff;
  border-radius: 60px;
  font-weight: 900;
  margin: 50px auto 20px;
}
.tabtxt05 a:hover {
  width: 200px;
  height: 50px;
  font-size: 1.2rem;
  padding: 12px;
  color: #fff;
  border-radius: 60px;
  font-weight: 900;
  margin: 50px auto 20px;
}
.storyA01 .content p.txtcon01 {
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: left;
  color: #333333;
  margin: 0px 0px 50px 0px;
}
#tab-storyA {
  width: 100%;
  height: auto;
  padding-left: 0px;
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  /*height: 50px;*/
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  padding: 30px 0;
  /*background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  border-radius: 20px;*/
  /*height: 50px;*/
}
#tab-storyA > ul {
  display: block;
  margin: 0px 0px 80px -50px;
  text-align: center;
  list-style: none;
}
.tab-tstory {
  list-style: none;
}
#tab-storyA > ul > li {
  /*display: contents;*/
  display: inline-block;
  vertical-align: top;
  font-family: '微軟正黑體';
  margin: 0 -5px 0px 0px;
  border: 0px solid #BCBCBC;
  /*height: 25px;*/
  line-height: 2;
  /*background: #cdcdcd;*/
  padding: 0px 10px;
  list-style: none;
  box-sizing: border-box;
  color: #007d7d;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 900;
}
#tab-storyA > ul > li a {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
}
#tab-storyA > ul > li a:active {
  color: #007d7d;
  border-bottom: 0px solid #007d7d;
  /*text-decoration:underline;*/
}
#tab-storyA > ul > li a:hover {
  color: #45A19A;
  text-decoration: none;
  font-size: 1.4rem;
  border-bottom: 1px solid #007d7d;
  /*text-decoration:underline;*/
}
#tab-storyA > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
.tab-storyA {
  padding-left: 0px;
  /*background: linear-gradient(96.52deg, #93ba79 15.34%, #42a498 85.02%);*/
  padding: 30px 0;
  /*background-color: #fff;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  border-radius: 20px;
  /*height: 50px;*/
}
.storyA01 .storyA01-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 280px;
}
.storyA01 .storyA01-item .storyA01-img {
  width: 50px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}
.storyA01 .storyA01-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  /*color: #ff8400;*/
  color: #007d7d;
}
.storyA01 .tab-inner h4 {
  font-size: 1.5rem;
  font-weight: 700px;
  color: #333333;
  margin: 0px 0px 0px 0px;
  line-height: 1.8;
  padding: 10px 25px;
}
.storyA01 .storyA01-item .quote-icon-left, .storyA01 .storyA01-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}
.storyA01 .storyA01-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.storyA01 .storyA01 .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.storyA01 .storyA01-item p {
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  /* font-style: italic; */
  margin: 0 15px 15px 15px;
  /*padding: 10px 20px 20px;*/
  /* background: #f3f9fd; */
  /* position: relative; */
  /* margin-bottom: 35px; */
  /* border-radius: 6px;*/
}
.storyA01 .storyA01-item p::after {
  /* content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px); */
  content: "";
  width: 0;
  height: 0;
}
.storyA01 .owl-nav, .storyA01 .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  text-align: center;
  background-color: #ddd !important;
}
.storyA01 .owl-dot.active {
  background-color: #45A19A !important;
  text-align: center;
}


@media (max-width: 767px) {
  .storyA01 {
    margin: 30px 10px;
  }
}
@media (max-width:320px) {
  #tab-storyA {
    width: 100%;
    height: auto;
  }
  #tab-storyA > ul {
    display: block;
    margin: 20px 0px 20px -50px;
    text-align: center;
    list-style: none;
  }
  .tab-title {
    list-style: none;
  }
  #tab-storyA > ul > li {
    display: inline-block;
    vertical-align: top;
    font-family: '微軟正黑體';
    margin: 0 -5px 0px 0px;
    border: 0px solid #BCBCBC;
    /*height: 25px;*/
    line-height: 1.5;
    /*background: #cdcdcd;*/
    padding: 0px 8px;
    list-style: none;
    box-sizing: border-box;
  }
  #tab-storyA > ul > li a {
    color: #007d7d;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
  }
  #tab-storyA > ul > li.active {
    border-bottom: 1px solid #007d7d;
  }
  #tab-storyA > .tab-story {
    clear: both;
    color: #000;
    border: 0px #BCBCBC solid;
  }
}
/*--------------------------------------------------------------
# 感動與成就 -- 得獎
--------------------------------------------------------------*/
.awards {
  margin: 0px 0px -60px;
  align-items: center;
  text-align: center;
}
.awards .content h2 {
  font-weight: 700;
  font-size: 2rem;
  margin: 1px 0px 0px 0px;
  color: #007d7d;
}
.awards .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.awards .content p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin: 15px 0px 20px 0px;
}
.awardsbox {
  border: 0.625rem solid rgba(149, 198, 198, .4);
  border-radius: 1.5625rem;
  box-shadow: 0 0 10px 0 rgba(0, 114, 106, .3);
  padding: 2rem 1rem;
  margin-right: 15px;
  width: 100%;
  float: left;
  display: block;
  transition: all 0.3s ease-in-out;
  min-height: 10rem;
  /* margin-left: 5rem; */
  margin-top: 1.2rem;
  margin-bottom: 6rem;
}
.awardsbox img {
  float: left;
  margin: 0px 10px;
}
.awardsbox01 {
  float: left;
  text-align: left;
}
.awardsbox01 h5 {
  font-weight: 900;
  color: #ff6600;
}
.awardsbox01 span {
  /*color: #888;*/
  color: #333333;
}
@media (max-width: 1180px) {
  .awardsbox {
    border: 0.625rem solid rgba(149, 198, 198, .4);
    border-radius: 1.5625rem;
    box-shadow: 0 0 10px 0 rgba(0, 114, 106, .3);
    padding: 2rem 1rem;
    margin-right: 15px;
    width: 100%;
    float: left;
    display: flex;
    transition: all 0.3s ease-in-out;
    /* min-height: 3rem;*/
    /* margin-left: 5rem; */
    margin-top: 1.2rem;
    margin-bottom: 1rem;
  }
  .awardsbox img {
    float: left;
    margin: 0px 2px 0px -10px;
    width: 20%;
    height: 20%;
  }
}
@media (max-width: 820px) {
  .awardsbox {
    border: 0.625rem solid rgba(149, 198, 198, .4);
    border-radius: 1.5625rem;
    box-shadow: 0 0 10px 0 rgba(0, 114, 106, .3);
    padding: 2rem 1rem;
    margin-right: 15px;
    width: 100%;
    float: left;
    display: flex;
    transition: all 0.3s ease-in-out;
    min-height: 3rem;
    /* margin-left: 5rem; */
    margin-top: 1.2rem;
    margin-bottom: 1rem;
  }
  .awardsbox img {
    float: left;
    margin: 0px 10px 0px 0px;
    width: 20%;
    height: 20%;
  }
}
@media (max-width: 768px) {
  .awardsbox {
    border: 0.5rem solid rgba(149, 198, 198, .4);
    border-radius: 1.2rem;
    box-shadow: 0 0 5px 0 rgba(0, 114, 106, .3);
    padding: 2rem 1rem;
    margin-right: 15px;
    width: 100%;
    float: left;
    display: flex;
    transition: all 0.3s ease-in-out;
    min-height: 3rem;
    /* margin-left: 5rem; */
    margin-top: 1.2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 320px) {
  .awardsbox {
    border: 0.35rem solid rgba(149, 198, 198, .4);
    border-radius: 1rem;
    box-shadow: 0 0 5px 0 rgba(0, 114, 106, .3);
    padding: 2rem 1rem;
    margin-right: 15px;
    width: 100%;
    float: left;
    transition: all 0.3s ease-in-out;
    min-height: 3rem;
    /* margin-left: 5rem; */
    display: flex;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .awardsbox img {
    float: left;
    margin: 0px 2px 0px -10px;
    width: 20%;
    height: 20%;
  }
}
/*--------------------------------------------------------------
# 影片
--------------------------------------------------------------*/

.moviebox {
  /*margin: 0px 0px -60px;*/
  align-items: center;
  text-align: center;
  padding: 15px;
  box-sizing: content-box;
}
.moviebox .img01 {
  width: 350px;
 /* min-height: 280px;*/
    /* border-radius: 50%; */
    /*margin: 10px auto;*/
    text-align: center;

}
.moviet01 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #007d7d;
  margin-top: 10px;
  margin-bottom: -1px;
  text-align: center;
}
.moviet02 {
  font-size: 0.9735rem;
  line-height: 1.8;
  padding:15px 0px;
  text-align: center;
}

.movieinfo {
    width: 100%;
    height: auto;
    color: #007d7d;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: -30px;
    margin-left: -20px;
}
.movieinfotxt {
  list-style: none;
  color:#666;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight:700;
  border: 0px #BCBCBC solid;
  margin-bottom: 60px;	
}
.movieinfo .t01 {
  color: #fff;
    display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  margin-right:0px;
  border-radius: 10px;
}
.movieinfo .t02 {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  margin-right:0px;
  border-radius: 10px;
}
.movieinfo > ul {
  display:inline-block;
  /*margin: 20px 0px 20px -50px;*/
  text-align: center;
  list-style: none;
}
.movieinfo> ul > li {
    display: inline-block;
    /* vertical-align: top; */
    font-family: '微軟正黑體';
    /* margin: 0 -5px 0px 0px; */
    /* border: 0px solid #BCBCBC; */
    /* height: 25px; */
    /* line-height: 1.5; */
    /* background: #cdcdcd; */
    padding: 0px 10px;
    /* list-style: none; */
    /* box-sizing: border-box;*/
}
.movieinfo > ul > li a {
    /* color: #666; */
    text-decoration: none;
    font-size: 1.4rem;
    position: absolute;
    display: flex;
    font-weight: 900;
    margin: -40px 0px 0px 0px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
}
.movieinfo > ul > li a:hover {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 900;
    background-color: #45A19A;
    padding: 15px;
    border-radius: 10px;
}
.movieinfo  > ul > li.active {
  color: #fff;
  text-decoration: none;
    display: contents;
  font-size: 1.4rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 15px;
  border-radius:10px;
}
.movieinfo > .tab-inner {
  clear: both;
  color: #000;
    display: contents;
  border: 0px #BCBCBC solid;
}





.moviebox .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 10px 0px 10px 0px;
  color: #007d7d;
  text-align: center;
}
.moviebox .content h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin: 10px 0px;
  line-height: 1.3;
}
.moviebox .content p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin: 15px 0px 20px 0px;
}
.moviebox .content ul {
  list-style: none;
  padding: 0;
}
.moviebox .content ul li {
  padding-bottom: 10px;
}
.moviebox .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5fcf80;
}
.moviebox .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;
}
.moviebox .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}



@media (max-width:1180px) {
.moviebox .img01 {
  width: 200px;
 /* min-height: 280px;*/
    /* border-radius: 50%; */
    /*margin: 10px auto;*/
    text-align: center;

}
}
@media (max-width:1024px) {
.moviebox .img01 {
  width: 250px;
 /* min-height: 280px;*/
    /* border-radius: 50%; */
    /*margin: 10px auto;*/
    text-align: center;

}
}
@media (max-width:768px) {
.moviebox .img01 {
  width: 200px;
 /* min-height: 280px;*/
    /* border-radius: 50%; */
    /*margin: 10px auto;*/
    text-align: center;

}
}
@media (max-width: 768px) {
  .moviebox .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

@media (max-width:540px) {
.faqmenuinfo {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 30px;
    color: #007d7d;
    text-decoration: none;
    /* font-size: 1.4rem; */
    font-weight: 900;
    margin-top: -30px;
}
.faqmenuinfo > ul {
    display: block;
    margin: -20px 0px 20px -80px;
    text-align: center;
    list-style: none;
}
.faqmenuinfo> ul > li {
    display: inline-block;
    /* vertical-align: top; */
    font-family: '微軟正黑體';
    /* margin: 0 -5px 0px 0px; */
    /* border: 0px solid #BCBCBC; */
    /* height: 25px; */
    /* line-height: 1.5; */
    /* background: #cdcdcd; */
    padding: 0px 0px;
    /* list-style: none; */
    /* box-sizing: border-box; */
}
.faqmenuinfo .t01 {
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 900;
        background-color: #45A19A;
        padding: 10px;
        margin-right: 0px;
        border-radius: 10px;
}
	

.faqmenuinfo > ul > li a {
  color: #666;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  background-color: #fff;
  padding: 10px;	
  border-radius:10px;
  border: 1px solid #cccccc;
}
.faqmenuinfo > ul > li a:hover {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 10px;	
  border-radius:10px;
}
.faqmenuinfo  > ul > li.active {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  background-color: #fff;
  padding: 10px;	
  border-radius:10px;
  border: 1px solid #007d7d;
}
.faqmenuinfo > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
	
	
	
	
	
	
	
}
@media (max-width:414px) {
.faqmenuinfo {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 30px;
    color: #007d7d;
    text-decoration: none;
    /* font-size: 1.4rem; */
    font-weight: 900;
    margin-top: -30px;
}
.faqmenuinfo > ul {
    display: block;
    margin: -20px 0px 20px -80px;
    text-align: center;
    list-style: none;
}
.faqmenuinfo> ul > li {
    display: inline-block;
    /* vertical-align: top; */
    font-family: '微軟正黑體';
    /* margin: 0 -5px 0px 0px; */
    /* border: 0px solid #BCBCBC; */
    /* height: 25px; */
    /* line-height: 1.5; */
    /* background: #cdcdcd; */
    padding: 0px 0px;
    /* list-style: none; */
    /* box-sizing: border-box; */
}
.faqmenuinfo .t01 {
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 900;
        background-color: #45A19A;
        padding: 10px;
        margin-right: 0px;
        border-radius: 10px;
}
	

.faqmenuinfo > ul > li a {
  color: #666;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  background-color: #fff;
  padding: 10px;	
  border-radius:10px;
  border: 1px solid #cccccc;
}
.faqmenuinfo > ul > li a:hover {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 10px;	
  border-radius:10px;
}
.faqmenuinfo  > ul > li.active {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  background-color: #fff;
  padding: 10px;	
  border-radius:10px;
  border: 1px solid #007d7d;
}
.faqmenuinfo > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
	
	
	
	
	
	
	
}

@media (max-width:375px) {
.faqmenuinfo {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 30px;
    color: #007d7d;
    text-decoration: none;
    /* font-size: 1.4rem; */
    font-weight: 900;
    margin-top: -30px;
}
.faqmenuinfo > ul {
    display: block;
    margin: -20px 0px 20px -80px;
    text-align: center;
    list-style: none;
}
.faqmenuinfo> ul > li {
    display: inline-block;
    /* vertical-align: top; */
    font-family: '微軟正黑體';
    /* margin: 0 -5px 0px 0px; */
    /* border: 0px solid #BCBCBC; */
    /* height: 25px; */
    /* line-height: 1.5; */
    /* background: #cdcdcd; */
    padding: 0px 0px;
    /* list-style: none; */
    /* box-sizing: border-box; */
}
.faqmenuinfo .t01 {
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 900;
        background-color: #45A19A;
        padding: 10px;
        margin-right: 0px;
        border-radius: 10px;
}
	

.faqmenuinfo > ul > li a {
  color: #666;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  background-color: #fff;
  padding: 10px;	
  border-radius:10px;
  border: 1px solid #cccccc;
}
.faqmenuinfo > ul > li a:hover {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  background-color: #45A19A;
  padding: 10px;	
  border-radius:10px;
}
.faqmenuinfo  > ul > li.active {
  color: #007d7d;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  background-color: #fff;
  padding: 10px;	
  border-radius:10px;
  border: 1px solid #007d7d;
}
.faqmenuinfo > .tab-inner {
  clear: both;
  color: #000;
  border: 0px #BCBCBC solid;
}
	
	
	
	
	
	
	
}

/**/
.carousel-caption {
  bottom: 0%;
  padding: 30px 0px 0px;
  /*padding: 30px;*/
  color: #444444;
  position: initial;
  /*background: rgba(86, 86, 86, 0.8);*/
  /*margin: 0px -170px;*/
}
.carousel-caption img {
  width: auto;
  /*  height: 67vh;
  max-height: 67vh;*/
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: -2%;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  margin-bottom: 6%;
  list-style: none;
}
.carousel-indicators02 {
  position: absolute;
  right: 0;
  bottom: 26%;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  margin-bottom: 6%;
  list-style: none;
}
.carousel-indicators li {
  width: 15px;
  height: 15px;
  margin: 0px 5px;
  color: #444444;
  background-color: #444444;
  border-radius: 50%;
}
.carousel-indicators02 li {
  width: 15px;
  height: 15px;
  margin: 0px 5px;
  color: #444444;
  background-color: #444444;
  border-radius: 50%;
}
.bcontrol {
  border: 0px;
  background-color: transparent;
}
.carouselptxt01 {
  width: 50px;
  margin: 50px 10px 0px 50px;
  height: 25px;
  border-radius: 2%;
  float: left;
  background-color: #007d7d;
  display: inline-block;
}
.carouselptxt01 span {
  font-size: 0.9375rem;
  color: #fff;
  padding: 5px 3px 0px 3px;
}
.carouselptxt02 {
  width: 50px;
  margin: 50px 10px 0px 0px;
  height: 25px;
  border-radius: 2%;
  float: left;
  background-color: #007d7d;
  display: inline-block;
}
.carouselptxt02 span {
  font-size: 0.9375rem;
  color: #fff;
  padding: 5px 3px 0px 3px;
}
.carousel-item h5 {
  text-align: left;
  padding: 45px 15px 0px 50px;
  font-size: 1.8rem;
  font-weight: 900;
  /*display: inline-block;*/
}
.carousel-item p {
  text-align: left;
  font-size: 1.3rem;
  padding: 0px 45px 0px 50px;
  /*padding: 0px 45px 30px 50px;*/
  line-height: 1.6;
}
@media (max-width:1180px) {
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -5%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 26%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width:915px) {
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -5%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 36%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width: 820px) {
  .carousel-caption {
    bottom: 0%;
    /*background: rgba(86, 86, 86, 0.8);*/
    /*margin: 0px -95px 0px -95px;*/
    position: initial;
    /*background: rgba(86, 86, 86, 0.8);
    margin: 0px -95px -260px -95px;
    position: fixed;
    height: 100%;*/
  }
  .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0px 5px;
    color: #444444;
    background-color: #444444;
    border-radius: 50%;
  }
  .carousel-indicators02 li {
    width: 10px;
    height: 10px;
    margin: 0px 5px;
    color: #444444;
    background-color: #444444;
    border-radius: 50%;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -4%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 27%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none
  }
  .bcontrol {
    border: 0px;
    background-color: transparent;
  }
  .carouselptxt01 {
    width: 50px;
    margin: 18px 10px 0px 50px;
    height: 25px;
    border-radius: 2%;
    float: left;
    background-color: #007d7d;
    display: inline-block;
  }
  .carouselptxt01 span {
    font-size: 0.9375rem;
    color: #fff;
    padding: 5px 3px 0px 3px;
  }
  .carouselptxt02 {
    width: 50px;
    margin: 18px 10px 0px 0px;
    height: 25px;
    border-radius: 2%;
    float: left;
    background-color: #007d7d;
    display: inline-block;
  }
  .carouselptxt02 span {
    font-size: 0.9375rem;
    color: #fff;
    padding: 5px 3px 0px 3px;
  }
  .carousel-item h5 {
    text-align: left;
    padding: 15px 15px 0px 50px;
    font-size: 1.5rem;
    font-weight: 900;
    /*display: inline-block;*/
  }
  .carousel-item p {
    text-align: left;
    font-size: 1.05rem;
    padding: 0px 45px 30px 50px;
    line-height: 1.6;
  }
  .carousel-caption img {
    width: auto;
    height: 40vh;
    max-height: 40vh;
  }
  .carousel-item h5 {
    text-align: left;
    padding: 15px 15px 0px 50px;
    font-size: 1.5rem;
    font-weight: 900;
  }
  .carousel-item p {
    text-align: left;
    font-size: 0.9375rem;
    padding: 0px 45px 0px 50px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .carousel-captionb {
    bottom: 0%;
    /*background: rgba(86, 86, 86, 0.8);*/
    margin: 0px -35px;
  }
  img {
    width: auto;
    /*  height: 67vh;
  max-height: 67vh;*/
  }
  .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0px 5px;
    color: #444444;
    background-color: #444444;
    border-radius: 50%;
  }
  .carousel-indicators02 li {
    width: 10px;
    height: 10px;
    margin: 0px 5px;
    color: #444444;
    background-color: #444444;
    border-radius: 50%;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 3%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 3%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    /*margin-bottom: 6%;*/
    list-style: none
  }
  .bcontrol {
    border: 0px;
    background-color: transparent;
  }
  .carouselbptxt01 {
    width: 50px;
    margin: 50px 10px 0px 50px;
    height: 25px;
    border-radius: 2%;
    float: left;
    background-color: #007d7d;
    display: inline-block;
  }
  .carouselbptxt01 span {
    font-size: 0.9375rem;
    color: #fff;
    padding: 5px 3px 0px 3px;
  }
  .carouselbptxt02 {
    width: 50px;
    margin: 50px 10px 0px 0px;
    height: 25px;
    border-radius: 2%;
    float: left;
    background-color: #007d7d;
    display: inline-block;
  }
  .carouselbptxt02 span {
    font-size: 0.9375rem;
    color: #fff;
    padding: 5px 3px 0px 3px;
  }
  .carousel-item h5 {
    text-align: left;
    padding: 47px 145px 0px 0px;
    font-size: 1.5rem;
    font-weight: 900;
    /*margin-top: 30px;*/
    display: inline-block;
  }
  .carousel-item p {
    text-align: left;
    font-size: 1.05rem;
    padding: 0px 45px 0px 50px;
    line-height: 1.6;
  }
}
@media (max-width: 540px) {
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 2%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 33%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width: 414px) {
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 2%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    /*margin-bottom:12%;*/
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 48%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    /*margin-bottom:12%;*/
    list-style: none;
  }
  .carousel-item h5 {
    text-align: left;
    padding: 18px 115px 0px 0px;
    font-size: 1.5rem;
    font-weight: 900;
    /* margin-top: 30px; */
    display: inline-block;
  }
}
@media (max-width: 393px) {
  .carousel-item h5 {
    text-align: left;
    padding: 15px 110px 0px 0px;
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    /*bottom: 48%;*/
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 48%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width: 375px) {
  .carousel-item h5 {
    text-align: left;
    padding: 15px 90px 0px 0px;
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    /*bottom: 50%;*/
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 5%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 50%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width: 360px) {
  .carousel-item h5 {
    text-align: left;
    padding: 15px 75px 0px 0px;
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 2%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    /*margin-bottom: -85%;*/
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 54%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width: 320px) {
  .carousel-item h5 {
    text-align: left;
    padding: 15px 20px 0px 0px;
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    /*bottom: 58%;*/
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: -95%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 58%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
@media (max-width: 280px) {
  .carousel-item h5 {
    text-align: left;
    padding: 15px 0px 0px 0px;
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
  }
  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 63%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: -140%;
    list-style: none;
  }
  .carousel-indicators02 {
    position: absolute;
    right: 0;
    bottom: 63%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 6%;
    list-style: none;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #eef0ef;
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.testimonials .owl-dot.active {
  background-color: #5fcf80 !important;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.course-details h3:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}
.course-details h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: #5fcf80;
  bottom: 0;
  left: 0;
}
.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}
.course-details .course-info a {
  color: #657a6d;
}
/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}
.cource-details-tabs .nav-tabs {
  border: 0;
}
.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #37423b;
  border-radius: 0;
  border-right: 2px solid #e2e7e4;
  font-weight: 600;
  font-size: 15px;
}
.cource-details-tabs .nav-link:hover {
  color: #5fcf80;
}
.cource-details-tabs .nav-link.active {
  color: #5fcf80;
  border-color: #5fcf80;
}
.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #37423b;
}
.cource-details-tabs .details p {
  color: #777777;
}
.cource-details-tabs .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }
  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: #5fcf80;
  }
}
/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}
.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.events .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}
.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.events .card-title a {
  color: #37423b;
  transition: 0.3s;
}
.events .card-text {
  color: #5e5e5e;
}
.events .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}
.events .read-more a:hover {
  color: #5fcf80;
}
.events .card:hover img {
  transform: scale(1.1);
}
.events .card:hover .card-body {
  border-color: #5fcf80;
}
.events .card:hover .card-body .card-title a {
  color: #5fcf80;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border: 1px solid #eef0ef;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.pricing h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
.pricing h4 {
  font-size: 36px;
  color: #5fcf80;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing ul li {
  padding-bottom: 16px;
}
.pricing ul i {
  color: #5fcf80;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: #5fcf80;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #3ac162;
}
.pricing .featured h3 {
  color: #fff;
  background: #5fcf80;
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #5fcf80;
  color: #fff;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 5px;
}
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #5fcf80;
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #5fcf80;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5fcf80;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #5fcf80;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #3ac162;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Get Startet Button */
.get-started-btn {
  /*margin-left: 22px;*/
  background: #007d7d;
  color: #fff;
  line-height: 1;
  border-radius: 60px;
  padding: 0px 12px 10px 10px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 0.9rem;
  display: inline-block;
}
.get-started-btn:hover {
  background: #f1ffa4;
  color: #000;
}
@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 10px 18px;
  }
}
#footer {
  color: #000;
  font-size: 0.9rem;
  /*background: #eef0ef;*/
  padding: 450px 0px 10px 0px;
  background: url(../images/footer-bg.png) no-repeat center;
  background-size: cover;
}
#footer .txt01 {
  color: #fff;
  font-size: 0.9rem;
  padding-top: 10px;
  margin-bottom: -0.105rem;
  display: initial;
  line-height: 2.5;
}
#footer .txt01 a:link {
  color: #fff;
  font-size: 0.9rem;
  padding-top: 10px;
  margin-bottom: -0.105rem;
  display: initial;
  line-height: 2.5;
}
#footer .txt02 {
  color: #fff;
  font-size: 0.9rem;
  padding-top: 10px;
  margin-bottom: -0.105rem;
}
#footer .txt02 a:link {
  color: #fff371;
  font-size: 0.9rem;
  padding-top: 10px;
  margin-bottom: -0.105rem;
}
#footer .txt02 a:hover {
  color: #fff371;
  font-size: 0.9rem;
  padding-top: 10px;
  margin-bottom: -0.105rem;
  /*text-decoration: underline;*/
}
#footer .txt03 {
  color: #fff;
  font-size: 1rem;
  padding-top: 10px;
  display: initial;
  line-height: 1;
  text-shadow: 0.1em 0.1em #666;
  /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
}
#footer .img01 {
  margin-bottom: -0.105rem;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9faf9;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
@media (max-width: 820px) {
  #footer {
    color: #000;
    margin-top: 50px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer-bg.png) no-repeat center;
    /* background-size: cover; */
    width: 100%;
    /* height: 87vh; */
    background-size: 200%;
    position: relative;
    background-repeat: no-repeat;
    background-position: -290px -200px;
  }
  .get-started-btn {
    margin: 0px 15%;
    padding: 10px 18px;
  }
  #footer .txt01 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    margin-bottom: -0.105rem;
    display: initial;
    line-height: 2;
  }
  #footer .txt01 a:link {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    /*margin-bottom: -0.105rem;*/
    display: initial;
    line-height: 1;
  }
  #footer .txt02 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    /*margin-bottom: 0.8rem;*/
  }
  #footer .txt02 a:link {
    color: #fff371;
    font-size: 0.9rem;
    padding-top: 10px;
    /* margin-bottom: -0.105rem;*/
  }
  #footer .txt02 a:hover {
    color: #fff371;
    font-size: 0.9rem;
    padding-top: 10px;
    /* margin-bottom: -0.105rem;*/
    /*text-decoration: underline;*/
  }
  #footer .txt03 {
    color: #fff;
    font-size: 1rem;
    padding-top: 10px;
    display: initial;
    line-height: 1;
    text-shadow: 0.1em 0.1em #666;
    /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  }
}
@media (max-width:768px) {
  #footer {
    color: #000;
    margin-top: 50px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer-bg.png) no-repeat center;
    /* background-size: cover; */
    width: 100%;
    /* height: 87vh; */
    background-size: 200%;
    position: relative;
    background-repeat: no-repeat;
    background-position: -290px -185px;
  }
  .get-started-btn {
    margin: 0px 15%;
    padding: 10px 18px;
  }
  #footer .txt01 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    margin-bottom: -0.105rem;
    display: initial;
    line-height: 2;
  }
  #footer .txt01 a:link {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    /*margin-bottom: -0.105rem;*/
    display: initial;
    line-height: 1;
  }
  #footer .txt02 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    /*margin-bottom: 0.8rem;*/
  }
  #footer .txt02 a:link {
    color: #fff371;
    font-size: 0.9rem;
    padding-top: 10px;
    /* margin-bottom: -0.105rem;*/
  }
  #footer .txt02 a:hover {
    color: #fff371;
    font-size: 0.9rem;
    padding-top: 10px;
    /* margin-bottom: -0.105rem;*/
    /*text-decoration: underline;*/
  }
  #footer .txt03 {
    color: #fff;
    font-size: 1rem;
    padding-top: 10px;
    display: initial;
    line-height: 1;
    text-shadow: 0.1em 0.1em #666;
    /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  }
}
@media only screen and (min-device-width : 640px) and (max-device-width : 766px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #footer {
    color: #000;
    margin-top: 50px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer-bg.png) no-repeat center;
    /* background-size: cover; */
    width: 100%;
    /* height: 87vh; */
    background-size: 200%;
    position: relative;
    background-repeat: no-repeat;
    background-position: -290px -185px;
  }
  .get-started-btn {
    margin: 0px 15%;
    padding: 10px 18px;
  }
  #footer .txt01 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    margin-bottom: -0.105rem;
    display: initial;
    line-height: 2;
  }
  #footer .txt01 a:link {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    /*margin-bottom: -0.105rem;*/
    display: initial;
    line-height: 1;
  }
  #footer .txt02 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    /*margin-bottom: 0.8rem;*/
  }
  #footer .txt02 a:link {
    color: #fff371;
    font-size: 0.9rem;
    padding-top: 10px;
    /* margin-bottom: -0.105rem;*/
  }
  #footer .txt02 a:hover {
    color: #fff371;
    font-size: 0.9rem;
    padding-top: 10px;
    /* margin-bottom: -0.105rem;*/
    /*text-decoration: underline;*/
  }
  #footer .txt03 {
    color: #fff;
    font-size: 1rem;
    padding-top: 10px;
    display: initial;
    line-height: 1;
    text-shadow: 0.1em 0.1em #666;
    /*box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);*/
  }
}
@media (max-width:640px) {
  #footer {
    color: #000;
    margin-top: 150px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer_01_m.jpg) no-repeat center;
    /* background-size: cover; */
    /* width: 100%; */
    /* height: 87vh; */
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px -10px;
  }
  .get-started-btn {
    margin: 0px 20%;
    padding: 10px 18px;
  }
  #footer .txt02 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    margin-bottom: 0.8rem;
  }
}
@media (max-width:540px) {
  #footer {
    color: #000;
    margin-top: 150px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer_01_m.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    /* height: 87vh; */
    /* background-size: 115%; */
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px -10px;
  }
  .get-started-btn {
    margin: 0px 20%;
    padding: 10px 18px;
  }
  #footer .txt02 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 414px) {
  #footer {
    color: #000;
    margin-top: 150px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer_01_m.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    /* height: 87vh; */
    /* background-size: 115%; */
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px -10px;
  }
  .get-started-btn {
    margin: 0px 20%;
    padding: 10px 18px;
  }
  #footer .txt02 {
    color: #fff;
    font-size: 0.9rem;
    padding-top: 10px;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 360px) {
  #footer {
    color: #000;
    margin-top: 150px;
    font-size: 0.9rem;
    /* background: #eef0ef; */
    padding: 150px 0px 10px 0px;
    background: url(../images/footer_01_m.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    /* height: 87vh; */
    /* background-size: 115%; */
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 10px;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url(../images/index_herobg01.jpg) top center;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  /*background-position: 0px -40px;*/
  background-position: 0px -50px;
}
#hero h1 {
  margin: -50px 30px 120px -80px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007d7d;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
@media (max-width: 1368px) {
  #hero {
    width: 100%;
    height: 64vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width: 1366px) {
  #hero {
    width: 100%;
    height: 57vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width:1280px) {
  #hero {
    width: 100%;
    height: 68vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    font-size: 3rem;
    line-height: 1.3;
    width: 500px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 50px 20px -50px;
  }
}
@media (max-width:1180px) {
  #hero {
    width: 100%;
    height: 62vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -50px 0px 0px -30px;
  }
}
@media (max-width:1024px) {
  #hero {
    width: 100%;
    height: 58vh;
    background: url(../images/index_herobg01.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
    background-color: #78c14e;
  }
  #hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -30px 120px 0px 0px;
  }
}
@media (max-width:915px) {
  #hero {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media only screen and (min-device-width : 821px) and (max-device-width :914px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero {
    width: 100%;
    height: 30vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px
  }
  #hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media (max-width:820px) {
  #hero {
    width: 100%;
    height: 32vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media (max-width:812px) {
  #hero {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width :819px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero {
    width: 100%;
    height: 29vh;
    background: url(../images/index_herobg01.png) top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
    background-color: #78c14e;
  }
  #hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width:768px) {
  #hero {
    width: 100%;
    height: 35vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width: 767px) {
  #hero {
    width: 100%;
    height: 121vh;
    background: url(../images/index_herobg01.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
    background-color: #78c14e;
  }
  #hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    /*margin:-50px 0px 0px -70px;*/
    margin: 0px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 640px) and (max-device-width : 766px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg01.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
    background-color: #78c14e;
  }
  #hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    width: 240px;
    padding: 15px;
    margin: 10px 0px 50px 40px;
  }
}
@media (max-width:640px) {
  #hero {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg01.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    width: 300px;
    padding: 15px;
    /*margin: -50px 0px 50px 20px;*/
  }
}
@media (max-width:540px) {
  #hero {
    width: 100%;
    height: 105vh;
    background: url(../images/herobg_01_m.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -10px 50px;
  }
  #hero h1 {
    font-size: 3.6rem;
    line-height: 1.3;
    width: 300px;
    padding: 15px;
    margin: -80px 0px 50px 20px;
  }
}
@media (max-width:414px) {
  #hero {
    width: 100%;
    height: 80vh;
    background: url(../images/herobg_01_m.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -30px 50px;
  }
  #hero h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -150px 0px 50px;
  }
}
@media (max-width:375px) {
  #hero {
    width: 100%;
    height: 78vh;
    background: url(../images/herobg_01_m.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 35px;
  }
  #hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -20px 0px 50px;
  }
}
@media screen and (max-width:360px) {
  #hero {
    width: 100%;
    height: 88vh;
    background: url(../images/herobg_01_m.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -34px 60px;
    background-color: #78c14e;
    /*width: 100%;
    height:100vh;
    background: url(../img/herobg_01_m.jpg) top center;
    background-size: 115%;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0px 60px;*/
  }
  #hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -30px 0px 70px -10px;
  }
}
@media (max-width:320px) {
  #hero {
    width: 100%;
    height: 70vh;
    background: url(../images/herobg_01_m.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 50px;
  }
  #hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: 0px 0px 70px -20px;
  }
}
@media (max-width:280px) {
  #hero {
    width: 100%;
    height: 78vh;
    background: url(../images/herobg_01_m.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 60px;
  }
}
#hero02 {
  width: 100%;
  height: 75vh;
  background: url(../images/index_herobg_02.png) top center;
  background-color: #78c14e;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  /*background-position: 0px -40px;*/
  background-position: 0px -50px;
}
#hero02 h1 {
  margin: -50px 30px 120px -80px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007d7d;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
@media (max-width: 1368px) {
  #hero02 {
    width: 100%;
    height: 64vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width: 1366px) {
  #hero02 {
    width: 100%;
    height: 57vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width:1280px) {
  #hero02 {
    width: 100%;
    height: 68vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 3rem;
    line-height: 1.3;
    width: 500px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 50px 20px -50px;
  }
}
@media (max-width:1180px) {
  #hero02 {
    width: 100%;
    height: 62vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -50px 0px 0px -30px;
  }
}
@media (max-width:1024px) {
  #hero02 {
    width: 100%;
    height: 58vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -30px 120px 0px 0px;
  }
}
@media (max-width:915px) {
  #hero02 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media only screen and (min-device-width : 821px) and (max-device-width :914px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero02 {
    width: 100%;
    height: 30vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px
  }
  #hero02 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media (max-width:820px) {
  #hero02 {
    width: 100%;
    height: 32vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media (max-width:812px) {
  #hero02 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width :819px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero02 {
    width: 100%;
    height: 29vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width:768px) {
  #hero02 {
    width: 100%;
    height: 35vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width: 767px) {
  #hero02 {
    width: 100%;
    height: 121vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero02 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    /*margin:-50px 0px 0px -70px;*/
    margin: 0px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 640px) and (max-device-width : 766px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero02 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero02 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    width: 240px;
    padding: 15px;
    margin: 10px 0px 50px 40px;
  }
}
@media (max-width:640px) {
  #hero02 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero02 h1 {
    font-size: 2rem;
    line-height: 1.2;
    width: 300px;
    padding: 15px;
    /*margin: -50px 0px 50px 20px;*/
  }
}
@media (max-width:540px) {
  #hero02 {
    width: 100%;
    height: 105vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -10px 50px;
  }
  #hero02 h1 {
    font-size: 3.6rem;
    line-height: 1.3;
    width: 300px;
    padding: 15px;
    margin: -80px 0px 50px 20px;
  }
}
@media (max-width:414px) {
  #hero02 {
    width: 100%;
    height: 60vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -30px 20px;
  }
  #hero02 h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -100px 0px 50px;
  }
}
/*375改為384*/
@media (max-width:375px) {
  #hero02 {
    width: 100%;
    height: 72vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 15px;
  }
  #hero02 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -80px 0px 50px;
  }
}
@media screen and (max-width:360px) {
  #hero02 {
    width: 100%;
    height: 70vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 20px;
    background-color: #78c14e;
    /*width: 100%;
    height: 88vh;
    background: url(../img/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -34px 60px;
    background-color: #78c14e;*/
  }
  #hero02 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -30px 0px 70px -10px;
  }
}
@media (max-width:320px) {
  #hero02 {
    width: 100%;
    height: 70vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 20px;
  }
  #hero02 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: 0px 0px 70px -20px;
  }
}
@media (max-width:280px) {
  #hero02 {
    width: 100%;
    height: 78vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -60px 20px;
  }
  #hero03 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: -80px 0px 70px -20px;
  }
}
#hero03 {
  width: 100%;
  height: 75vh;
  background: url(../images/index_herobg_03.png) top center;
  background-color: #78c14e;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  /*background-position: 0px -40px;*/
  background-position: 0px -50px;
}
#hero03 h1 {
  margin: -50px 30px 120px -80px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007d7d;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
@media (max-width: 1368px) {
  #hero03 {
    width: 100%;
    height: 64vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width: 1366px) {
  #hero03 {
    width: 100%;
    height: 57vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width:1280px) {
  #hero03 {
    width: 100%;
    height: 68vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 3rem;
    line-height: 1.3;
    width: 500px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 50px 20px -50px;
  }
}
@media (max-width:1180px) {
  #hero02 {
    width: 100%;
    height: 62vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -50px 0px 0px -30px;
  }
}
@media (max-width:1024px) {
  #hero03 {
    width: 100%;
    height: 58vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -30px 120px 0px 0px;
  }
}
@media (max-width:915px) {
  #hero02 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media only screen and (min-device-width : 821px) and (max-device-width :914px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero03 {
    width: 100%;
    height: 30vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px
  }
  #hero03 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media (max-width:820px) {
  #hero03 {
    width: 100%;
    height: 32vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media (max-width:812px) {
  #hero03 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width :819px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero03 {
    width: 100%;
    height: 29vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width:768px) {
  #hero03 {
    width: 100%;
    height: 35vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width: 767px) {
  #hero03 {
    width: 100%;
    height: 121vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero03 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    /*margin:-50px 0px 0px -70px;*/
    margin: 0px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 640px) and (max-device-width : 766px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero03 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero03 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    width: 240px;
    padding: 15px;
    margin: 10px 0px 50px 40px;
  }
}
@media (max-width:640px) {
  #hero03 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_03.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero03 h1 {
    font-size: 2rem;
    line-height: 1.2;
    width: 300px;
    padding: 15px;
    /*margin: -50px 0px 50px 20px;*/
  }
}
@media (max-width:540px) {
  #hero03 {
    width: 100%;
    height: 105vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -10px 50px;
  }
  #hero03 h1 {
    font-size: 3.6rem;
    line-height: 1.3;
    width: 300px;
    padding: 15px;
    margin: -80px 0px 50px 20px;
  }
}
@media (max-width:414px) {
  #hero03 {
    width: 100%;
    height: 60vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -30px 20px;
  }
  #hero03 h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -100px 0px 50px;
  }
}
/*375改為384*/
@media (max-width:384px) {
  #hero03 {
    width: 100%;
    height: 72vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 15px;
  }
  #hero03 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -80px 0px 50px;
  }
}
@media screen and (max-width:360px) {
  #hero03 {
    width: 100%;
    height: 70vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 20px;
    background-color: #78c14e;
  }
  #hero03 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -30px 0px 70px -10px;
  }
}
@media (max-width:320px) {
  #hero03 {
    width: 100%;
    height: 70vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 20px;
  }
  #hero03 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: 0px 0px 70px -20px;
  }
}
@media (max-width:280px) {
  #hero03 {
    width: 100%;
    height: 78vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -60px 20px;
  }
  #hero03 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: -80px 0px 70px -20px;
  }
}
#hero04 {
  width: 100%;
  height: 75vh;
  background: url(../images/index_herobg_02.png) top center;
  background-color: #78c14e;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  /*background-position: 0px -40px;*/
  background-position: 0px -50px;
}
#hero04 h1 {
  margin: -50px 30px 120px -80px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007d7d;
  font-family: 'Arial', '微軟正黑體', 'Microsoft JhengHei';
}
@media (max-width: 1368px) {
  #hero04 {
    width: 100%;
    height: 64vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width: 1366px) {
  #hero04 {
    width: 100%;
    height: 57vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    /*margin:-50px 0px 100px -40px;;*/
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0px 50px;
  }
}
@media (max-width:1280px) {
  #hero04 {
    width: 100%;
    height: 68vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 3rem;
    line-height: 1.3;
    width: 500px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 50px 20px -50px;
  }
}
@media (max-width:1180px) {
  #hero04 {
    width: 100%;
    height: 62vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -50px 0px 0px -30px;
  }
}
@media (max-width:1024px) {
  #hero04 {
    width: 100%;
    height: 58vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -30px 120px 0px 0px;
  }
}
@media (max-width:915px) {
  #hero04 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media only screen and (min-device-width : 821px) and (max-device-width :914px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero04 {
    width: 100%;
    height: 30vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px
  }
  #hero04 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -50px;
  }
}
@media (max-width:820px) {
  #hero04 {
    width: 100%;
    height: 32vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media (max-width:812px) {
  #hero04 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: -20px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width :819px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero04 {
    width: 100%;
    height: 29vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width:768px) {
  #hero04 {
    width: 100%;
    height: 35vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    margin: 0px 0px 0px -30px;
  }
}
@media (max-width: 767px) {
  #hero04 {
    width: 100%;
    height: 121vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 40px;
  }
  #hero04 h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    width: 550px;
    padding: 15px;
    font-weight: 900;
    /*margin:-50px 0px 0px -70px;*/
    margin: 0px 0px 0px -40px;
  }
}
@media only screen and (min-device-width : 640px) and (max-device-width : 766px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio:2) {
  #hero04 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero04 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    width: 240px;
    padding: 15px;
    margin: 10px 0px 50px 40px;
  }
}
@media (max-width:640px) {
  #hero04 {
    width: 100%;
    height: 98vh;
    background: url(../images/index_herobg_02.png) top center;
    background-color: #78c14e;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 65px;
  }
  #hero04 h1 {
    font-size: 2rem;
    line-height: 1.2;
    width: 300px;
    padding: 15px;
    /*margin: -50px 0px 50px 20px;*/
  }
}
@media (max-width:540px) {
  #hero04 {
    width: 100%;
    height: 105vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -10px 50px;
  }
  #hero04 h1 {
    font-size: 3.6rem;
    line-height: 1.3;
    width: 300px;
    padding: 15px;
    margin: -80px 0px 50px 20px;
  }
}
@media (max-width:414px) {
  #hero04 {
    width: 100%;
    height: 60vh;
    background: url(../images/index_herobg03_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -30px 20px;
  }
  #hero04 h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -100px 0px 50px;
  }
}
/*375改為384*/
@media (max-width:384px) {
  #hero04 {
    width: 100%;
    height: 72vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 15px;
  }
  #hero04 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -80px 0px 50px;
  }
}
@media screen and (max-width:360px) {
  #hero04 {
    width: 100%;
    height: 70vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 20px;
    background-color: #78c14e;
  }
  #hero04 h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    width: 250px;
    padding: 15px;
    margin: -30px 0px 70px -10px;
  }
}
@media (max-width:320px) {
  #hero04 {
    width: 100%;
    height: 70vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px 20px;
  }
  #hero04 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: 0px 0px 70px -20px;
  }
}
@media (max-width:280px) {
  #hero04 {
    width: 100%;
    height: 78vh;
    background: url(../images/index_herobg02_m.png) top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: -60px 20px;
  }
  #hero04 h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 240px;
    padding: 15px;
    margin: -80px 0px 70px -20px;
  }
}



.breadcrumbs {
  margin-top: 0px;
  text-align: center;
  background: #007d7d;
  padding: 30px 0;
  color: #fff;
  position: relative;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: -10px;
  }
}
.breadcrumbs h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.breadcrumbs p {
  margin: 10px 0px;
  font-size: 1.03rem;
  line-height: 1.5;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# 項目輪播v5.3 serviceinfos
--------------------------------------------------------------*/

.serviceinfos .content h2 {
  font-weight:900;
  font-size: 2rem;
  margin: 10px 0px;
  color: #007d7d;
}
.serviceinfos .content h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 10px;
}
.serviceinfos .content p {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666666;
  /*color: #666666;*/
  text-align: left;
}


.serviceinfos .serviceinfo-item {
 /* background-color: var(--surface-color);*/
  /*box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);*/
  box-sizing: content-box;
  padding:5px;
  margin: 10px;
  /*min-height: 320px;*/
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.serviceinfos .serviceinfo-item .serviceinfo-img {
  width: 150px;
  /*border-radius: 50%;*/
 /* border: 4px solid var(--background-color);*/
  margin: 0 auto;
}

.serviceinfos .serviceinfo-item h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 20px 0 10px 0;
    /* color: #ff8400; */
    color: #007d7d;
}

.serviceinfos .serviceinfo-item h4 {
  font-size: 14px;
  /*color: color-mix(in srgb, var(--default-color), transparent 40%);*/
  margin: 0;
}

.serviceinfos .serviceinfo-item p {
 /* font-style: italic;*/
    font-style: normal;
    line-height: 1.8;
    font-size: 1.02rem;
    /* font-style: italic; */
    margin: 0 15px 15px 15px;;
    padding: 10px 20px 20px;
    font-weight: 500;
}

.serviceinfos .swiper-wrapper {
  height: auto;
}

.serviceinfos .swiper-pagination {
  margin-top: 0px;
  margin-bottom: 30px;
  position: relative;
}

.serviceinfos .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  /*background-color:#9fbdbe;*/
  opacity: 1;
}

.serviceinfos .swiper-pagination .swiper-pagination-bullet-active {
 /*background-color: var(--accent-color);*/
 background-color:#45A19A;
}

.serviceinfos .swiper-slide {
  opacity: 1;
}

@media (max-width: 1199px) {
  .serviceinfos .swiper-slide-active {
    opacity: 1;
  }

 /* .serviceinfos .swiper-pagination {
    margin-top: 0;
  }*/

  .serviceinfos .serviceinfo-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .serviceinfos .swiper-slide-next {
    opacity: 1;
    /*transform: scale(1.12);滑過時變大*/
  }
}




/*--------------------------------------------------------------
# 項目輪播v5.3 高齡弱勢友善服務 serviceinfo02
--------------------------------------------------------------*/

.serviceinfo02 .content h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 0px 0px 30px 0px;
  color: #007d7d;
  text-align: center;
}
.serviceinfo02 .content h2::after {
  /*  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.serviceinfo02 .content .t01 {
  font-weight: 900;
  font-size: 1.6rem;
  margin: 20px 0px 30px 0px;
  color: #ff6600;
  text-align: center;
}
.serviceinfo02 .content .t01::after {
  /*  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 0px;*/
}
.serviceinfo02 .content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px 0;
  /* color: #ff8400; */
  color: #007d7d;
}
/*
.serviceinfo02 .content h2 {
  font-weight:900;
  font-size: 2rem;
  margin: 10px 0px;
  color: #007d7d;
}
.serviceinfo02 .content h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 8px 10px;
}*/


.serviceinfo02 .content p {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #666666;margin: 0 15px 15px 15px;
  /*color: #666666;*/
  text-align:center;
}

.serviceinfo02 .serviceinfo-item {
 /* background-color: var(--surface-color);*/
  /*box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);*/
  box-sizing: content-box;
  padding:5px;
  margin: 10px;
  /*min-height: 320px;*/
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.serviceinfo02 .serviceinfo-item .serviceinfo-img {
  width: 150px;
  /*border-radius: 50%;*/
 /* border: 4px solid var(--background-color);*/
  margin: 0 auto;
}

.serviceinfo02 .serviceinfo-item h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 20px 0 10px 0;
    /* color: #ff8400; */
    color: #007d7d;
}

.serviceinfo02 .serviceinfo-item h4 {
  font-size: 14px;
  /*color: color-mix(in srgb, var(--default-color), transparent 40%);*/
  margin: 0;
}

.serviceinfo02 .serviceinfo-item p {
 /* font-style: italic;*/
    font-style: normal;
    line-height: 1.8;
    font-size: 1.02rem;
    /* font-style: italic; */
    margin: 0 15px 15px 15px;;
    padding: 0px 10px 10px;
    font-weight: 500;
}

.serviceinfo02 .swiper-wrapper {
  height: auto;
}

.serviceinfo02 .swiper-pagination {
  margin-top: 0px;
  margin-bottom: 30px;
  position: relative;
}

.serviceinfo02 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  /*background-color:#9fbdbe;*/
  opacity: 1;
}

.serviceinfo02 .swiper-pagination .swiper-pagination-bullet-active {
 /*background-color: var(--accent-color);*/
 background-color:#45A19A;
}

.serviceinfo02 .swiper-slide {
  opacity: 1;
}

@media (max-width: 1199px) {
  .serviceinfo02 .swiper-slide-active {
    opacity: 1;
  }

 /* .serviceinfos .swiper-pagination {
    margin-top: 0;
  }*/

  .serviceinfo02 .serviceinfo-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .serviceinfo02 .swiper-slide-next {
    opacity: 1;
    /*transform: scale(1.12);滑過時變大*/
  }
}



