@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=Oswald:wght@300..700&display=swap');

:root {
  --color-1: #93272c;
  --color-2: #c0853c;
  --color-3: #1f7a8c;
  --color-4: #43aa8b;
  --color-5: #f2d22b;
  --color-6: #db7c26;
  --color-7: #dfb489;
  --color-8: #353238;
  --level-1: #8dccad;
  --level-2: #f5cc7f;
  --level-3: #94b1e6;
  --level-4: #f6a6b2;
  --level-line: #ccc;
  --hover: #353238;
  --active: #353238;
  --btn: #1f7a8c;
  --btn-hover: #353238;
}

body {
  color: #222;
  font-size: 1rem;
  font-family: "Roboto", "Noto Sans TC", "Microsoft JhengHei UI", "Microsoft JhengHei", "微軟正黑體", "HeiTi TC", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
a {
  text-decoration: none;
  outline: none;
}
a:hover, a:focus {
  color: #000;
  text-decoration: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.625rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1.0625rem;
  }
}
h1 {
  color: var(--color-3);
  font-weight: 500;
  text-transform: uppercase;
}
h2 {
  color: var(--color-3);
  font-weight: 500;
}
h3 {
  color: var(--color-3);
  font-weight: 500;
}
h4 {
  color: var(--color-3);
  font-weight: 500;
}
h5 {
  color: var(--color-3);
  font-weight: 500;
}
h6 {
  color: var(--color-3);
  font-weight: 500;
}
p {
  margin-bottom: 1rem;
}
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: 600;
}
hr {
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
  border: 0;
  border-top: 1px dashed var(--color-4);
  opacity: 1;
}
th {
  font-weight: 400;
}
dt {
  font-weight: 400;
}
ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}
.icon-font {
  font-size: 0;
}
button {
  outline: none;
  box-shadow: 0 0 0 0;
}
button:focus {
  outline: none;
  box-shadow: 0 0 0 0 !important;
}
.btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  width: 120px;
  height: 40px;
  background-color: var(--btn);
  border: 0;
  border-radius: 30px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.btn:hover,.btn:hover:focus {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  width: 120px;
  height: 40px;
  background-color: var(--btn-hover);
}
.tooltip-inner {
  color: #fff;
  font-size: 1rem;
  max-width: 300px;
  line-height: 1.3;
  padding: 5px 10px 5px 10px;
  background-color: #000;
  opacity: 1;
}
.tooltip-arrow {
  --bs-tooltip-bg: #000;
}
::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: #00b4d8;
}
.main ::-webkit-scrollbar-thumb:active {
  background-color: #00b4d8;
}
.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 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 10px;
  z-index: 1030;
}
#page header {
  position: relative;
}
#header-box {
  margin-bottom: 15px;
}
.logo {
  display: inline-flex;
}
.logo h1 {
  display: contents;
  margin: 0;
}
.logo a {
  display: block;
}
.logo img {
  height: 55px;
  margin-right: 15px;
}
.logo li:last-child img {
  margin-right: 0;
}
/***navbar***/
nav .row {
  display: contents;
}
.navbar {
  padding: 0;
  z-index: 2;
}
.navbar .navbar-nav {
  width: 100%;
  background-color: var(--color-1);
  border-radius: 30px;
}
.navbar .nav-item {
  width: 100%;
  border-right: 1px dashed var(--color-2);
}
.navbar .nav-item:last-child {
    border-right: 0;
}
.navbar .nav-link {
  position: relative;
  color: #fff;
  white-space: normal;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 8px 12px 10px 12px !important;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.navbar .nav-item:first-child .nav-link {
  border-radius: 30px 0 0 30px;
}
.navbar .nav-item:last-child .nav-link {
  border-radius: 0 30px 30px 0;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
  background: var(--color-2);
  box-shadow: none;
}
.navbar .nav-link.dropdown-toggle:hover:after,
.navbar .nav-link.dropdown-toggle:focus:after {
  border-color: #fff;
}
.navbar .active .nav-link {
  color: #fff;
  background: var(--color-2);
}
.navbar .active .dropdown-toggle::after {
  border-color: #fff;
}
.navbar.fixed-top {
  background-color: var(--color-8);
}
.navbar.fixed-top .navbar-nav {
  border-radius: 0;
}
.navbar.fixed-top .nav-item:first-child .nav-link {
  border-radius: 0;
}
.navbar.fixed-top .nav-item:last-child .nav-link {
  border-radius: 0;
}
.navbar-toggler-btn {
  display: none;
}
.navbar-toggler {
  color: #000;  
  font-size: 1.25rem;
  padding: 0;
  line-height: 1;
  background-color: transparent;
  border: 0;
}
.navbar-toggler-icon {
  width: auto;
  height: auto;
  background-image: none;
}
.navbar-toggler-icon:before {
  content: "\e109";
  font-family: "gwicon";
  color: #000;
}
.navbar-toggler-icon:before {
  content: "\e109";
  color: #000;
  font-family: "gwicon";
  line-height: 30px;
}
.navbarSide-close-box {
  text-align: right;
  margin: 20px 5px 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-icon:before {
  content: "\e03f";
  color: #fff;
  font-family: "gwicon";
  line-height: 30px;
}
/*dropdown*/
.navbar .dropdown-toggle {
  cursor: default;
}
.navbar .dropdown-toggle:after {
  margin-left: 6px;
  margin-top: -3px;
  vertical-align: 0;
  border: 0;
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  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);
}
.navbar .dropdown-toggle:focus:after, .navbar .dropdown-toggle:hover:after {
  border-color: #000;
}
.navbar .dropdown-menu {
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: 0px solid transparent;
  border-radius: 15px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
@media (min-width: 1199px) {  
  .navbar ul > li:hover > ul {
    display: block !important;
  }
}
.navbar ul > li > a:hover:before,
.navbar ul > li > a:focus:before,
.navbar ul > li > a:active:before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}
.navbar .dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 0.9375rem;
  padding: 5px 10px;
  white-space: normal;
}
/*first*/
.navbar .first-menu:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-8);
  border-left: 8px solid transparent;
}
.navbar ul ul .dropdown-toggle::after {
  border-color: #fff;
  vertical-align: 2px;
  transform: rotate(-45deg);
}
.navbar ul ul:hover .dropdown-toggle::after {
  border-color: #fff;
}
.navbar ul ul.dropdown-menu {
  background: var(--color-8);
}
.navbar ul ul > li > a:before {
  background: none;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.navbar ul ul > li:hover > a.dropdown-item {
  color: #fff;
  background: var(--color-2);
}
.navbar ul ul.dropdown-menu > li > a:focus,
.navbar ul ul.dropdown-menu > li > a:hover {
  color: #fff;
  background: var(--color-2);
}
.navbar ul ul li {
  position: relative;
  border: 0;
}
.navbar ul ul li:last-child {
  border: 0;
}
/*second*/
.navbar ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  display: none;
}
.navbar ul ul ul.dropdown-menu {
  background: var(--color-8);
}
.navbar ul ul ul li {
  position: relative
}
.navbar ul ul ul li:hover ul {
  display: block
}
/***top link***/
.rwd-web {
  display: flex;
  align-items: center;
  justify-content: end;
}
.rwd-mobile {
  display: none;
}
.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 i {
  line-height: 1px;
}
.top-link-box a {
  display: block;
}
.top-link-box .top-link a {
  font-size: 1rem;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--color-3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.top-link-box .lang-link a {
  background: var(--color-3);
}
.top-link-box .top-link a:hover {
  background: var(--hover);
}
.top-link-box .top-link i {
  font-size: 1.25rem;
}
.top-link-box .top-link i.icon:before {
  line-height: 1;
}
.top-link-box .last {
  margin-right: 10px;
}
/***search***/
#search-box {
  width: 180px;
  margin: 0 auto;
}
#rwd-search-box {
  display: none;
}
#search-box .gsc-control {
  width: 100%;
  margin: 0 auto;
}
#search-box .gsc-search-box {
  margin: 0;
}
#search-box .gsc-input-box {
  border: 0;
  background: #fff;
  border: 1px solid var(--color-3);
  border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
}
#search-box .gsc-control-cse {
  padding: 0;
  border: 0;
  border-radius: 30px;
}
#search-box table.gsc-search-box td.gsc-input {
  padding-right: 0;
}
#search-box .gsc-clear-button {
  display: none;
}
#search-box .gsib_a {
  padding: 0;
  background: transparent;
}
#search-box .gsst_b {
  line-height: 1;
}
#search-box .gsst_a .gscb_a {
  color: #dc3545;
}
#search-box input.gsc-input {
  height: 32px !important;
  border: 0;
  border-radius: 0;
  outline-width: 0 !important;
  background: transparent;
  margin-left: 15px !important;
  width: calc(100% - 15px) !important;
  background: transparent !important;
}
#search-box input.gsc-input:focus {
  outline-width: 0 !important; 
}
#search-box .gsc-search-button {
  width: 50px;
  height: 34px;
  margin-left: 0;
  padding: 0px;
}
#search-box .gsc-search-button {
  display: block !important;
  border-color: var(--color-3);
  background-color: var(--color-3);
  border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  -ms-border-radius: 0 30px 30px 0;
  -o-border-radius: 0 30px 30px 0;
}
#search-box .gsc-search-button:hover,
#search-box .gsc-search-button:focus {
  border-color: var(--hover);
  background-color: var(--hover);
}
#search-box .gsc-search-button svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}
#search-box .gsib_a {
  height: 32px;
}
#search-box .gsib_b {
  box-sizing: content-box;
  height: 30px;
  width: 35px;
  padding: 0;
}
/***--- header end ---***/

