@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --color-1: #488175;
  --color-2: #91669b;
  --color-3: #8eb176;
  --color-4: #cec79c;
  --color-5: #99c87a;
  --color-6: #3e3e3e;
  --hover: #000;
  --active: #000;
  --btn: #488175;
  --btn-hover: #000;
  --navMobile: #fff;
  --navMobileDark: #3e3e3e;
  --navbarSideMobile: #488175;
}

body {
  color: #555;
  font-size: 1rem;
  font-family: "Roboto", "Noto Sans TC", "Microsoft JhengHei UI", "Microsoft JhengHei", "微軟正黑體", "HeiTi TC", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
a {
  text-decoration: none;
  outline: none;
}
a:hover, a:focus {
  color: #000;
  text-decoration: none;
  outline: none;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", "Roboto", "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
h1 {
  color: var(--color-1);
  font-size: 2rem;
  text-transform: uppercase;
}
h2 {
  color: var(--color-1);
  font-size: 1.875rem;
}
h3 {
  color: var(--color-1);
  font-size: 1.625rem;
}
h4 {
  color: var(--color-1);
  font-size: 1.5rem;
}
h5 {
  color: var(--color-1);
  font-size: 1.25rem;
}
h6 {
  color: var(--color-1);
  font-size: 1.125rem;
  font-weight: 500;
}
p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}
img {
  max-width: 100%;
}
iframe {
  max-width: 100%;
  min-height: 207px;
}
blockquote {
  font-size: 1rem;
  margin: 20px 0;
  padding: 20px 20px;
  color: #000;
  background-color: #f6f6f6;
  border-left: 8px solid #ccc;
}
blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
  margin-bottom: 0;
  border-radius: 20px;
}
b, strong {
  font-weight: 500;
}
.editor b, .editor strong {
  color: var(--color-1);
}
hr {
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
  border: 0;
  border-top: 1px dashed #ccc;
  opacity: 1;
}
th {
  font-weight: 400;
}
dt {
  font-weight: 400;
}
ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}
button {
  outline: none;
  box-shadow: 0 0 0 0;
}
button:focus {
  outline: none;
  box-shadow: 0 0 0 0 !important;
}
.icon {
  vertical-align: middle;
}
.font-0 {
  font-size: 0;
  font-style: normal;
}
.rwd-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .rwd-web {
    display: none;
  }
  .rwd-mobile {
    display: block;
  }
}
.tooltip-inner {
  color: #fff;
  padding: 3px 10px 5px 10px;
  background-color: var(--color-1);
  opacity: 1;
  z-index: 999;
}
.tooltip-arrow {
  --bs-tooltip-bg: var(--color-1);
}
::selection {
  background: #baf7ff;
  color: #000;
}
::-moz-selection {
  background: #baf7ff;
  color: #000;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
	background: #fff;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
::-webkit-scrollbar-thumb:active {
  background-color: #555;
}
.main ::-webkit-scrollbar {
  height: 18px;
  width: 18px;
}
.main ::-webkit-scrollbar-track {
  background-color: #eee;
}
.main ::-webkit-scrollbar-corner {
  background-color: #eee;
}
.main ::-webkit-scrollbar-thumb {
  background-color: #ccc;
  background-clip: padding-box;
  border: 4px solid transparent;
  border-top-width: 5px;
  border-left-width: 5px;
}
.main ::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-3);
}
.main ::-webkit-scrollbar-thumb:active {
  background-color: var(--color-3);
}
.main ::-webkit-scrollbar-button:single-button {
  background-color: #eee;
  display: block;
  background-size: 12px;
  background-repeat: no-repeat;
}
.main ::-webkit-scrollbar-button:single-button:vertical:decrement,
.main ::-webkit-scrollbar-button:single-button:vertical:increment,
.main ::-webkit-scrollbar-button:single-button:horizontal:decrement,
.main ::-webkit-scrollbar-button:single-button:horizontal:increment {
  height: 18px;
  width: 18px;
}
.main ::-webkit-scrollbar-button:single-button:vertical:decrement:hover,
.main ::-webkit-scrollbar-button:single-button:vertical:increment:hover,
.main ::-webkit-scrollbar-button:single-button:horizontal:decrement:hover,
.main ::-webkit-scrollbar-button:single-button:horizontal:increment:hover,
.main ::-webkit-scrollbar-button:single-button:vertical:decrement:active,
.main ::-webkit-scrollbar-button:single-button:vertical:increment:active,
.main ::-webkit-scrollbar-button:single-button:horizontal:decrement:active,
.main ::-webkit-scrollbar-button:single-button:horizontal:increment:active {
  background-color: #ccc;
}
.main ::-webkit-scrollbar-button:single-button:vertical:decrement,
.main ::-webkit-scrollbar-button:single-button:vertical:decrement:hover,
.main ::-webkit-scrollbar-button:single-button:vertical:decrement:active {
  background-position: center 4px;
  background-image: url("../assets/images/arrowT.svg");
}
.main ::-webkit-scrollbar-button:single-button:vertical:increment,
.main ::-webkit-scrollbar-button:single-button:vertical:increment:hover,
.main ::-webkit-scrollbar-button:single-button:vertical:increment:active {
  background-position: center 2px;
  background-image: url("../assets/images/arrowD.svg");
}
.main ::-webkit-scrollbar-button:single-button:horizontal:decrement,
.main ::-webkit-scrollbar-button:single-button:horizontal:decrement:hover,
.main ::-webkit-scrollbar-button:single-button:horizontal:decrement:active {
  background-position: 2px 3px;
  background-image: url("../assets/images/arrowL.svg");
}
.main ::-webkit-scrollbar-button:single-button:horizontal:increment,
.main ::-webkit-scrollbar-button:single-button:horizontal:increment:hover,
.main ::-webkit-scrollbar-button:single-button:horizontal:increment:active {
  background-position: 3px 3px;
  background-image: url("../assets/images/arrowR.svg");
}
/***--- header ---***/
header {
  height: 75px;
}
/***navbar***/
.navbar {
  padding: 0;
  background: #fff;
}
.navbar.active {
  background: #3e3e3e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.navbar.active .rwd-web {
  display: none;
}
.navbar.active .rwd-mobile {
  display: block;
}
.navbar.active .nav-link {
  color: #fff;
}
.navbar.active .active a.nav-link {
  color: var(--color-3);
}
.navbar.active a.nav-link:hover {
  color: var(--color-3);
}
.navbar .navbar-nav {
  margin-left: auto;
}
.logo {
  display: inline-flex;
}
.logo h1 {
  margin: 0;
  display: contents;
}
.logo a {
  display: block;
}
.logo img {
  height: 45px;
}
.navbar .nav-link {
  position: relative;
  color: #000;
  white-space: normal;
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  padding: 0.25rem 0.75rem !important;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar a.nav-link:hover,
.navbar a.nav-link:focus {
  color: var(--color-1);
}
.navbar a.nav-link:hover.dropdown-toggle::after {
  border-color: var(--color-1);
}
.navbar .active a.nav-link {
  color: var(--color-1);
}
.navbar .active .dropdown-toggle::after {
  border-color: #fff;
}
.navbar .active a.nav-link:hover {
  color: var(--color-3);
}
.navbar .active a.nav-link:hover.dropdown-toggle::after {
  border-color: #fff;
}
/* navbar-toggler */
.navbar-toggler {
  padding: 0;
  border: 0;
  background-color: transparent;  
}
.navbar-toggler .navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 2px;
  background: #fff;
}
.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 30px;
  height: 2px;
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  background: #fff;
}
.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}
.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  top: 0;
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}
/* navbarSide */
.navbarSide-close-box {
  text-align: right;
  margin: 20px 0 0 0;
}
#navbarSide-close.navbar-toggler {
  color: #fff;
  font-size: 1.25rem;
  padding: 0;
  margin-right: 0;
  line-height: 1;
  background-color: transparent;
  border: 0;
}
#navbarSide-close.navbar-toggler .navbar-toggler-icon {
  background: transparent;
}
#navbarSide-close.navbar-toggler .navbar-toggler-icon:before,
#navbarSide-close.navbar-toggler .navbar-toggler-icon:after {
  top: 0;
  background: #fff;
}
#navbarSide-close.navbar-toggler .navbar-toggler-icon:before {
  transform: rotate(45deg);
}
#navbarSide-close.navbar-toggler .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}
/***top link***/
.top-link-box {
  color: #000;
  margin-left: 10px;
}
.top-link-box ul {
  z-index: 999;
  list-style-type: none;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  padding-left: 0;
}
.top-link-box li {
  margin: 0 3px;
}
.top-link-box .last {
  margin-right: 10px;
}
.top-link-box i {
  line-height: 1px;
}
.top-link-box a {
  display: block;
}
.top-link-box .top-link a {
  font-size: 1.125rem;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--color-1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-link-box .top-link a:hover {
  background: var(--color-3);
}
.top-link-box .top-link i {
  font-size: 1.5rem;
}
.top-link-box .top-link i.icon:before {
  line-height: 1;
}
/***--- header end ---***/

/***--- banner ----***/
#home-bn .swiper .swiper-slide img {
  transform-style: initial;
  width: 100%;
  height: 697px;
  object-fit: cover;
}
#home-bn .caption-box:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 2px;
  margin-top: -20px;
  margin-left: -200px;
  background: var(--color-1);
}
#home-bn .caption {
  color: #000;
  font-size: 1.25rem;
  min-height: 300px;
  text-align: center;
}
#home-bn .caption h2 {
  font-size: 3rem;
  color: #000;
  margin: 20px 0;
  font-weight: 600;
}
#home-bn .caption h4 {
  color: #488175;
  font-size: 2.5rem;
  margin: 0;
}
#home-bn .btn-box {
  display: inline-flex;
}
#home-bn .btn-box .button-prev, #home-bn .btn-box .button-next {
  position: relative;
  color: #fff;
  left: 0;
  right: 0;
  padding: 0;
  margin: 10px;
  background: #000;
  width: 45px;
  height: 45px;
}
#home-bn .btn-box .button-prev:hover, #home-bn .btn-box .button-next:hover {
  color: #fff;
  background: var(--color-1);
}
#home-bn .swiper-pagination {
  width: auto;
  left: 10px;
}
#home-bn .home-go-box {
  position: absolute;
  margin-left: -75px;
  bottom: 10%;
}
#home-bn .home-go-box a {
  height: 100px;
  background: var(--color-1);
  color: #fff;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home-bn .home-go-box i {
  font-size: 3rem;
}
@media (max-width: 992px) { 
  #home-bn .swiper .swiper-slide img {
    height: 427px;
  }
}
/***--- banner end ----***/

/***--- home ----***/
#home .bigtitle h2 {
  color: #50525f;
  font-size: 3rem;
  font-weight: 200;
  text-align: center;
  text-transform: uppercase;
}
#home .bigtitle b {
  font-weight: 600;
}
#home .subtitle h4 {
  color: var(--color-2);
  text-align: center;
  margin-bottom: 3rem;
}
/***about***/
#home-about {
  position: relative;
  background: url(../assets/images/bg_01.jpg) center center;
  padding: 5rem 0;
}
#home-about .info-box {
  color: #777;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 3.5rem;
}
#home-about .content-block>.row {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 3.25rem;
}
#home-about .list-box ul {
  list-style-type: none;
  padding: 0;
}
#home-about .list-box ul li.icon-box {
  width: 40px;
  float: left;
}
#home-about .list-box ul li.article {
  padding-left: 1rem;
  margin-left: 40px;
}
/***tech***/
#home-tech {
  position: relative;
  background: url(../assets/images/bg_02.jpg) center center;
  background-attachment: fixed;
  padding: 6rem 0;
}
#home-tech .list-box {
  text-align: center;
}
#home-tech .list-box .image-box {
  margin-bottom: 1rem;
}
#home-tech .list-box h4 {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}
/***work***/
#home-work {
  position: relative;
  padding: 5rem 0;
}
#home-work .article-box {
  margin-top: 1rem;
}
#home-work .article-box .article {
  color: #888;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#home-work .image-box {
  position: relative;
}
#home-work .image-box a {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgb(0 0 0 / 70%);
	transition: opacity 0.35s;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	-ms-transition: opacity 0.35s;
	-o-transition: opacity 0.35s;
	opacity: 0;
}
#home-work .image-box:hover a {
	opacity: 1;
}
#home-work .image-box .icon-box {
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
}
#home-work .image-box .icon-box i {
  font-size: 1.25rem;
}
/***design***/
#home-design {
  position: relative;
  background-color: #f3f3f3;
  padding: 5rem 0;
}
#home-design .content-box>.row {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 3.25rem;
}
#home-design .list-box ul {
  list-style-type: none;
  padding: 0;
}
#home-design .list-box ul li.icon-box {
  width: 40px;
  float: left;
}
#home-design .list-box ul li.article {
  padding-left: 1rem;
  margin-left: 40px;
}
#home-design .list-box h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
/***news***/
#home-news {
  position: relative;
  padding: 5rem 0;
}
#home-news .content-block>.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}
#home-news .list-box {
  margin-bottom: 0.5rem;
}
#home-news .content-box {
  border: 1px dashed #48817599;
}
#home-news .image-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
#home-news .image-box .image {
  width: 100%;
  height: 100%;
}
#home-news .image-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-news .date-box {
  position: absolute;
}
#home-news .date {
  color: #fff;
  font-family: "Josefin Sans", "Noto Sans TC", sans-serif;
  line-height: 1;
  text-align: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  background-color: var(--color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#home-news .date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
#home-news .date .month {
  font-size: 0.8125rem;
  font-weight: 500;
  width: 55px;
  padding-top: 5px;
  border-top: 1px dotted #fff;
}
#home-news .article-block {
  height: calc(100% - 30px);
}
#home-news .article-box {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
}
#home-news .title h3 {
  color: var(--color-1);
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#home-news .title h3 a {
  color: var(--color-1);
}
#home-news .title h3 a:hover {
  color: #000;
}
#home-news .article {
  color: #888;
  font-size: 1rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#home-news .btn-box {
  position: relative;
  width: 90px;
  border-radius: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color-4);
  overflow: hidden;
}
#home-news .btn-box:hover {
  color: #fff;
}
#home-news .btn-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-1);
  transform: scaleX(0); 
  transform-origin: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