/***--- banner ----***/
#home-bn .owl-carousel .owl-item img {
  transform-style: initial;
  height: calc(100vh - 0px);
  object-fit: cover;
}
.home-go-box {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 80px;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
  animation-name: drift;
  -webkit-animation-name: drift;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  visibility: visible !important;
}
.home-go-box a {
  color: #fff;
  font-size: 1.5rem;
  padding: 15px 0;
  border: 2px solid #fff;
  border-radius: 30px;
}
.home-go-box a:hover {
  color: #000;
  background: #fff;
}
.home-go-box a i {
  vertical-align: -5px;
}
@keyframes drift {
	0% {
		transform: translateY(0%);	
	}
	50% {
		transform: translateY(50%);
}	
	100% {
		transform: translateY(0%);
	}			
}
@-webkit-keyframes drift {
	0% {
		-webkit-transform: translateY(0%);	
	}
	50% {
		-webkit-transform: translateY(50%);	
	}	
	100% {
		-webkit-transform: translateY(0%);
	}			
}
#home-content-start {
  padding-top: 0;
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) { 
  #home-content-start {
    padding-top: 58px;
  }
}
/***--- banner end ----***/

/***--- home ----***/
#home #content {
  position: relative;
  padding: 0;
}
.bigtitle {
  text-align: center;
}
.bigtitle .icon img {
  width: 80px;
  margin-bottom: 5px;
}
.bigtitle h2 {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
  z-index: 0;
  position: relative;
}
.bigtitle-s {
  text-align: center;
}
.bigtitle-s .icon img {
  width: 50px;
  margin-right: 5px;
  vertical-align: -11px;
}
.bigtitle-s h2 {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
  z-index: 0;
  position: relative;
}
.bigtitle-s h2:before {
  content: "";
  display: inline-block;
  vertical-align: 8px;
  width: 30px;
  height: 7px;
  margin-right: 10px;
  background-color: var(--color-4);
  border-radius: 30px;
}
.bigtitle-s h2:after {
  content: "";
  display: inline-block;
  vertical-align: 8px;
  width: 30px;
  height: 7px;
  margin-left: 10px;
  background-color: var(--color-4);
  border-radius: 30px;
}
.bigtitleSort {
  text-align: center;
  margin: 1.25rem 0;
}
.bigtitleSort span {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--color-4);
}
.bigtitleSort span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 15px;
  bottom: 0;
  right: 3px;
  margin-bottom: -10px;
  margin-right: 5px;
  background: #43aa8b;
  clip-path: polygon(38% 0, 0% 100%, 100% 0);
}
.bigtitleSort-l {
  margin: 1.25rem 0 0.5rem 0;
}
.bigtitleSort-l span {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--color-4);
}
.bigtitleSort-l span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 15px;
  bottom: 0;
  right: 3px;
  margin-bottom: -10px;
  margin-right: 5px;
  background: #43aa8b;
  clip-path: polygon(38% 0, 0% 100%, 100% 0);
}
/* link */
#home-link-box {
  position: relative;
  padding: 70px 0 70px 0;
  z-index: 1;
}
#home-link .list-box {
  margin-bottom: 35px;
}
#home-link .list-box .content {
  width: 190px;
  height: 190px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20%;
  background: linear-gradient(145deg, #e3e3e3, #ffffff);
  box-shadow: 20px 20px 30px #e3e3e3, -20px -20px 50px #f5f5f5;
}
#home-link .list-box a:hover .content {
  background: linear-gradient(145deg, #d5d5d5, #e6e6e6);
  box-shadow: none;
}
#home-link .list-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #4c8db0;
  border-radius: 10px;
}
#home-link .list-box a:hover .icon {
  border-radius: 100px;
  transition: 1s all;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  -o-transition: 1s all;
  -ms-transition: 1s all;
}
#home-link .list-box .icon img {
  width: 60px;
}
#home-link .content .title {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#home-link .content .title h3 {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/*news*/
#home-news-box {
  padding: 0 0 60px 0;
  margin-top: 100px;
  background: #f5f0e7;
}
#home-news-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  border-style: solid;
  border-width: 0 50vw 100px 50vw;
  border-color: transparent transparent #f5f0e7 transparent;
  overflow: hidden;
  margin-top: -100px;
}
#home-news-box .bigtitle {
  position: relative;
  margin-top: -30px;
}
#home-news .list-box {
  margin: 15px 0;
}
#home-news .content {
  display: flex;
  position: relative;
}
#home-news .sort {
  margin-bottom: 3px;
}
#home-news .sort a {
  color: var(--color-3);
}
#home-news .sort i {
  line-height: 1;
  vertical-align: -2px;
  margin-right: 3px;
}
#home-news .date {
  position: relative;
  color: var(--color-3);
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  padding: 0 5px;
  margin: 0 10px 0 0;
  border: 2px solid var(--color-3);
  border-radius: 100%;
  float: left;
  z-index: 1;
  transition: all 0.3s ease-out;
}
#home-news .content:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 75px;
  height: 75px;
  display: block;
  background: #87cdd5;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
}
#home-news .date .day {
  position: relative;
  display: block;
  color: #000;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 37px;
  border-bottom: 1px solid #000;
  padding: 2px 0 1px 0;
  margin-bottom: 2px;
  transform: translateZ(0);
  z-index: 1;
}
#home-news .date .month {
  position: relative;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transform: translateZ(0);
  z-index: 1;
}
#home-news .article-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home-news .title h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#home-news .title h3 a {
  color: var(--color-2);
}
#home-news .title h3 a:hover {
  color: #000;
}
#home-news .article {
  font-size: 0.875rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
/*poster*/
#home-poster .content-box {
  padding: 25px 25px 0 25px;
}
#home-poster .content-box .image {
  height: 407px;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 992px) {
  #home-poster .content-box .image {
    height: 319px;
  }
}
@media (max-width: 640px) {
  #home-poster .content-box .image {
    height: 480px;
  }
}
#home-poster .content-box .image img {
  position: relative;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#home-poster .content-box .image:hover img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
  opacity: 0.8;
}
/*activity*/
#home-activity-box {
  padding: 100px 0 50px 0;
  background: url(../assets/images/bg_1.jpg) center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
#home-activity-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  border-style: solid;
  border-width: 100px 50vw 0 50vw;
  border-color: #f5f0e7 transparent transparent transparent;
  overflow: hidden;
  margin-top: -100px;
}
#home-activity .bigtitle-s {
  margin-top: 50px;
  margin-bottom: 25px;
}
#home-activity .bigtitle-s {
  margin-top: 50px;
  margin-bottom: 25px;
}
#home-activity .swiper-box {
  padding: 1rem;
  background: #149dad0f;
  border-radius: 10px;
}
#home-activity .content-box .image {
  height: 178px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 992px) {
  #home-activity .content-box .image {
    height: 100px;
  }
}
@media (max-width: 640px) {
  #home-activity .content-box .image {
    height: 188px;
  }
}
#home-activity .content-box .image img {
  position: relative;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#home-activity .content-box .image:hover img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
}
#home-activity .content-box .title h3 {  
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.5rem 0 0 0;
}
#home-activity .swiper-button-prev, #home-activity .swiper-rtl .swiper-button-next {
  left: 10px;
}
#home-activity .swiper-button-next, #home-activity .swiper-rtl .swiper-button-prev {
  right: 10px;
}
/***--- home end ----***/

/***--- page ----***/
#page .navbar {
  background-color: var(--color-8);
}
#page .navbar .navbar-nav {
  background-color: var(--color-1);
  border-radius: 0;
}
#page .navbar .nav-item:first-child .nav-link {
  border-radius: 0;
}
#page .navbar .nav-item:last-child .nav-link {
  border-radius: 0;
}
#content {
  padding: 25px 0 50px 0;
}
#body-top-box {
  background:url(../assets/images/page_top.jpg) center center / cover;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}
.body-top {
  height: 150px;
}
.top-title h2 {
  color: var(--color-3);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin: 2.5rem 0 0.5rem 0;
}
#page .bigTitle h3 {
  color: #000;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