#home-news .btn-box:hover::before {
  border-radius: 30px;
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	opacity: 1;
}
#home-news .link-btn {
  position: relative;
  display: block;
  color: #fff;
  font-size: 0.875rem;
  width: 90px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
}
#home-news .btn-box:hover .link-btn {
  color: #fff;
}
#home-news .link-btn i {
  font-size: 0.5rem;
  margin-left: 3px;
  vertical-align: 1px;
}
/***--- home end ----***/

/***--- page ----***/
#page .navbar {
  background: #3e3e3e;
}
#page .navbar .rwd-mobile {
  display: block;
}
#page .navbar .rwd-web {
  display: none;
}
#page .navbar .nav-link {
  color: #fff;
}
#page .navbar .nav-link:hover {
  color: var(--color-5);
}
#page .navbar .active .nav-link {
  color: var(--color-5);
}
/* body-top */
#body-top {
  margin-bottom: 1rem;
}
#body-top .top-box {
  padding: 2rem 0;
  border-bottom: 1px dashed #ccc;
}
#body-top .top-title h2 {
  color: #50525f;
  font-size: 3rem;
  font-weight: 200;
  text-align: center;
  text-transform: uppercase;
}
#body-top .top-subtitle h4 {
  color: var(--color-2);
  text-align: center;
}
#body-top .top-info {
  color: #777;
  line-height: 1.75;
  text-align: center;
}
/* content */
#content {
  padding: 3.25rem 0 4rem;
}
.page-title {
  margin: 0 0 1.75rem;
}
.page-title h3 {
  position: relative;
  color: var(--color-1);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}
.page-title h3:before {
  content: "";
  border-bottom: 1px dashed var(--color-1);
  position: absolute;
  width: 100%;
  margin-top: 15px;
}
.page-title h3 i {
  position: relative;
  font-style: normal;
  padding-right: 10px;
  background: #fff;
}
.page-title h3 i:before {
  content: url(../assets/images/pagetitle.png);
  position: absolute;
  margin-top: -8px;
  margin-left: -50px;
}
#page .subtitle h3 {
  color: var(--color-2);
  font-size: 1.625rem;
  margin: 0 0 1rem 0;
}
#page .subtitle h3:before {
  content: "\e0d0";
  font-size: 1.5rem;
  font-family: "gwicon";
  vertical-align: -2px;
  margin-right: 0.25rem;
}
a.glightbox {
  display: block;
  cursor: url(../assets/images/zoom.svg), auto;
}
/***--- page end ----***/

/***--- about ----***/
#content.about-content {
  padding-bottom: 0rem;
}
#about .image-box {
  text-align: center;
}
#tech-block {
  position: relative;
  padding: 5.5rem 0;
  margin-top: 3rem;
  overflow: hidden;
}
#tech-block .overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../assets/images/pat3.png) repeat;
  opacity: 0.5;
}
#tech-block .overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
#tech-block .content-box {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}
#tech-block .content-box h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
#work-block {
  position: relative;
  background-color: var(--color-1);
  padding: 5.5rem 0;
  overflow: hidden;
}
#work-block .content-box {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}
#work-block .content-box h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
#work-block .content-box .link-btn {
  display: inline-block;
  color: #fff;
  font-size: 0.975rem;
  font-family: "Raleway", sans-serif;
  border: 2px solid #fff;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
}
#work-block .content-box .link-btn:hover {
  color: var(--color-1);
  background-color: #fff;;
}
#work-block .content-box .link-btn i {
  margin-left: 5px;
}
/***--- about end ----***/

/***--- news ----***/
#news .main>.row {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 2rem;
}
#news .content-box {
  border: 1px dashed #48817566;
}
#news .date {
  position: relative;
  color: #fff;
  font-size: 0.875rem;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-top: -15px;
  background: var(--color-2);
}
#news .article-box {
  padding: 1rem;
}
#news .title h3 {
  color: var(--color-1);
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#news .title h3 a {
  color: var(--color-1);
}
#news .title h3 a:hover {
  color: #000;
}
#news .article {
  color: #888;
  font-size: 1rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#news .btn-box {
  position: relative;
  width: 90px;
  margin: 1rem auto 0.5rem;
  border-radius: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
	background-color: var(--color-3);
}
#news .btn-box:hover {
  color: #fff;
}
#news .btn-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-1);
  transform: scaleX(0); 
  transform-origin: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
#news .btn-box:hover::before {
  border-radius: 30px;
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	opacity: 1;
}
#news .link-btn {
  position: relative;
  display: block;
  color: #fff;
  font-size: 0.875rem;
  width: 90px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
}
#news .btn-box:hover .link-btn {
  color: #fff;
}
#news .link-btn i {
  font-size: 0.5rem;
  margin-left: 3px;
  vertical-align: 1px;
}
/***--- news end ----***/

/***--- service ----***/
#service .main>.row {
  --bs-gutter-y: 3.25rem;
  --bs-gutter-x: 3.25rem;
}
#service .list-box {
	text-align: center;
}
#service .list-box .title {
  margin-top: 0.75rem;
}
#service .list-box .title h3 {
  font-size: 1.25rem;
}
#service .icon-box {
	text-align: center;
	margin: 0 auto;
	padding: 0;    
}
#service .icon-box i {
	position: relative;
	display: inline-block;
	color: #fff;
	text-decoration:none;
	width: 90px;
	height: 90px;
	margin: 15px 30px;
	border-radius: 50%;
	text-align: center;
	background: rgba(95, 95, 95,1);
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	z-index: 1;
}
#service .icon-box i:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: -7px;
	left: -7px;
	padding: 7px;
  box-sizing: content-box;
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	border-radius: 50%;
	box-shadow: 0 0 0 4px #5F5F5F;
	transform: scale(.8);
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	opacity: 0;
}
#service .icon-box i:before {
	font-size: 48px;
	line-height: 90px;
}
#service .icon-box i:hover {
	background: rgba(95, 95, 95,.8);
	color: #fff;
}
#service .icon-box i:after {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
#service .icon-box i:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
/* #service-tech */
#service-tech {
  position: relative;
  background: url(../assets/images/img_10.jpg) center center;
  padding: 5.5rem 0;
  margin-top: 5.5rem;
  overflow: hidden;
}
#service-tech .overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../assets/images/pat3.png) repeat;
  opacity: 0.5;
}
#service-tech .overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
#service-tech .content-box {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}
#service-tech .content-box h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
/* service-work */
#service-work {
  position: relative;
  padding: 6rem 0 2rem 0;
  overflow: hidden;
}
#service-work .content-box {
  position: relative;
  font-size: 1.25rem;
  text-align: center;
}
#service-work .content-box h3 {
  font-size: 2rem;
  margin-top: 2.75rem;
}
/***--- service end ----***/

/***--- price ----***/
#price.main-box>.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
#price .list-box .content-box {
  text-align: center;
  padding: 2rem;
  background-color: #eee;
}
#price .list-box:nth-child(even) .content-box  {
  background-color: #f5f5f5;
}
#price .list-box:hover .content-box  {
  background-color: #c8e3b6;
}
#price .list-box .content-box h4 {
  color: var(--color-3);
  margin-bottom: 1.5rem;
}
#price .list-box .content-box ul {
  list-style-type: none;
  padding: 0;
}
#price .list-box .content-box ul li {
  margin: 0.25rem 0;
}
#price .list-box .content-box .num {
  color: #c3621d;
  font-size: 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}
#price .list-box .content-box .unit {
  font-size: 1.25rem;
  font-family: 'Noto Sans TC';
  margin: 0 0.2rem;
}
#price .list-box .content-box .article {
  color: #555;
  padding: 1.5rem;
  background-color: #fff;
  margin-top: 1rem;
}
#price .list-box .content-box .article ul li {
  margin: 0.5rem 0;
}
#price .list-box .content-box .article i {
  color: #8EB176;
  line-height: 1;
  vertical-align: -2px;
}
#price .info-box {
  margin-top: 2rem;
}
#price .info-box h4 {
  color: var(--color-2);
}
#price .info-box h4 i {
  margin-right: 3px;
}
/***--- price end ----***/

/***--- work ----***/
#content.work-content {
  padding-bottom: 0;
}
#work .works-menu {
  text-align: center;
  margin-bottom: 2rem;
}
#work .works-menu .btn {
  color: var(--color-3);
  padding: 0.3rem 0.75rem;
  margin: 0px 0.5rem;
  border: 2px solid var(--color-3);
  border-radius: 3px;
}
#work .works-menu .btn:hover {
  color: #fff;
  background-color: var(--color-3);
}
#work .works-menu .btn.active {
  color: #fff;
  background-color: var(--color-3);
}
#work .works-display {
  padding: 0;
  min-height: 53vh;
}
#work .works-display>.row {
  --bs-gutter-y: 0;
  --bs-gutter-x: 0;
}
#work .list-box {
  transform: scale(0);
  transition: all 700ms ease;
}
#work .list-box.item {
  transform: scale(1);
}
#work .list-box .article-box {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgb(0 0 0 / 70%);
	transition: opacity 0.35s;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	-ms-transition: opacity 0.35s;
	-o-transition: opacity 0.35s;
	opacity: 0;
}
#work .list-box .article-box a {
  display: block;
}
#work .list-box .article-box .title h3 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
#work .list-box .article-box .article {
  color: var(--color-5);
}
#work .list-box .article-box:hover {
  opacity: 1;
}
#work .list-box .article-box .icon-box {
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 1px solid #fff;
}
#work .list-box .article-box .icon-box i {
  font-size: 1.25rem;
}
#work .list-box img {
  width: 100%;
  height: auto;
}
/* page */
#work-page .main>.row {
  --bs-gutter-x: 5rem;
}
#work-page .title h3 {
  margin-bottom: 3rem;
}
#work-page .title h3:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  margin: 40px auto 0;
  background: var(--color-4);
}
#work-page .article h4 {
  color: #000;
  font-size: 1.25rem;
}
#work-page .article h4 i {
  color: var(--color-3);
  font-size: 1.125rem;
  font-weight: 300;
  font-style: normal;
}
#work-page .btn-list ul {
  display: table;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
}
#work-page .btn-list ul li {
  float: left;
  margin: 0 0.5rem;
}
#work-page .link-btn {
  display: inline-block;
  color: #fff;
  font-size: 0.975rem;
  font-family: "Raleway", sans-serif;
  background-color: var(--color-1);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  border-radius: 3px;
}
#work-page .link-btn.style-1 {
  background-color: var(--color-2);
}
#work-page .link-btn:hover {
  background-color: var(--btn-hover);
}
#work-page .link-btn i {
  margin-left: 5px;
}
/***--- work end ----***/

/***--- contact ----***/
#contact #form-content select {
  border: 1px solid #99C87A;
  background-color: #99C87A;
  color: #FFF;
  font-size: 15px;
  padding: 5px 10px;
}
#contact #form-content textarea {
  height: 170px;
}
#contact .content-box h3 {
  color: var(--color-3);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
#contact .content-box h6 {
  color: var(--color-3);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
#contact .content-box ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}
#contact .content-box ul>li {
  line-height: 1.3;
  padding: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
#contact .content-box ul>li i {
  color: #fff;
  font-size: 1.125rem;
  margin-right: 6px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--color-5);
}
#contact .content-box ul>li a {
  color: #222;
  border-bottom: 1px dotted transparent;
}
#contact .content-box ul>li a:hover {
  border-bottom-color: #000;
}
/***--- contact end ----***/