#page .bigTitle h3 span:before {
  content: url(../assets/images/pagetitle.png);
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -30px;
  z-index: -1;
}
#page .page-title {
  margin-bottom: 2.25rem;
}
#page .page-title h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: -1px;
  position: relative;
}
#page .page-title h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-radius: 30px;
  background-color: var(--color-4);
}
#page .page-title h3:after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background-color: var(--color-5);
  clip-path: polygon(0 0, 35% 0, 100% 100%, 65% 100%);
  margin-left: 5px;
  z-index: -1;
}
#page .page-title h3 i {
  display: inline-block;
  font-style: normal;
  padding: 6px 15px;
  background: var(--color-4);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#page .page-title h3 i:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 38px;
  background-color: var(--color-4);
  clip-path: polygon(0 0, 30% 0, 100% 100%, 0 100%);
  margin-top: -6px;
  margin-left: 3px;
}
@media (max-width: 640px) {
  .page-title {
    padding-bottom: 4px;
  }
  .page-title .title-box {
    order: 2;
  }
  .page-title .tips-box {
    order: 1;
    margin-bottom: 0.5rem;
  }
}
#page .title h3 {
  color: var(--color-3);
  font-size: 1.75rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
#page .list-box {
  position: relative;
  margin-bottom: 1.5rem;
}
/* image-list */
#page #image-list-box {
  margin-top: 1.75rem;
}
#page #image-list-box .title {
  color: var(--color-3);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 30px;
  height: 35px;
  text-align: center;
  margin-bottom: 1.75rem;
  border-radius: 30px;
  background: var(--color-5);
  display: flex;
  align-items: center;
}
#page #image-list-box .title i {
  display: block;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 5px;
  border-radius: 100%;
  background: var(--color-3);
}
#page #image-list-box .image-list .list-box {
  margin: 2px 0;
}
#page #image-list-box .image-list .list-box img {
  width: 100%;
  height: 214px;
  padding: 0;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  #page #image-list-box .image-list .list-box img {
    height: 114px;
  }
}
@media (max-width: 767.98px) {
  #page #image-list-box .image-list .list-box img {
    height: 121px;
  }
}
#page .back-content a {
  color: #fff;
  font-size: 0.8125rem;
  background: var(--color-3);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
#page .back-content a i {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1;
  display: flex;
}
/***main-menu***/
#main-menu {
  margin-bottom: 2rem;
  text-align: center;
}
#main-menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}
#main-menu li {
  width: 11%;
  margin: 0 0.5%;
}
@media (max-width: 1024px) {
  #main-menu li {
    width: 15%;
  }
}
@media (max-width: 992px) {
  #main-menu li {
    width: 17%;
  }
}
@media (max-width: 640px) {
  #main-menu li {
    width: 48%;
    margin: 1.5% 1%;
  }
}
#main-menu li a {
  color: #000;
  font-size: 1rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  line-height: 1.05;
  height: 40px;
  padding: 0 15px;
  background: #f1ece6;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-menu li.active a {
  color: #fff;
  font-weight: 400;
  background: var(--color-2);
}
#main-menu li:hover a {
  color: #fff;
  font-weight: 400;
  background: var(--color-2);
}
/***options-tab***/
.options-tab {
  margin-top: 2rem;
}
#nav-tab {
  border-bottom: 0;
  margin-bottom: 0;
}
#nav-tab .nav-item {
  padding: 0;
  margin-right: 2px;
  background: #f3f3f3;
}
#nav-tab .nav-link {
  color: #000;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border-color: #43aa8b;
  border-bottom-color: #fff;
}
.nav-tabs .nav-link:hover {
  background: #fff;
  border-color: #43aa8b;
  border-bottom-color: #fff;
}
#tabContent {
  padding: 1.5rem;
  border: 1px solid #43aa8b;
}
/***--- page end ----***/

/***--- about ----***/
#about .organize {
  padding-top: 2rem;
  margin: 0 auto;
}
#about .organize ol {
  list-style: none;
  padding-left: 0;
}
#about .organize ol a {
  color: #000;
  border-bottom: 1px dashed transparent;
}
#about .organize ol a:hover {
  border-color: #000;
}
#about .organize .article {
  position: relative;
  line-height: 1.3;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#about .chart h3, #about .chart h4, #about .chart h5, #about .chart h6 {
  margin-bottom: 0;
}
#about .chart, #about .chart ol, #about .chart li, #about .chart li>div {
  position: relative;
}
#about .chart, #about .chart ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about .chart {
  text-align: center;
}
#about .chart ol {
  left: 5%;
  width: 92%;
}
#about .chart ol>li>ol {
  left: 5%;
  width: 92%;
  padding-top: 0;
}
#about .chart ol:before,
#about .chart ol:after,
#about .chart li:before,
#about .chart li:after,
#about .chart>li>div:before,
#about .chart>li>div:after {
  content: '';
  position: absolute;
  background-color: var(--level-line);
}
#about .chart ol>li {
  padding: 1rem 0 0 1rem;
}
#about .chart>li ol>li:not(:last-of-type):before {
  top: 2rem;
  left: 0;
  width: 1rem;
  height: 2px;
}
#about .chart>li ol>li:not(:last-of-type):after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}
#about .chart>li ol>li:last-of-type:before {
  top: 2rem;
  left: 0;
  width: 1rem;
  height: 2px;
}
#about .chart>li ol>li:last-of-type:after {
  top: 0;
  left: 0;
  width: 2px;
  height: 2rem;
}
#about .chart li>div {
  padding: 0.5rem;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
/* Level 1 */
#about .chart>li>div {
  color: #fff;
  font-size: 1.5rem;
  background-color: var(--level-1);
}
#about .chart>li>div+div {
  margin-top: 1rem;
}
#about .chart>li>div+div:after {
  height: calc(100% + 1rem);
  right: -1rem;
  top: -1rem;
  width: 3px;
}
/* Level 2 */
#about .chart>li>ol:before {
  left: inherit;
  right: 0;
}
#about .chart>li>ol:after {
  left: 0;
  width: 100%;
}
#about .chart>li>ol>li>div {
  background-color: var(--level-2);
}
/* Level 3 */
#about .chart>li>ol>li>ol {
  left: 5%;
  width: 92%;
}
#about .chart>li>ol>li>ol>li>div {
  background-color: var(--level-3);
}
/* Level 4 */
#about .chart>li>ol>li>ol>li>ol>li>div {
  background-color: var(--level-4);
}
@media only screen and (min-width: 640px) {
  #about .chart {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  /* Level 1 */
  #about .chart ol {
    left: 0;
    width: 100%;
    padding-top: 1rem;
  }
  #about .chart>li>div {
    display: inline-block;
    float: none;
    margin: 0 1rem 1rem 1rem;
    vertical-align: bottom;
  }
  #about .chart>li>div:only-of-type {
    margin-bottom: 0;
    width: auto;
    padding: 0.5rem 1.5rem;
  }
  #about .chart>li>div:before,
  #about .chart>li>div:after {
    bottom: -1rem !important;
    top: inherit !important;
  }
  #about .chart>li>div:before {
    height: 1rem !important;
    left: 50% !important;
    width: 2px !important;
  }
  #about .chart>li>div:only-of-type:after {
    display: none;
  }
  /* Level 2 */
  #about .chart>li>ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  #about .chart>li>ol:before,
  #about .chart>li>ol>li:before {
    height: 1rem !important;
    left: 50% !important;
    top: 0 !important;
    width: 2px !important;
  }
  #about .chart>li>ol:after {
    display: none;
  }
  #about .chart>li>ol>li {
    flex-grow: 1;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
  }
  #about .chart>li>ol>li:only-of-type {
    padding-top: 0;
  }
  #about .chart>li>ol>li:only-of-type:before,
  #about .chart>li>ol>li:only-of-type:after {
    display: none;
  }
  #about .chart>li>ol>li:first-of-type:not(:only-of-type):after,
  #about .chart>li>ol>li:last-of-type:not(:only-of-type):after {
    top: 0;
    width: 50%;
    height: 2px;
  }
  #about .chart>li>ol>li:first-of-type:not(:only-of-type):after {
    left: 50%;
  }
  #about .chart>li>ol>li:last-of-type:not(:only-of-type):after {
    left: 0;
  }
  #about .chart>li>ol>li+li:not(:last-of-type):after {
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
  }
}
/***--- about end ----***/