/***--- sidemenu ---***/
.sidemenu-title {
  margin-bottom: 15px;
}
.sidemenu-title h2 {
  color: #00a5a2;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}
.sidemenu .accordion {
  width: 100%;
  margin: 5px auto 0px;
  list-style: none;
  padding: 0;
  border-radius: 10px;
}
.sidemenu .accordion>li {
  margin-bottom: 10px;
}
.sidemenu .accordion>li.active .link {
  color: #fff;
  background-color: var(--color-1);
}
.sidemenu .accordion li.open .link {
  color: #fff;
  background-color: var(--color-1);
}
.sidemenu .accordion .link {
  display: block;
  position: relative;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  padding: 8px 20px 8px 10px;
  border: 1px solid  var(--color-1);
  border-radius: 30px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  cursor: pointer;
}
.sidemenu .accordion .link:hover {
  color: #fff;
  background-color: var(--color-1);
}
.sidemenu .accordion .active > .submenu {
  display: block;
}
.sidemenu .accordion .active i {
  color: #009688;
}
.sidemenu .accordion li i {
  position: absolute;
  right: 10px;
  line-height: 1;
  margin-top: 3px;
}
.sidemenu .accordion li i.arrow:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidemenu .accordion li:hover i.arrow:after {
  border-color: #fff;
}
.sidemenu .accordion li.open i.arrow:after {
  border-color: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.sidemenu .accordion li.active i.arrow:after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
/*** submenu ***/
.submenu {
  display: none;
  font-size: 1rem;
  line-height: 22px;
  padding: 10px 0;
  margin-top: 5px;
  background: #ebebeb;
  border-radius: 15px;
}
.submenu li {
  list-style-type: none;
}
.submenu a {
  display: block;
  text-decoration: none;
  color: #222;
  padding: 5px 10px 5px 15px;
}
.submenu .active a {
  color: #009592;
  font-weight: 400;
}
.submenu a:hover {
  color: #009592;
}
@media (max-width: 991px) {
  .sidemenu {
    order: 2;
    margin-top: 3rem;
  }
  .sidemenu .accordion li i {
    right: auto;
    margin-left: 10px;
  }
}
/***--- submenu end ---***/

/***--- form ----***/
form .tooltip-inner {
  color: #fff;
  padding: 3px 10px;
  background-color: #000;
  opacity: 1;
}
form .tooltip-arrow {
  --bs-tooltip-bg: #000;
}
#form-content .list-box {
  margin-bottom: 1rem;
}
label {
  position: relative;
  color: #505050;
  font-size: 1rem;
  font-family: "Raleway", "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
label b {
  font-weight: 700;
}
.remark-icon {
  color: #F44336;
  font-size: 1.375rem;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 0;
  vertical-align: -4px;
  margin-left: 3px;
  clear: both;
}
.error {
  display: block;
  color: #000;
  font-size: 0.875rem;
  line-height: 1.2;
  margin-top: 0.25rem;
  background: #ffb59d;
  padding: 0.25rem 0.5rem;
  border-top: 5px solid #ff5722;
  border-bottom: 5px solid #ff5722;
  clear: both;
}
input, select, textarea {
  color: #555;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  outline-color: var(--color-3);
}
textarea {
  display: block;
  height: 115px;;
}
.wordsNum {
  color: #ccc;
  font-size: 1rem;
  display: flex;
  justify-content: right;
}
input:-moz-placeholder {
  color: #aaa;
  font-size: 0.875rem;
  font-weight: 400;
}
input:-ms-input-placeholder {
  color: #aaa;
  font-size: 0.875rem;
  font-weight: 400;
}
input::-webkit-input-placeholder {
  color: #aaa;
  font-size: 0.875rem;
  font-weight: 400;
}
.btn {
  padding: 3px 15px;
  border-radius: 30px;
}
.file-btn {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 30px;
  padding: 5px 10px;
  border: 0;
  border-radius: 3px;
  outline: 1px solid #ccc;
}
.file-btn:focus {
  outline: 2px solid #00b4d8;
  border: 0;
  box-shadow: none;
}
.file-btn::file-selector-button {
  color: #fff;
  background-color: var(--btn);
}
.file-btn:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--btn-hover);
}
.list-float li {
  float: left;
  margin-right: 12px;
}
.list-float li:last-child {
  margin-right: 0;
}
/***button***/
.submit-box {
  text-align: center;
}
.submit-box ul {
  list-style-type: none;
  padding: 0;
}
.submit-box ul>li {
  float: left;
  margin-right: 15px;
}
.submit-box ul>li:last-child {
  margin-right: 0;
}
#submit-btn {
  width: 100%;
  height: 40px;
  max-width: 140px;
  margin: 0 auto 0;
  overflow: hidden;
}
#submit-btn input {
  color: #fff;
  font-size: 1.0625rem;
  line-height: 40px;
  margin: 0;
  padding: 0;
  background: var(--btn);
  border: 0;
}
#submit-btn:hover input {
  color: #fff;
  background: var(--btn-hover);
}
#submit-btn:active input, #submit-btn:focus input {
  color: #fff;
  background: var(--btn-hover);
}
#submit-btn .send-icon {
  display: contents;
  line-height: 40px;
  font-style: normal;
  pointer-events: none;
  z-index: 2;
}
#submit-btn .send-icon:before {
  content: "\e184";
  font-family: "gwicon";
  color: rgb(255 255 255 / 30%);
  font-size: 3rem;
  line-height: 38px;
  margin-left: -45px;
  margin-top: 0px;
  position: absolute;
}
@media (max-width: 992px) {
  #submit-btn {
    margin-top: 1rem;
  }
  .submit-box {
    margin-top: 0;
  }
  .submit-box ul {
    display: inherit;
  }
  .submit-box ul>li {
    margin-right: 0;
  }
}
#captcha {
  width: 120px !important;
  height: 40px !important;
  border: 0 !important;
  vertical-align: -2px;
  background: #ddd;
}
#captcha:focus {
  border: 1px solid #80714d;
}
.captcha-icon i {
  color: #ff5722;
  margin-right: 5px;
  vertical-align: -4px;
}
.captcha-icon i:hover {
  color: #f44336;
}
/***radio & checkbox***/
input[type=radio], input[type=checkbox] {
  vertical-align: -3px;
  width: 18px !important;
  height: 18px !important;
  padding: 10px 0;
  accent-color: #009688;
}
.radio-list {
  padding: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
}
.radio-list i {
  font-style: normal;
  margin-left: 5px;
}
.radio-list li {
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 25px;
  text-indent: -25px;
}
.radio-list li ul {
  padding-left: 25px;
}
.radio-list .subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}
label.radio, label.checkbox {
  cursor: pointer;
  vertical-align: -1px;
  position: relative;
  font-weight: normal;
  margin: 0;
}
label.radio input[type="radio"],
label.checkbox input[type="checkbox"] {
  display: none;
}
label.radio span, label.checkbox span {
  display: inline-block;
}
label.radio span:before {
  content: "";
  display: inline-block;
  vertical-align: -3px;
  background: #fff;
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  transition: all .5s;
}
label.checkbox span:before {
  content: "";
  display: inline-block;
  vertical-align: -3px;
  background: #fff;
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  transition: all .5s;
}
label.radio input[type="radio"]:checked + span:before, label.checkbox input[type="checkbox"]:checked + span:before  {
  background: #b969b0;
  border: 1px solid #b969b0;
}
label.radio input[type="radio"]:checked + span:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 12px;
  box-sizing: border-box;
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
label.checkbox input[type="checkbox"]:checked + span:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 12px;
  box-sizing: border-box;
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.disabled label.radio, .disabled label.checkbox {
  cursor: not-allowed;
}
.disabled label.radio span:before {
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
}
.disabled label.radio input[type="radio"]:checked + span:before, .disabled label.checkbox input[type="checkbox"]:checked + span:before {
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
}
.disabled label.radio input[type="radio"]:checked + span:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 6px;
  height: 12px;
  box-sizing: border-box;
  transform: rotate(45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
/***--- form end ----***/

/***--- main table ---***/
table-responsive {
  overflow-y: hidden;
  margin-bottom: 18px;
}
table-responsive .main table {
  margin-bottom: 0 !important;
}
tbody, td, tfoot, th, thead, tr {
  border-width: inherit;
}
.main table {
  width: 100%;
  max-width: 100% !important;
  border-color: #00b4d833;
  line-height: 1.3;
}
.main table h1,
.main table h2,
.main table h3,
.main table h4,
.main table h5,
.main table h6 {
  margin: 0 !important;
  padding-top: 0 !important;
}
.main table p {
  margin: 0;
}
.main table img {
  padding: 0;
}
.main table thead {
  background-color: var(--color-2);
}
.main table thead th {
  color: #fff;
  font-weight: 400;
  text-align: center;
  padding: 5px 10px;
  vertical-align: middle;
  border: inherit;
  border-right-color: #fff;
  white-space: nowrap;
}
.main table thead th:first-child {
  border-left: 1px solid  var(--color-2);
}
.main table thead th:last-child {
  border-right-color: var(--color-2);
}
.main table thead .date {
  width: 100px !important;
}
.main table tbody .date {
  text-align: center;
}
.main table thead th h1,
.main table thead th h2,
.main table thead th h3,
.main table thead th h4,
.main table thead th h5,
.main table thead th h6 {
  color: #000;
}
.main table thead th.date {
  width: 80px !important;
}
.main table thead th.img {
  width: 100px !important;
}
.main table thead th.link {
  width: 70px !important;
}
.main table thead td {
  font-weight: 500;
  text-align: center;
  padding: 6px 10px;
  line-height: 20px;
  width: auto !important;
}
.main table tbody th {
  color: #000;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  text-align: center;
  padding: 5px 10px;
  background: #e5f7fb;
}
.main table tbody tr {
  background: #ffffff;
  border-color: #00b4d833;
}
.main table tbody tr:nth-child(even) {
  background: #00b4d81a;
}
.editor table tbody tr:nth-child(even) {
  background: none;
}
#uncolor tr:nth-child(even) {
  background: #ffffff;
}
.main table tbody td {
  padding: 8px 10px;
  width: auto !important;
}
.main table tbody td.date {
  text-align: center;
  white-space: nowrap;
}
.main table tbody td.link {
  text-align: center;
}
.main table tbody .link-icon {
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: var(--color-2);
}
.main table tbody .link-icon:hover {
  background: var(--hover);
}
.main table tbody .link-icon a {
  color: #000;
}
.main table tbody .link-icon:hover a {
  color: #fff;
  transition: 0s all;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  -moz-transition: 0s all;
  -ms-transition: 0s all;
}
.main table .link-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}
.main table tbody ul,
.main table tbody ol {
  padding-left: 22px;
  margin-bottom: 0;
}
.main table tbody li {
  padding: 0;
}
@media (max-width: 768px) {
  .main table thead th,
  .main table tbody th,
  .main table tbody tr td {
    padding: 5px 5px;
  }
}
.dataTables_wrapper .dataTables_length select {
  border: 1px solid var(--color-1);
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid var(--color-1);
}
.dataTables_length label, .dataTables_filter label {
  position: relative;
  color: var(--color-2);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 5px 0;
}
table.dataTable {
  border-collapse: collapse;
}
table.dataTable.no-footer {
  border-bottom: 1px solid var(--color-2);
  border-top: 0;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #00b4d833;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #333;
  background: #fff;
  border: 2px solid var(--color-2);
  border-radius: 100%;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff;
  background: var(--color-2);
  border: 2px solid var(--color-2);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #fff;
  background-color: var(--color-2);
}

/* rwd-table */
.rwd-table .column {
  display: inline-block;
  width: 100%;
}
.rwd-table tbody label {
  display: none;
  color: #009ce2;
  margin: 0;
}
.rwd-table .column.colimg .image {
  display: inline-block;
  width: 150px;
}
.rwd-table .column.colimg .text {
  display: inline-block;
  width: calc(100% - 150px);
  margin-left: -8px;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .rwd-table td {
    display: block;
    text-align: left;
    border-bottom-width: 0;
  }
  .rwd-table td:last-child {
    border-bottom-width: 1px;
  }
  .rwd-table.dataTable td {
    border-top: 1px solid;
    border-color: rgb(0 178 214 / 30%);
  }
  .rwd-table.dataTable .even td:first-child {
    border-top: 2px solid;
    border-color: rgb(0 178 214 / 30%);
  }
  .rwd-table.dataTable td:last-child {
    border-bottom: 1px solid;
    border-color: rgb(0 178 214 / 30%);
  }
  .rwd-table thead, .rwd-table tbody th {
    display: none;
  }
  .rwd-table tbody td label {
    display: inline-block;
    text-align: left;
    width: 110px;
    padding-right: 10px;
  }
  .rwd-table .column {
    display: inline-block;
    width: calc(100% - 110px);
    text-align: left;
    margin-left: -5px;
    vertical-align: top;
  }
  .rwd-table .column.colimg {
    width: 100%;
    margin: 0;
  }
  .rwd-table .column.colimg .image {
    width: 110px;
    padding-right: 10px;
  }
  .rwd-table .column.colimg .text {
    width: calc(100% - 110px);
    padding-left: 6px;
  }
  .rwd-table #link-group {
    justify-content: start;
  } 
  .rwd-table link-group .link-icon {
    margin-bottom: 0;
  }
}
/***--- table end ---***/