/***--- news ----***/
#news .info-content {
  padding: 20px;
  margin-bottom: 2.5rem;
  border-radius: 15px;
  background: #f1ece6;
}
#news .foucs-box {
  margin: 0.5rem 0 2rem 0;
}
#news .foucs-box .date-row {
  color: var(--color-2);
  margin-bottom: 0.25rem;
}
#news .foucs-box .date-row i {
  margin-right: 0.25rem;
  vertical-align: -2px;
}
#news .foucs-box h3 {
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#news .foucs-box p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#news .foucs-box .link-btn a {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  width: 100px;
  padding: 5px 0;
  margin-top: 1rem;
  background: var(--color-3);
  border-radius: 3px;
}
#news .foucs-box .link-btn:hover a {
  background: var(--btn-hover);
}
#news .foucs-box .link-btn a i {
  margin-left: 0.25rem;
}
#news .foucs-box .swiper-box img {
  width: 100%;
}
#news .foucs-box .swiper-button-next, #news .foucs-box .swiper-rtl .swiper-button-prev {
  right: 10px;
}
#news .swiper-button-prev, #news .swiper-rtl .swiper-button-next {
  left: 10px;
}
#news .list-box .content {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	background: #000;
	text-align: center;
}
#news .list-box .content .image {
	height: 339px;
  overflow: hidden;
  border: 1px solid #ccc;
}
@media (max-width: 1200px) {
  #news .list-box .content .image {
    height: 320px;
  }
}
@media (max-width: 992px) {
  #news .list-box .content .image {
    height: 306px;
  }
}
@media (max-width: 640px) {
  #news .list-box .content .image {
    height: auto;
  }
}
#news .list-box .content .image img {
	position: relative;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#news .list-box .content:hover .image img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
  opacity: 0.5;
}
#news .list-box .content .article-box {
	position: absolute;
	color: #fff;
	font-size: 1rem;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
  max-height: 150px;
	transition: transform 0.35s;
	-webkit-transition: -webkit-transform 0.35s;
	transform: translate3d(0,100%,0);
	-webkit-transform: translate3d(0,100%,0);
}
#news .list-box .content:hover .article-box {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
@media (max-width: 992px) {
  #news .list-box .content .article-box {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}
#news .list-box .content .article-box h3 {
  color: #fff;
	font-size: 0.9375rem;
  text-align: left;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 36px;
}
#news .list-box .content .article-box .article {
  padding: 38px 1rem 1rem;
  margin-top: -28px;
  background: var(--color-3);
}
#news .date {
  position: relative;
  color: var(--color-3);
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  width: 65px;
  height: 65px;
  padding: 0 5px;
  margin-left: 0.5rem;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100%;
  background: var(--color-2);
  z-index: 1;
}
#news .date .day {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
#news .date .month {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  border-top: 1px solid #fff;
  padding-top: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
}
#news .list-box .content .link-icon {
	position: absolute;
	color: #fff;
  height: 100%;
  width: 100%;
  top: 40%;
  bottom: 60%;
	bottom: 8em;
	text-transform: none;
	opacity: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transition: opacity 0.35s;
	-webkit-transition: opacity 0.35s;
}
#news .list-box .content:hover .link-icon {
	opacity: 1;
}
#news .list-box .content:hover .link-icon i {
  color: #fff;
  font-size: 1.5rem;
}
#news .list-box .link-btn a {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  padding: 5px 0;
  margin-top: 0.5rem;
  background: #00000040;
}
#news .list-box .link-btn:hover a {
  background: #00000020;
}
/* page */
#news-page .date-row {
  color: var(--color-2);
  margin-bottom: 0.25rem;
}
#news-page .date-row i {
  margin-right: 0.25rem;
  vertical-align: -2px;
}
/***--- news end ----***/

/***--- calendar ----***/
#calendar iframe {
  width: 100%;
  min-height: 900px;
}
#calendar table {
  border-radius: 20px;
}
#calendar table table>thead>tr>th {
  padding: 3px 0;
}
#calendar .fc-toolbar-title {
  font-size: 1.75rem;
  margin: 0px;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
}
#calendar table thead a {
  color: #000;
  font-size: 1.125rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
}
#calendar th {
  background: #f5cc7f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-right-color: #fff;
}
#calendar th:last-child {
  border-right-color: #f5cc7f;
}
#calendar td {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
#calendar td table tbody tr:last-child td:first-child .fc-non-business {
  border-bottom-left-radius: 20px;
}
#calendar td table tbody tr:last-child td:last-child .fc-non-business {
  border-bottom-right-radius: 20px;
}

#calendar .fc-theme-standard .fc-scrollgrid {
  border: 1px solid #f5cc7f;
}
#calendar .fc-theme-standard td, .fc-theme-standard th {
  border: 1px solid #f5cc7f;
}
#calendar .fc-daygrid-event {
  padding: 0 10px;
  border-radius: 15px;
}
#calendar .fc-button-primary {
  color: #fff;
  background-color: var(--btn);
  border-color: var(--btn);
}
#calendar .fc-button:hover {
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
}
#calendar .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
#calendar .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
  color: #fff;
  width: 33px;
  height: 33px;
  text-align: center;
  background: #FF5722;
  border-radius: 100%;
}
#calendar .fc-daygrid-day-number {
  color: #000;
}
#calendar .fc-non-business {
  background: #fff9f8;
}
.tooltip-content {
  font-size: 0.875rem;
  text-align: left;
  padding: 0.75rem 0.25rem;
  min-width: 300px;
}
.tooltip-content p {
  margin: 0;
}
.tooltip-content .link-btn {
  margin-top: 0.5rem;
}
.tooltip-content .link-btn a {
  color: #fff;
  background-color: var(--color-1);
  padding: 1px 10px 3px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
/***--- calendar end ----***/

/***--- team-organize ----***/
#organize {
  padding: 2rem 0;
  margin: 0 auto;
}
#organize ol {
  list-style: none;
  padding-left: 0;
}
#organize ol a {
  color: #000;
  font-size: 1.125rem;
  border-bottom: 1px dashed transparent;
}
#organize ol a:hover {
  border-color: #000;
}
#organize .jobTitle {
  color: #000;
  font-size: 0.9375rem;  
}
#organize .article {
  position: relative;
  line-height: 1.3;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#organize .chart h3, #organize .chart h4, #organize .chart h5, #organize .chart h6 {
  margin-bottom: 0;
}
#organize .chart, #organize .chart ol, #organize .chart li, #organize .chart li>div {
  position: relative;
}
#organize .chart, #organize .chart ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
#organize .chart {
  text-align: center;
}
#organize .chart ol {
  left: 5%;
  width: 92%;
}
#organize .chart ol>li>ol {
  left: 5%;
  width: 92%;
  padding-top: 0;
}
#organize .chart ol:before,
#organize .chart ol:after,
#organize .chart li:before,
#organize .chart li:after,
#organize .chart>li>div:before,
#organize .chart>li>div:after {
  content: '';
  position: absolute;
  background-color: var(--level-line);
}
#organize .chart ol>li {
  padding: 1rem 0 0 1rem;
}
#organize .chart>li ol>li:not(:last-of-type):before {
  top: 2rem;
  left: 0;
  width: 1rem;
  height: 2px;
}
#organize .chart>li ol>li:not(:last-of-type):after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}
#organize .chart>li ol>li:last-of-type:before {
  top: 2rem;
  left: 0;
  width: 1rem;
  height: 2px;
}
#organize .chart>li ol>li:last-of-type:after {
  top: 0;
  left: 0;
  width: 2px;
  height: 2rem;
}
#organize .chart li>div {
  line-height: 1.3;
  padding: 0.5rem;
  border-radius: 5px;
}
/* Level 1 */
#organize .chart>li>div {
  background-color: var(--level-1);
}
#organize .chart>li>div+div {
  margin-top: 1rem;
}
#organize .chart>li>div+div:after {
  height: calc(100% + 1rem);
  right: -1rem;
  top: -1rem;
  width: 3px;
}
/* Level 2 */
#organize .chart>li>ol:before {
  left: inherit;
  right: 0;
}
#organize .chart>li>ol:after {
  left: 0;
  width: 100%;
}
#organize .chart>li>ol>li>div>ul {
  list-style: none;
  padding-left: 0;
}
#organize .chart>li>ol>li>.group {
  padding: 0;
}
#organize .chart>li>ol>li>.group>ul>li {
  padding-bottom: 0.5rem;
}
#organize .chart>li>ol>li>.group>ul>li:last-child {
  padding-bottom: 0;
}
#organize .chart>li>ol>li>div>ul>li>div {
  background-color: var(--level-2);
}
/* Level 3 */
#organize .chart>li>ol>li>ol>li>div {
  background-color: var(--level-3);
}
@media only screen and (min-width: 640px) {
  #organize .chart {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  #organize .chart ol>li {
    padding: 0;
  }
  /* Level 1 */
  #organize .chart>li>div {
    display: inline-block;
    float: none;
    margin: 0 1rem 1rem 1rem;
    vertical-align: bottom;
  }
  #organize .chart>li>div:only-of-type {
    width: 30%;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
  }
  #organize .chart>li>div:before,
  #organize .chart>li>div:after {
    bottom: -1.5rem !important;
    top: inherit !important;
  }
  #organize .chart>li>div:only-of-type:after {
    display: none;
  }
  /* Level 2 */
  #organize .chart>li>ol {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    left: 0;
    padding-top: 2rem;
  }
  #organize .chart>li>ol>li:only-of-type {
    padding-top: 0;
  }
  #organize .chart>li>ol>li:only-of-type:before,
  #organize .chart>li>ol>li:only-of-type:after {
    display: none;
  }
  #organize .chart>li>ol>li>.group {
    width: 30%;
    margin: 0 auto;
  }
  #organize .chart>li>ol>li>.group>ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 0.5rem;
  }
  #organize .chart>li>ol>li>.group>ul>li:before {
    width: 2px;
    height: 2rem;
    left: 50%;
    top: -2rem;
  }
  #organize .chart>li>ol>li>.group>ul>li:first-of-type:not(:only-of-type):after {
    left: 50%;
  }
  #organize .chart>li>ol>li>.group>ul>li:last-of-type:not(:only-of-type):after {
    left: -5%;
  }
  #organize .chart>li>ol>li>.group>ul>li>div:before {
    content: '';
    position: absolute;
    background-color: var(--level-line);
    width: 2px;
    height: 1.5rem;
    left: 50%;
    bottom: -1.5rem;
  }
  #organize .chart>li>ol>li>.group>ul>li:first-of-type>div:after {
    left: 50%;
  }
  #organize .chart>li>ol>li>.group>ul>li:last-of-type>div:after {
    left: -5%;
  }
  /* Level 3 */
  #organize .chart>li>ol>li>ol {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    left: 0;
    padding-top: 1.5rem;
  }
  #organize .chart>li>ol>li>ol:before,
  #organize .chart>li>ol>li>ol>li:before {
    width: 2px !important;
    height: 1.5rem !important;
    left: 50% !important;
    top: -0.5rem !important;
  }
  #organize .chart>li>ol>li>ol:after {
    display: none;
  }
  #organize .chart>li>ol>li>ol>li {
    flex-grow: 1;
    padding: 1rem 0.25rem 0;
  }
  #organize .chart>li>ol>li>ol>li:only-of-type {
    padding-top: 0;
  }
  #organize .chart>li>ol>li>ol>li:only-of-type:before,
  #organize .chart>li>ol>li>ol>li:only-of-type:after {
    display: none;
  }
  #organize .chart>li>ol>li>ol>li:first-of-type:not(:only-of-type):after,
  #organize .chart>li>ol>li>ol>li:last-of-type:not(:only-of-type):after {
    width: 50%;
    height: 2px;
    top: -0.5rem;
  }
  #organize .chart>li>ol>li>ol>li:first-of-type:not(:only-of-type):after {
    left: 50%;
  }
  #organize .chart>li>ol>li>ol>li:last-of-type:not(:only-of-type):after {
    left: 0;
  }
  #organize .chart>li>ol>li>ol>li+li:not(:last-of-type):after {
    width: 100%;
    height: 2px;
    left: 0;
    top: -0.5rem;
  }
}
/***--- team-organize end ----***/