/***--- editor ---***/
.editor {
  min-height: 23vh;
}
.editor h3, .editor h4, .editor h5 {
  color: var(--color-3);
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.editor h3:first-child, .editor h4:first-child, .editor h5:first-child, .editor h6:first-child {
  margin-top: 0;
}
.editor h2 i, .editor h3 i, .editor h4 i {
  vertical-align: -3px;
}
.editor h5 i, .editor h6 i {
  vertical-align: -2px;
}
.editor a {
  border-bottom: 1px dotted transparent;
}
.editor a:hover, .editor a:focus {
  border-bottom-color: #000;
}
.editor .table-responsive {
  margin-bottom: 1rem;
}
.editor .table-responsive:last-child {
  margin-bottom: 0;
}
.editor .table-responsive table {
  margin-bottom: 0;
}
.editor table {
  margin-bottom: 1rem;
}
.editor img {
  max-width: 100%;
  height: auto !important;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .editor img {
    float: none !important;
    margin: 1.5rem auto !important;
    display: block;
  }
}
.editor figure {
  margin-bottom: 1.5rem;
}
.editor figure img {
  margin-bottom: 0.5rem;
}
.editor figcaption {
  color: var(--color-3);
  font-weight: 400;
  text-align: center;
}
/* ul */
.editor ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.editor ul li {
  position: relative;
  padding-left: 1rem;
}
.editor ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: currentColor;
  border-radius: 50%;
}
/* ol */
.editor ol {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  margin-bottom: 1.5rem;
}
.editor ol li {
  position: relative;
  padding-left: 1.5rem;
  counter-increment: item;
}
.editor ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  width: 1.25rem;
  text-align: center;
}
.editor li>ol, .editor li>ul {
  margin: 0.25rem 0 !important;
}
#main-images img {
  padding: 0;
}
#main-images .list-box a {
  border-bottom: 0;
  cursor: url(../assets/images/zoom.svg), auto;
}
.editor p {
  font-size: 1rem;
}
.editor blockquote, .editor li {
  font-size: 1rem;
}
@media (max-width: 992px) {
  .editor p {
    font-size: 1rem;
  }
  .editor blockquote, .editor li {
    font-size: 1rem;
  }
}
/***--- editor end ---***/

/***--- footer ---***/
footer {
  position: relative;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 40px 0;
  background: #3e3e3e;
}
footer p {
  margin-bottom: 0;
}
footer a, footer a:focus {
  color: #fff;
}
footer a:hover {
  color: var(--color-3);
}
footer ul {
  padding-left: 0;
  list-style: none;
}
footer li {
  line-height: 1.5;
  margin: 0.25rem 0;
}
footer .footer-logo {
  margin-top: 1rem;
}
footer .contact {
  text-align: left;
}
footer .contact i {
  font-size: 1.125rem;
  vertical-align: -4px;
  margin-right: 10px;
}
footer .service h3 {
  color: var(--color-3);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
footer .service h3 .en {
  color: #A5A5A5;
  font-size: 0.9375rem;
  font-weight: 300;
  text-transform: uppercase;
}
footer .service ul {
  list-style-type: none;
  padding: 0;
}
footer .service li {
  margin: 0.25rem 0;
}
footer .service li i {
  color: var(--color-3);
  margin-right: 3px;
}
/***--- footer end ---***/

/***--- breadcrumb ---***/
.gw-breadcrumb {
  color: #000;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: end;
}
.gw-breadcrumb a {
  color: #000;
}
.gw-breadcrumb a:hover {
  color: var(--color-1);
}
.gw-breadcrumb a i {
  font-size: 1rem;
  vertical-align: -2px;
}
.gw-breadcrumb .bread_gt {
  padding: 0 3px;
}
.gw-breadcrumb .bread_gt:before {
  content: "\42";
  color: var(--color-3);
  font-family: "gwicon";
  font-size: 0.75rem;
  vertical-align: -1px;
}
/***--- breadcrumb end ---***/

/***--- pagination ---***/
.pagination {
  display: inherit;
  font-size: 0.875rem;
  text-align: center;
  padding-top: 2rem;
  margin: 0;
  clear: both;
}
.pagination strong {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  width: 32px;
  height: 32px;
  line-height: 30px;
  margin: 0 5px;
  background: var(--color-2);
  border: 2px solid var(--color-2);
  border-radius: 100%;
}
.pagination a,
.pagination a:link,
.pagination a:visited,
.pagination a:focus {
  display: inline-block;
  color: #000;
  width: 32px;
  height: 32px;
  line-height: 30px;
  margin: 0 5px;
  padding: 0;
  background: #fff;
  border: 2px solid var(--color-2);
  border-radius: 100%;
}
.pagination a:hover {
  color: #fff;
  background: var(--color-2);
  border: 2px solid var(--color-2);
}
.pagination a .first-link {
  display: inherit;
  content: url(../assets/images/first.png);
}
.pagination a .last-link {
  display: inherit;
  content: url(../assets/images/last.png);
}
.pagination a .prev-link {
  display: inherit;
  content: url(../assets/images/prev.png);
}
.pagination a .next-link {
  display: inherit;
  content: url(../assets/images/next.png);
}
.pagination a:hover .first-link {
  display: inherit;
  content: url(../assets/images/first_h.png);
}
.pagination a:hover .last-link {
  display: inherit;
  content: url(../assets/images/last_h.png);
}
.pagination a:hover .prev-link {
  display: inherit;
  content: url(../assets/images/prev_h.png);
}
.pagination a:hover .next-link {
  display: inherit;
  content: url(../assets/images/next_h.png);
}
/***--- pagination end ---***/

/***--- tips ---***/
.tips {
  font-size: 0.8125rem;
  color: #fff;
  clear: both;
  margin-top: 50px;
}
.tips ul {
  float: right;
  list-style-type: none;
  padding-left: 0;
}
.tips ul li {
  float: left;
}
.tips .tips-content a {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background: var(--color-1);
}
.tips .tips-content a:link {
  color: #fff;
}
.tips .tips-content a:hover {
  color: #fff;
  background: var(--hover);
}
.tips-list {
  padding-right: 5px;
}
.tips-list i {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}
#about .tips-float .tips-list.prePage,
#service .tips-float .tips-list.prePage,
#price .tips-float .tips-list.prePage {
  display: none;
}
.tips-list .font-plus, .tips-list .font-minus {
  user-select: none;
}
.tips-list svg {
  fill: #fff;
}
.tips .a2a_default_style a:hover .a2a_svg,
.tips .a2a_floating_style a:hover .a2a_svg,
.tips .a2a_overlay_style a:hover .a2a_svg svg {
  opacity: 1 !important;
}
.tips .a2a_default_style a {
  line-height: 1 !important;
  padding: 0px 6px 0 0 !important;
}
.tips .a2a_default_style .a2a_svg {
  width: 36px;
  height: 36px;
  background: var(--color-2) !important;
}
.tips .a2a_default_style a:hover .a2a_svg {
  background: var(--hover) !important;
}
.tips .a2a_menu a {
  color: #000 !important;
}
.tips .a2a_menu a:hover {
  color: #000 !important;
}
/***--- tips end ---***/

/***--- tips float ---***/
#float-link {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 100;
}
.tips-float {
  color: #fff;
  font-size: 0.8125rem;
}
.tips-float ul {
  list-style-type: none;
  padding-left: 0;
}
.tips-float  ul li.share-btn a {
  padding: 0.15rem 0;
}
.tips-float  ul li .a2a_default_style {
  display: grid;
}
.tips-float .tips-content a {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background: var(--color-3);
}
.tips-float .tips-content a:link {
  color: #fff;
}
.tips-float .tips-content a:hover {
  color: #fff;
  background: var(--hover);
}
.tips-float .tips-list {
  padding: 0.15rem 0;
}
.tips-float .tips-list i {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}
#about .tips-float .tips-list.prePage,
#service .tips-float .tips-list.prePage,
#price .tips-float .tips-list.prePage {
  display: none;
}
.tips-float .tips-list .font-plus, .tips-list .font-minus {
  user-select: none;
}
.tips-float .tips-list svg {
  fill: #fff;
}
.tips-float .a2a_default_style a:hover .a2a_svg,
.tips-float .a2a_floating_style a:hover .a2a_svg,
.tips-float .a2a_overlay_style a:hover .a2a_svg svg {
  opacity: 1 !important;
}
.tips-float .a2a_default_style a {
  line-height: 1 !important;
}
.tips-float .a2a_default_style .a2a_svg {
  width: 42px;
  height: 42px;
  background: var(--color-3) !important;
}
.tips-float .a2a_default_style a:hover .a2a_svg {
  background: var(--hover) !important;
}
.tips-float .a2a_menu a {
  color: #000 !important;
}
.tips .a2a_menu a:hover {
  color: #000 !important;
}
@media (max-width: 991.98px) {
  #float-link {
    right: 15px;
  }
  .tips-float .tips-content a, .tips-float .a2a_default_style .a2a_svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575.98px) {
  .tips-float .tips-content a, .tips-float .a2a_default_style .a2a_svg {
    width: 35px;
    height: 35px;
  }
}
/***--- tips end ---***/

/***--- gotop ----***/
#gotop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
  z-index: 999;
}
#gotop span {
  width: 42px;
  height: 42px;
  background-color: var(--color-3);
  border: 2px solid var(--color-3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#gotop span:hover,
#gotop span:focus,
#gotop span:active {
  color: #fff;
  background-color: var(--hover);
  border: 2px solid var(--hover);
}
#gotop span::before {
  content: "\77";
  color: #fff;
  font-size: 1.25rem;
  font-family: "gwicon";
  line-height: 42px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
#gotop span:hover::before {
  color: #fff;
}
#gotop span:focus::before {
  color: #fff;
}
#gotop span:active::before {
  -webkit-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 991.98px) {
  #gotop {
    right: 15px;
  }
  #gotop span {
    width: 40px;
    height: 40px;
  }
  #gotop span::before {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  #gotop span {
    width: 35px;
    height: 35px;
  }
  #gotop span::before {
    font-size: 1rem;
  }
}
.btnEntrance {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: btnEntrance;
}
@keyframes btnEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.btnExit {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: btnExit;
}
@keyframes btnExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
/***--- gotop end ----***/

/***--- loader ----***/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-1);
  transition: opacity 0.5s linear;
  opacity: 1;
  z-index: 10000;
}
.loader-inner {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-block;
}
.loader-inner::after, .loader-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  animation: rotationBreak 4s ease-in-out infinite alternate;
  -webkit-animation: rotationBreak 4s ease-in-out infinite alternate;
}
.loader-inner::after {
  border-width: 3px;
  border-color: var(--color-4);
  animation-direction: alternate-reverse;
}

@-webkit-keyframes rotationBreak {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBreak {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/***--- loader end ----***/

/***--- modal ---***/
.modal-backdrop.fade {
  z-index: 1;
}
.modal-content {
  color: #000;
  background-color: #fff;
  border: 0;
}
.modal-backdrop.fade {
  z-index: 1;
}
.modal-header {
  padding: 0.5rem 1rem;
  background-color: var(--color-1);
}
.modal-title {
  color: #fff;
}
.modal-body ul, .modal-body ol {
  padding-left: 1rem;
}
.modal-header .btn-close {
  color: #fff;
  line-height: 1;
  background: transparent;
  opacity: 1;
}
.modal-header btn-close:hover {
  color: #fff;
  background: transparent;
}
.modal-header .btn-close i {
  display: block;
  color: #fff;
  font-size: 1rem !important;
}
.modal-footer  {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border-top: 1px solid rgb(0 0 0 / 20%);
}
.modal-footer .colse-btn {
  background-color: #00bcd4;
}
.modal-footer .submit-btn {
  background-color: #ff9800;
}
.modal-footer .colse-btn:hover, .modal-footer .submit-btn:hover {
  color: #fff;
  background-color: #333;
}
/***--- modal end ---***/

/***--- thankspage ---***/
.thankspage-content {
  border: 1px solid #ccc;
  padding: 50px 28px;
  margin: 80px 0 60px 0;
  color: #028e72;
  font-size: 0.9375rem;
}
/***--- thankspage end ---***/