/***--- team ----***/
#team .content {
  color: #000;
  padding: 1.5rem;
  background: #f7f4f0;
  border-radius: 10px;
}
#team .content a {
  color: #000;
  border-bottom: 1px dotted transparent;
}
#team .content a:hover {
  color: #000;
  border-bottom-color: #000;
}
#team .content .image {
  text-align: center;
}
#team .content .image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 100%;
  transition: All 0.3s ease-in-out;
}
#team .content .image:hover img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
}
#team .article-box .name h3 {
  color: var(--color-3);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 5px 0 0;
  float: left;
}
#team .article-box .name h3 a {
  color: var(--color-3);
}
#team .article-box .jobTitle {
  color: var(--color-3);
  font-size: 1rem;
  margin-top: 3px;
}
#team .article-box .article {
  margin-top: 0.75rem;
}
#team .article-box .article h6 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
#team .article-box .article p {
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
#team .article-box .article i {  
  color: var(--color-6);
  vertical-align: -2px;
  margin-right: 5px;
}
/* page */
#team-page .image img {
  width: 100%;
}
#team-page .info-box .jobTitle {
  color: var(--color-1);
  font-size: 1.125rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
#team-page .info-box .name h3 {
  text-align: center;
  color: var(--color-3);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
#team-page .article-box i {  
  color: var(--color-6);
  vertical-align: -2px;
  margin-right: 5px;
}
/***--- team end ----***/

/***--- location ----***/
#location .map iframe {
  width: 100% !important;
}
/***--- location end ----***/

/***--- project ----***/
#project .foucs-box {
  margin: 0.5rem 0 2rem 0;
}
#project .foucs-box .image {
  height: auto;
}
#project .foucs-box .image img {
  width: 100%;
}
#project .foucs-box .date-row {
  color: var(--color-2);
  margin-bottom: 0.25rem;
}
#project .foucs-box .date-row i {
  margin-right: 0.25rem;
  vertical-align: -2px;
}
#project .foucs-box h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#project .foucs-box p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#project .foucs-box .link-btn a {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  width: 100px;
  padding: 5px 0;
  margin-top: 1rem;
  background: var(--color-3);
  border-radius: 3px;
}
#project .foucs-box .link-btn:hover a {
  background: var(--btn-hover);
}
#project .foucs-box .link-btn a i {
  margin-left: 0.25rem;
}
#project .list-box .image {
  height: 234px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1024px) and (min-width: 1024px) {
  #project .list-box .image {
    height: 309px;
  }
} 
@media (max-width: 991.98px) {
  #project .list-box .image {
    height: 122px;
  }
}  
@media (max-width: 767.98px) {
  #project .list-box .image {
    height: 219px;
  }
}
#project .list-box .image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#project .list-box:hover .image img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
}
#project .list-box .date {
  position: relative;
  color: #fff;
  font-weight: 300;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  padding: 0 5px;
  margin: -15px auto 10px auto;
  width: 100px;
  border-radius: 30px;
  background-color: var(--color-4);
  z-index: 1;
}
#project .list-box .title h3 {
  font-size: 1.125rem;
  color: var(--color-3);
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
}
#project .list-box:hover .title h3 {
  color: #000;
}
/* page */
#project-page .theme-box {
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px dashed var(--color-4);
}
#project-page .image img {
  border: 2px solid var(--color-3);
  border-radius: 10px;
  box-shadow: 10px 10px 0px var(--color-3);
}
#project-page .image:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  margin-left: -8px;
  margin-top: -8px;
  background: var(--color-3);
  border-radius: 10px;
  z-index: -1;
}
#project-page .title h3 {
  margin-bottom: 0;
}
/***--- project end ----***/

/***--- resource ----***/
#resource .info-content {
  padding: 20px;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  background: #f1ece6;
}
#resource #main-menu li {
  width: auto;
}
#resource .list-box .content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#resource .list-box .article-box {
  position: absolute;
  color: #fff;
  text-align: center;
  padding: 0 1.5rem;
  z-index: 1;
  opacity: 0;
}
#resource .list-box:hover .article-box {
  opacity: 1;
}
#resource .list-box .icon-box {
  font-size: 2rem;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin: 1rem auto 0;
}
#resource .list-box .title {
  margin-top: 1rem;
}
#resource .list-box .image {
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}
#resource .list-box .image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#resource .list-box:hover .image img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
  opacity: 0.4;
}
#resource .list-box .title h3 {
  font-size: 1.125rem;
  color: var(--color-3);
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
}
#resource .list-box:hover .title h3 {
  color: #000;
}
#resource-page .theme-box {
  padding-bottom: 2rem;
  margin-bottom: 1.625rem;
  border-bottom: 1px dashed var(--color-4);
}
#resource-page .image img {
  border: 2px solid var(--color-3);
  border-radius: 10px;
  box-shadow: 10px 10px 0px var(--color-3);
}
#resource-page .image:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  margin-left: -8px;
  margin-top: -8px;
  background: var(--color-3);
  border-radius: 10px;
  z-index: -1;
}
/***--- resource end ----***/

/***--- faq ----***/
.editor .accordion {
  margin-bottom: 1rem;
}
.accordion-item {
  border-color: #ddd;
}
.accordion-header h1, .accordion-header h2, .accordion-header h3, .accordion-header h4, .accordion-header h5, .accordion-header h6 {
  margin: 0 !important;
}
.accordion-body {
  padding: 1.25rem 1rem;
}
.accordion-button {
  padding: 0.8rem 0.75rem 0.8rem 2.75rem;
}
.accordion-button::after {
  width: 22px;
  height: 22px;
  left: 0;
  margin-left: 15px;
  background-size: 22px;
  background-image: url(../assets/images/faq_1.svg);
  position: absolute;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../assets/images/faq_2.svg);
}
.accordion-button:not(.collapsed) {
  color: #fff;
  font-weight: 500;
  background-color: var(--color-4);
}
/***--- faq end ----***/

/***--- activity ----***/
#activity .foucs-box {
  margin: 0.5rem 0 2rem 0;
}
#activity .foucs-box .image {
  height: auto;
}
#activity .foucs-box .image img {
  width: 100%;
}
#activity .foucs-box .date-row {
  color: var(--color-2);
  margin-bottom: 0.25rem;
}
#activity .foucs-box .date-row i {
  margin-right: 0.25rem;
  vertical-align: -2px;
}
#activity .foucs-box h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#activity .foucs-box p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#activity .foucs-box .link-btn a {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  width: 100px;
  padding: 5px 0;
  margin-top: 1rem;
  background: var(--color-3);
  border-radius: 3px;
}
#activity .foucs-box .link-btn:hover a {
  background: var(--btn-hover);
}
#activity .foucs-box .link-btn a i {
  margin-left: 0.25rem;
}
#activity .list-box .image {
  height: 234px;
  overflow: hidden;
  border-radius: 10px;
}
#activity .list-box .image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#activity .list-box:hover .image img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
}
#activity .list-box .date {
  position: relative;
  color: #fff;
  font-weight: 300;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  padding: 0 5px;
  margin: -15px auto 10px auto;
  width: 100px;
  border-radius: 30px;
  background-color: var(--color-4);
  z-index: 1;
}
#activity .list-box .title h3 {
  color: var(--color-3);
  font-size: 1.125rem;
  text-align: center;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#activity .list-box:hover .title h3 {
  color: #000;
}
/***--- activity end ----***/

/***--- student ----***/
#student .info-content {
  padding: 20px;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  background: #f1ece6;
}
#student .list-box .image {
  height: 234px;
  overflow: hidden;
  border-radius: 10px;
}
#student .list-box .image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: All 0.3s ease-in-out;
}
#student .list-box:hover .image img {
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -o-transform:scale(1.1);
  -ms-transform:scale(1.1);
}
#student .list-box .date {
  position: relative;
  color: #fff;
  font-weight: 300;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-align: center;
  padding: 0 5px;
  margin: -15px auto 10px auto;
  width: 100px;
  border-radius: 30px;
  background-color: var(--color-4);
  z-index: 1;
}
#student .list-box .title h3 {
  color: var(--color-3);
  font-size: 1.125rem;
  text-align: center;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#student .list-box:hover .title h3 {
  color: #000;
}
/***--- student end ----***/

/***--- sitemap ----***/
#sitemap .title h3 {
  font-size: 1.75rem;
  text-align: center;
}
#sitemap .editor {
  margin-bottom: 0.6rem;
}
#sitemap .list-box {
  padding: 15px;
  background: #f3f3f3;
  border: 15px solid #fff;
  border-radius: 30px;
  margin: 0;
}
#sitemap .list-box ul {
  list-style-type: none;
  padding-left: 0;
}
#sitemap .article-box h4 {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  padding: 6px;
  margin: 0;
  background: var(--color-4);
  border-radius: 5px;
}
#sitemap .article-box h4 a {
  color: #fff;
  border-bottom: 1px dashed transparent;
}
#sitemap .article-box h4 a:hover {
  border-color: #fff;
}
#sitemap .article-box ul {
  margin: 12px 10px 0 10px;
}
#sitemap .article-box ul ul {
  padding-left: 1rem;
  margin: 5px 0 0 0;
}
#sitemap .article-box li {
  margin-bottom: 5px;
}
#sitemap .article-box li:last-child {
  margin-bottom: 0;
}
#sitemap .article-box li a {
  color: #222;
  border-bottom: 1px dashed transparent;
}
#sitemap .article-box li a:hover {
  color: var(--color-6);
  border-color: var(--color-6);
}
/***--- sitemap end ----***/

/***--- subscribe ----***/
#subscribe {
  padding-top: 25px;
  padding-bottom: 25px;
}
/***--- subscribe end ----***/

/***--- sidemenu ---***/
.sidemenu {
  padding-right: 20px;
}
.submenu-title {
  text-align: center;
}
.sidemenu #accordion {
  width: 100%;
  margin: 0px auto 0px;
  list-style: none;
  padding: 20px 0 35px 0;
  z-index:1;
  position: relative;
}
.sidemenu #accordion:before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: -10px;
  right: -15px;
  transform: rotate(5deg);
  border: 1px solid var(--color-7);
  z-index: 1;
}
.sidemenu #accordion:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--color-1);
  clip-path: polygon(100% 0, 100% 85%, 30% 100%, 3% 95%, 0 5%);
}
.sidemenu #accordion .link {
  position: relative;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 400;
  text-align: left;
  padding: 10px 20px 10px 30px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.sidemenu #accordion .link:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  left: 15px;
  z-index: 1;
}
.sidemenu #accordion .link:hover {
  color: var(--color-7);
}
.sidemenu #accordion .link:hover:before {
  background: #edcda5;
}
.sidemenu #accordion .active .link {
  color: #edcda5;
}
.sidemenu #accordion .active .link:before {
  background: #edcda5;
}
.sidemenu #accordion .active>.submenu {
  display: block;
}
.sidemenu #accordion .active i {
  color: #edcda5;
}
.sidemenu #accordion li i {
  position: absolute;
  right: 12px;
  line-height: 1;
  margin-top: -5px;
}
.sidemenu #accordion li i.arrow:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  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);
  -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);
}
.sidemenu #accordion li.open .link {
  color: #edcda5 !important;
}
.sidemenu #accordion li.open i {
  color: #edcda5;
}
/*** Submenu ***/
.submenu {
  display: block;
  display: none;
  font-size: 1rem;
  line-height: 22px;
  padding: 0;
}
.submenu li {
  list-style-type: none;
}
.submenu a {
  display: block;
  text-decoration: none;
  color: #fff !important;
  padding: 5px 20px 5px 30px;
}
.submenu .active a {
  color: #edcda5 !important;
  font-weight: 400;
}
.submenu a:hover {
  color: #edcda5 !important;
}
@media (max-width: 1200px) {
  .sidemenu {
    display: none;
  }
}
/***--- sidemenu end ---***/

/***--- form ----***/
#form-content {
  padding: 1.5rem;
  border-radius: 30px;
  border: 2px solid #43aa8b;
}
#form-content .list-box {
  margin-bottom: 1.5rem;
}
label {
  position: relative;
  color: #009688;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.remark-icon {
  color: #F44336;
  font-size: 1.375rem;
  line-height: 0;
  vertical-align: -4px;
  margin-left: 3px;
  clear: both;
}
.error {
  display: block;
  color: #d62828;
  font-size: 0.875rem;
  margin-top: 5px;
  clear: both;
}
input, select, textarea {
  color: #555;
  width: 100%;
  padding: 5px 10px;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  outline-color: #00b4d8;
}
input, select {
  height: 40px;
}
textarea {
  display: block;
  height: 115px;;
}
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;
}
.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 {
  margin-top: 0.25rem;
  text-align: center;
}
.submit-box ul {
  list-style-type: none;
  padding: 0;
}
#submit-btn {
  width: 140px;
  height: 40px;
  margin: 0 auto;
  margin-top: 1rem;
  overflow: hidden;
}
#submit-btn input {
  color: #fff;
  font-size: 1.0625rem;
  width: 140px;
  height: 40px;
  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: 767px) {
  #submit-btn {
      margin-top: 15px !important;
  }
  .submit-box {
      margin-top: 0;
  }
  .submit-box ul {
      display: inherit;
      margin-top: 10px;
  }
  .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;
}
/***--- form end ----***/
#crop-conetnt {
  display: inline-flex;
  list-style-type: none;
  padding: 0;
}
#crop-conetnt li {
  margin-right: 10px;
}
#file-image, #crop-image {
  width: 290px;
  margin: 0 auto;
  text-align: center;
}
#file-image .file-btn {
  margin-bottom: 10px;
}
#file-image .cropBox {
  position: relative;
  width: 290px;
  height: 352px;
  border: 1px solid #aaa;
  background: #fff;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: move;
}
#file-image .cropBox .thumbBox {
  width: 218px;
  height: 280px;
  box-sizing: border-box;
  border: 1px solid #00bcd4;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
  background: none repeat scroll 0% 0% transparent;
}
#file-image .cropBox .spinner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 380px;
  background: rgba(0, 0, 0, 0.7);
}
#file-image .action .zoom-btn {
  color: #fff;
  font-weight: 400;
  width: 35px;
  height: 35px;
  border: 0;
  background: var(--btn);
  border-radius: 5px;
  margin-top: 10px;
}
#file-image .action .zoom-btn:hover {
  background: var(--btn-hover);
}
#crop-image .action {
  position: relative;
  display: inline-table;
  width: 100%;
  margin-bottom: 10px;
}
#crop-image .action .crop-btn {
  color: #fff;
  font-weight: 400;
  width: 90px;
  height: 40px;
  border: 0;
  background: #ff5722;
  border-radius: 5px;
}
#crop-image .action .crop-btn:hover {
  background: #e5420f;
}
#crop-image .cropped {
  position: relative;
  width: 290px;
  height: 352px;
  border: 1px solid #aaa;
  background: #fff;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 767px) {  
  #crop-conetnt {
    display: inherit;
  }
  #crop-image {
    margin-top: 15px;
  }
}
/***--- 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;
}
/***--- radio & checkbox end ----***/

/***--- main table ---***/
table-responsive {
  overflow-y: hidden;
  margin-bottom: 18px;
}
table-responsive .table-box table {
  margin-bottom: 0 !important;
}
tbody, td, tfoot, th, thead, tr {
  border-width: inherit;
}
.table-box table {
  width: 100%;
  max-width: 100% !important;
  border-color: #149dad4d;
  line-height: 1.3;
}
.table-box table h1,
.table-box table h2,
.table-box table h3,
.table-box table h4,
.table-box table h5,
.table-box table h6 {
  margin: 0 !important;
  padding-top: 0 !important;
}
.table-box table p {
  margin: 0;
}
.table-box table img {
  padding: 0;
}
.table-box table thead {
  background-color: var(--color-4);
}
.table-box 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;
}
.table-box table thead th:first-child {
  border-left: 1px solid  var(--color-4);
}
.table-box table thead th:last-child {
  border-right-color: var(--color-4);
}
.table-box table thead .date {
  width: 100px !important;
}
.table-box table thead .author {
  width: 100px !important;
}
.table-box table tbody .date {
  text-align: center;
}
.table-box table thead th h1,
.table-box table thead th h2,
.table-box table thead th h3,
.table-box table thead th h4,
.table-box table thead th h5,
.table-box table thead th h6 {
  color: #000;
}
.table-box table thead th.date {
  width: 80px !important;
}
.table-box table thead th.img {
  width: 100px !important;
}
.table-box table thead th.link {
  width: 70px !important;
}
.table-box table thead td {
  font-weight: 500;
  text-align: center;
  padding: 6px 10px;
  line-height: 20px;
  width: auto !important;
}
.table-box table tbody th {
  color: #000;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  text-align: center;
  padding: 5px 10px;
  background: #e5f7fb;
}
.table-box table tbody tr {
  background: #ffffff;
  border-color: #149dad4d;
}
.table-box table tbody tr:nth-child(even) {
  background: #149dad1a;
}
.editor table tbody tr:nth-child(even) {
  background: none;
}
#uncolor tr:nth-child(even) {
  background: #ffffff;
}
.table-box table tbody td {
  padding: 8px 10px;
  width: auto !important;
}
.table-box table tbody td.date {
  text-align: center;
  white-space: nowrap;
}
.table-box table tbody td.link {
  text-align: center;
}
.table-box table tbody .link-icon {
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: var(--color-2);
}
.table-box table tbody .link-icon:hover {
  background: var(--hover);
}
.table-box table tbody .link-icon a {
  color: #000;
}
.table-box 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;
}
.table-box table .link-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}
.table-box table tbody ul,
.table-box table tbody ol {
  padding-left: 22px;
  margin-bottom: 0;
}
.table-box table tbody li {
  padding: 0;
}
@media (max-width: 768px) {
  .table-box table thead th,
  .table-box table tbody th,
  .table-box table tbody tr td {
    padding: 5px 5px;
  }
}
.dataTables_length label, .dataTables_filter label {
  position: relative;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 5px 0;
}
table.dataTable {
  border-collapse: collapse;
}
table.dataTable.no-footer {
  border-bottom: 1px solid #149dad4d;
  border-top: 0;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #149dad4d;
}

/* 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 {
    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;
  }
}
/***--- table end ---***/

/***--- editor ---***/
.editor h3, .editor h4, .editor h5 {
  color: #ab6a1a;
  font-weight: 400;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
.editor h6 {
  color: var(--color-3);
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
.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;
  margin-right: 3px;
}
.editor h5 i, .editor h6 i {
  vertical-align: -2px;
  margin-right: 3px;
}
/* .editor h4 {
  padding-bottom: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.editor h4:before {
  content: "";
  position: absolute;
  display: block;
  margin-top: 32px;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent var(--color-5);
}
.editor h4:after{
  content: "";
  display: grid;
  margin-top: 8px;
  border-bottom: 1px dashed var(--color-4);
} */
.editor p {
  font-size: 1rem;
}
.editor blockquote, .editor li {
  font-size: 1rem;
}
/* font size 1 */
.font-size-1 h1 {
  font-size: calc(2rem + .1vw);
}
.font-size-1 h2 {
  font-size: calc(1.875rem + .1vw);
}
.font-size-1 h3 {
  font-size: calc(1.625rem + .1vw);
}
.font-size-1 h4 {
  font-size: calc(1.5rem + .1vw);
}
.font-size-1 h5 {
  font-size: calc(1.25rem + .1vw);
}
.font-size-1 h6 {
  font-size: calc(1.0625rem + .1vw);
}
.font-size-1 .title h3 {
  font-size: calc(1.625rem + .1vw);
}
.font-size-1 blockquote, .font-size-1 li {
  font-size: calc(1rem + .1vw);
}
.font-size-1 p {
  font-size: calc(1rem + .1vw);
}
/* font size 2 */
.font-size-2 h1 {
  font-size: calc(2rem + .2vw);
}
.font-size-2 h2 {
  font-size: calc(1.875rem + .2vw);
}
.font-size-2 h3 {
  font-size: calc(1.625rem + .2vw);
}
.font-size-2 h4 {
  font-size: calc(1.5rem + .2vw);
}
.font-size-2 h5 {
  font-size: calc(1.25rem + .2vw);
}
.font-size-2 h6 {
  font-size: calc(1.0625rem + .2vw);
}
.font-size-2 .title h3 {
  font-size: calc(1.625rem + .2vw);
}
.font-size-2 blockquote, .font-size-2 li {
  font-size: calc(1rem + .2vw);
}
.font-size-2 p {
  font-size: calc(1rem + .2vw);
}
@media (max-width: 992px) {
  .editor h1 {
    font-size: calc(2rem + .2vw);
  }
  .editor h2 {
    font-size: calc(1.875rem + .2vw);
  }
  .editor h3 {
    font-size: calc(1.625rem + .2vw);
  }
  .editor h4 {
    font-size: calc(1.5rem + .2vw);
  }
  .editor h5 {
    font-size: calc(1.25rem + .2vw);
  }
  .editor h6 {
    font-size: calc(1.0625rem + .2vw);
  }
  .editor p {
    font-size: 1rem;
  }
  .editor blockquote, .editor li {
    font-size: 1rem;
  }
  /* font size 1 */
  .font-size-1 h1 {
    font-size: calc(2rem + .2vw + .1vw);
  }
  .font-size-1 h2 {
    font-size: calc(1.875rem + .2vw + .1vw);
  }
  .font-size-1 h3 {
    font-size: calc(1.625rem + .2vw + .1vw);
  }
  .font-size-1 h4 {
    font-size: calc(1.5rem + .2vw + .1vw);
  }
  .font-size-1 h5 {
    font-size: calc(1.25rem + .2vw + .1vw);
  }
  .font-size-1 h6 {
    font-size: calc(1.0625rem + .2vw + .1vw);
  }
  .font-size-1 blockquote, .font-size-1 li {
    font-size: calc(1rem + .2vw + .1vw);
  }
  .font-size-1 p {
    font-size: calc(1rem + .2vw + .1vw);
  }
  /* font size 2 */
  .font-size-2 h1 {
    font-size: calc(2rem + .2vw + .2vw)
  }
  .font-size-2 h2 {
    font-size: calc(1.875rem + .2vw + .2vw)
  }
  .font-size-2 h3 {
    font-size: calc(1.625rem + .2vw + .2vw)
  }
  .font-size-2 h4 {
    font-size: calc(1.5rem + .2vw + .2vw)
  }
  .font-size-2 h5 {
    font-size: calc(1.25rem + .2vw + .2vw)
  }
  .font-size-2 h6 {
    font-size: calc(1.0625rem + .2vw + .2vw)
  }
  .font-size-2 blockquote, .font-size-2 li {
    font-size: calc(1rem + .2vw + .2vw)
  }
  .font-size-2 p {
    font-size: calc(1rem + .2vw + .2vw)
  }
}
.editor a {
  border-bottom: 1px dotted transparent;
}
.editor a:hover, .editor a:focus {
  color: #000;
  border-bottom-color: #000;
}
.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 0 !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;
}
.editor #news .list-box .content {
  margin-bottom: 15px;
}
.editor ul, 
.editor ol {
  margin-bottom: 1rem;
}
.editor ul:last-child, .editor ol:last-child {
  margin-bottom: 0;
}
.editor ul > li,
.editor ol > li {
  padding: 0 0 2px 0;
  margin-bottom: 0;
}
.editor li > ul,
.editor li > ol {
  margin: 2px 0;
}
.editor ul > li:last-child, .editor ol > li:last-child {
  padding: 0 0 0 0;
}
.editor ul > li p,
.editor ol > li p {
  margin: 2px 0 0 0;
}
#main-images img {
  padding: 0;
}
#main-images .list-box a {
  cursor: url(../assets/images/zoom.svg), auto;
}
/***--- editor end ---***/

/***--- footer ---***/
footer {
  position: relative;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 40px 0;
  background: var(--color-8);
}
footer:before {
  content: "";
  background: url(../assets/images/ntnu.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 190px;
  height: 345px;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
  position: absolute;
  opacity: 0.1;
}
footer p {
  margin-bottom: 0;
}
footer a, footer a:focus {
  color: #fff;
}
footer a:hover {
  color: #7ed7e1;
}
footer ul {
  padding-left: 0;
}
footer li {
  list-style-type: none;
  line-height: 1.5;
  margin: 4px 0;
}
footer li ul {
  margin-bottom: 8px;
}
.footer-menu {
  font-size: 0.875rem;
  border-bottom: 1px solid #ffffff35;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.footer-menu h4 {
  font-size: 1.0625rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ffffff85;
}
.footer-menu h4 a {
  color: var(--color-4);
}
.footer-menu ul {
  padding-left: 14px;
}
.footer-menu li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 1px solid #fff;
  position: absolute;
  border-radius: 100%;
  margin-left: -13px;
  margin-top: 6px;
}
.footer-menu li li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid #fff;
  margin-top: 6px;
}
footer .footer-logo {
  text-align: center;
  margin-bottom: 35px;
}
footer .footer-logo img {
  width: 220px;
}
footer .contact i {
  font-size: 1.125rem;
  vertical-align: -4px;
  margin-right: 10px;
}
footer .copyright {
  text-align: center;
}
footer .count {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .count .title {
  color: var(--color-4);
  font-size: 0.875rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-right: 0.25rem;
}
footer .count .article ul>li {
  font-size: 1rem;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  width: 20px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin: 0 2px;
  background: #5a5a5a;
  border-radius: 3px;
  float: left;
}
footer .count .article .image-box {
  display: inline-table;
  text-align: center;  
}
footer .count .article .image-box img {
  margin: 0 2px;
  background: #5a5a5a;
  border-radius: 3px;
}
footer .other {
  text-align: center;
}
footer .other ul {
  display: inline-flex;
}
footer .other li {
  margin: 0 10px;
}
footer .mark-group>ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .mark-group>ul>li {
  margin: 4px;
}
footer .community {
  text-align: center;
  margin: 0;
}
footer .community li {
  display: inline-block;
  margin: 5px;
}
footer .community li a {
  display: block;
  color: var(--color-8);
  font-size: 1.875rem;
  text-align: center;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--color-4);
  border-radius: 5px;;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: All 0.3s ease-in-out;
  -webkit-transition: All 0.3s ease-in-out;
  -moz-transition: All 0.3s ease-in-out;
  -o-transition: All 0.3s ease-in-out;
}
footer .community li a:hover {
  color: var(--color-4);
  background: #fff;
	transform:scale(0.9);
	-webkit-transform:scale(0.9);
	-moz-transform:scale(0.9);
	-o-transform:scale(0.9);
	-ms-transform:scale(0.9);
}
footer .community-2 {
  text-align: center;
  margin: 0;
}
footer .community-2 li {
  display: inline-block;
  margin: 5px;
}
footer .community-2 li a img {
  transition: All 0.3s ease-in-out;
  -webkit-transition: All 0.3s ease-in-out;
  -moz-transition: All 0.3s ease-in-out;
  -o-transition: All 0.3s ease-in-out;
}
footer .community-2 li a:hover img {
	transform:scale(0.9);
	-webkit-transform:scale(0.9);
	-moz-transform:scale(0.9);
	-o-transform:scale(0.9);
	-ms-transform:scale(0.9);
}
footer .mark-box {
  text-align: center;
}
#design {
  color: rgb(255 255 255 / 30%);
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 3px;
  clear: both;
}
#design a,
#design a:active {
  color: rgb(255 255 255 / 30%);
  font-size: 0.8125rem;
  margin-left: 5px;
  border-bottom: 1px dotted transparent;
}
#design a:hover {
  color: #7fd0d6;
  border-bottom-color: #7fd0d6;
}
#design i {
  font-size: 1rem;
  margin-right: 2px;
  vertical-align: -2px;
}
/***--- footer end ---***/

/***--- loader ----***/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 10000;
}
#loader #loader-inner {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -25px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #222222;
  border-left-color: #22222270;
  border-right-color: #22222230;
  border-bottom-color: #22222210;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}
#loader #loader-inner:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #222222;
  border-left-color: #22222270;
  border-right-color: #22222230;
  border-bottom-color: #22222210;
  animation: spin 3s linear infinite;
  -webkit-animation: spin 3s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
/***--- loader end ----***/

/***--- gotop ----***/
#gotop {
  display: none;
  position: fixed;
  font-size: 1rem;
  bottom: 50px;
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  border: 0;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  z-index: 999;
}
#gotop span {
  color: var(--color-1);
  width: 50px;
  height: 50px;
  background-color: var(--color-1);
  border: 2px solid var(--color-1);
  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: "\e1d1";
  color: #fff;
  font-size: 1.25rem;
  font-family: "gwicon";
  line-height: 50px;
}
#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: 992px) {
  #gotop {
    bottom: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  #gotop span {
    width: 40px;
    height: 40px;
  }
  #gotop span::before {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  #gotop {
    width: 35px;
    height: 35px;
  }
  #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 ----***/

/***--- breadcrumb ---***/
.gw-breadcrumb {
  color: #000;
  font-size: 0.9375rem;
  text-align: right;
}
.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 ---***/

/***--- tips ---***/
.tips {
  font-size: 0.8125rem;
  color: #fff;
  display: flex;
  justify-content: end;
  clear: both;
  margin-bottom: -10px;
}
.tips ul {
  list-style-type: none;
  padding-left: 0;
}
.tips ul li {
  float: left;
}
.tips .tips-content {
  margin-left: 3px;
}
.tips .tips-content a {
  color: #fff;
  font-size: 0.8125rem;
  background: var(--color-4);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.tips .tips-content a:link {
  color: #fff;
}
.tips .tips-content a:hover {
  color: #fff;
  background: var(--hover);
}
.font-plus, .font-minus {
  user-select: none;
}
.tips-list {
  margin-right: 5px;
}
.tips-list:last-child {
  margin-right: 0;
}
.tips-list i {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1;
  display: flex;
}
.tips-list svg {
  fill: #fff;
}
.tips .tips-content a.btn-yt {
  color: #fff;
  font-size: 0.8125rem;
  background: #FF0033;
}
.tips .tips-content a.btn-yt i {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
}
.a2a_default_style a:hover .a2a_svg,
.a2a_floating_style a:hover .a2a_svg,
.a2a_overlay_style a:hover .a2a_svg svg {
  opacity: 1 !important;
}
.a2a_default_style a {
  line-height: 1 !important;
  padding: 0px 3px !important;
}
.a2a_default_style .a2a_svg {
  width: 30px;
  height: 30px;
  background: var(--color-3) !important;
}
.a2a_default_style a:hover .a2a_svg {
  background: var(--hover) !important;
}
.a2a_menu a {
  color: #000 !important;
}
.a2a_menu a:hover {
  color: #000 !important;
}
@media (max-width: 767px) {
  .a2a_full {
    width: 93% !important;
    margin: 0 auto !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 375px) {
  .a2a_full {
    width: 91% !important;
  }
}
/***--- tips end ---***/

/***--- modal ---***/
.modal-backdrop.fade {
  z-index: 1;
}
/***--- modal end ---***/

/***--- pagination ---***/
.pagination {
  display: inherit;
  font-size: 0.875rem;
  text-align: center;
  padding-top: 1rem;
  margin: 0;
  clear: both;
}
.pagination strong {
  display: inline-block;
  color: #fff;
  width: 32px;
  line-height: 28px;
  margin: 0 3px;
  background: var(--color-3);
  border: 2px solid var(--color-3);
  font-weight: 400 !important;
  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-3);
  border-radius: 100%;
}
.pagination a:hover {
  color: #fff;
  background: var(--color-3);
  border: 2px solid var(--color-3);
}
.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 ---***/

/***--- thankspage ---***/
.thankspage-content {
  border: 1px solid #ccc;
  padding: 50px 28px;
  margin: 80px 0 60px 0;
  color: #028e72;
  font-size: 0.9375rem;
}
/***--- thankspage end ---***/
