:root {
  --theme-main-color: #ca9b4c;
  --theme-title-color: #A78346;
  --theme-title-secondary: #326A9B;
  --theme-button-bg: #D2A55A;
  --theme-page-background: #F3F3F3;
  --theme-albums-background: #E6D8C3;
  --theme-albums-title-color: #674D4D;
  --theme-footer-bg-color: #C19242;
  --theme-innerPage-menu-color: #C19242;
  --theme-menu-main: #ce9e48;
  --theme-menu-hover: #e4ad53;
  --theme-menu-lv2-hover: #e4ad53;
  --theme-mobileMenuBar-bg: #ffedcd;
  --theme-menu-hover-font: white;
  --theme-menu-secondary-bg:#e4ad53;
  --theme-pdfType-document-bg-color: #f4efe6;
  --theme-deep-blue: #2B66B1;
  --theme-light-blue: #3774c2;
  --theme-deep-blue-title: #064698;
  --theme-deep-blue-menu-hover: #002C68;
  --theme-deep-blue-menu-bg-hover: #DEF2FB;
  --theme-deep-orange: #E5812C;
  --theme-deep-orange-soft: #f0a260;
  --theme-news-bg-blue: #F2F6FB;
}

@media (min-width: 1200px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 85%;
  }
}

@media (max-width: 960px) {
  .container-lg {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .container-xl {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .topLogoContainer {
    max-width: 90% !important;
  }
}

.fade-in {
  animation: fade-in 1.5s forwards;
}

.animation-fadeIn {
  opacity: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes captionSliderFadeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.captionSliderFadeIn {
  animation-name: captionSliderFadeIn;
}

.slick-active .banner-info {
  animation-name: captionSliderFadeIn;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

html {
  font-family: " Segoe UI', Microsoft JhengHei", "PingFang TC", "Microsoft Yahei", Tahoma, Helvetica, Arial, STXihei, sans-serif;
  font-size: 16px;
}
@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
html .h1, html .h2, html .h3, html .h4, html .h5, html .h6, html h1, html h2, html h3, html h4, html h5, html h6 {
  margin-top: 0.5rem;
}
html a {
  color: var(--theme-main-color);
}
html *:hover {
  text-decoration: none;
}
html table {
  max-width: 100%;
}
html table td {
  padding: 5px;
}
html button:focus {
  outline: none;
}
html a-img {
  color: unset;
}
html a-img:hover, html a-img:focus-visible {
  color: unset;
}

.white-popup img {
  max-width: 100%;
  height: auto !important;
}

.page-category-banner {
  position: relative;
  border-bottom: 7px solid #C5A87C;
}
.page-category-banner img {
  width: 100%;
  height: auto;
}
.page-category-banner .section-label {
  position: absolute;
  bottom: 10%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 3px 3px 3px #582a18;
}
@media (min-width: 576px) {
  .page-category-banner .section-label {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .page-category-banner .section-label {
    font-size: 2.8rem;
  }
}
.page-category-banner .section-label div {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#pageContainer {
  min-height: 400px;
}
@media (max-width: 991px) {
  #pageContainer .container {
    max-width: 100%;
    margin: 0;
  }
}
#pageContainer .pageMenuBar {
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 25px 0;
  color: var(--theme-innerPage-menu-color);
}
#pageContainer .pageMenuBar .side_menu_item {
  padding: 10px 15px;
  margin: 0 10px;
}
#pageContainer .pageMenuBar .menu-text {
  font-weight: bold !important;
}
#pageContainer .pageMenuBar .lev2_menu.menuActive {
  border-bottom: var(--theme-innerPage-menu-color) 2px solid;
}
#pageContainer .pageMenuBar .lev2_menu {
  position: relative;
}
#pageContainer .pageMenuBar .lev2_menu a {
  color: var(--theme-innerPage-menu-color);
}
#pageContainer .pageMenuBar .lev2_menu .lev3_menu {
  position: absolute;
  display: none;
  margin-top: 10px;
  left: 0;
}
#pageContainer .pageMenuBar .lev2_menu .lev3_menu a {
  font-size: 0.9rem;
}
#pageContainer .pageMenuBar .lev2_menu:hover {
  transform: scale(1.05);
}
#pageContainer .pageMenuBar .lev2_menu:hover .lev3_menu {
  display: block;
  background: white;
  box-shadow: 3px 3px 3px #dedede;
}
#pageContainer .pageMenuBar .lev2_menu:hover .lev3_menu .side_menu_item {
  padding: 10px;
  min-width: 150px;
  margin: 0;
}
#pageContainer .pageMenuBar .lev2_menu:hover .lev3_menu .side_menu_item:hover {
  background-color: var(--theme-innerPage-menu-color);
}
#pageContainer .pageMenuBar .lev2_menu:hover .lev3_menu .side_menu_item:hover a {
  color: white;
}
#pageContainer .pageMenuBar .menuActive a {
  color: var(--theme-innerPage-menu-color);
}
#pageContainer .pageMenuBar .menuActive a :hover {
  color: white;
}
#pageContainer .pageContentBar {
  padding: 0px 30px 30px 0px;
  background: white;
  min-height: 400px;
  box-shadow: #e6dac4 3px 3px 7px;
  line-height: 165%;
  border-radius: 0 30px;
  margin-bottom: 40px;
}
#pageContainer .pageContentBar .page-title {
  color: var(--theme-title-color);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding: 25px 2rem;
  line-height: 120%;
  border-left: var(--theme-title-color) solid 10px;
}
#pageContainer .pageContentBar .page-content {
  padding-left: 2rem;
}
#pageContainer .pageContentBar .breadcrumbBar {
  font-size: 14px;
  font-family: "Encode Sans Condensed", sans-serif;
  border-bottom: 1px solid #eaecff;
  padding-bottom: 5px;
}

.news-page-container {
  background: #eaf2ff;
}
.news-page-container .news-page-content-container {
  padding: 15px 30px 30px 30px;
  background: white;
  min-height: 700px;
  box-shadow: #a6b9d9 1px 0px 2px;
  line-height: 165%;
}
.news-page-container .breadcrumbBar {
  font-size: 14px;
  font-family: "Encode Sans Condensed", sans-serif;
  border-bottom: 1px solid #eaecff;
  padding-bottom: 5px;
}
.news-page-container .main-news .news-title {
  color: var(--theme-title-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-top: 25px;
  line-height: 120%;
}
.news-page-container .recent-news-container {
  background-color: #fffaf5;
  border-top: var(--theme-title-color) 8px solid;
  margin-top: 10px;
}
.news-page-container .recent-news-container .recent-title {
  color: var(--theme-title-color);
  font-weight: bold;
  margin-bottom: 15px;
}
.news-page-container .recent-news-container .recent-news-item {
  display: block;
  transition: 0.3s;
}
.news-page-container .recent-news-container .recent-news-item:hover {
  transform: scale(1.03);
}
.news-page-container .recent-news-container .recent-news-item-img-box {
  width: 40%;
}
.news-page-container .recent-news-container .recent-news-item-img-box .recent-news-item-img {
  padding-top: 75%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.news-page-container .recent-news-container .recent-news-item-info {
  width: 60%;
  padding: 0 3%;
}
.news-page-container .recent-news-container .recent-news-item-info .recent-news-item-date {
  color: var(--theme-deep-orange);
  font-size: 0.9rem;
}
.news-page-container .recent-news-container .recent-news-item-info .recent-news-item-title {
  color: var(--theme-title-color);
  font-size: 1.1rem;
}

#news-page-index.news-page-background {
  background-color: #eaf2ff;
}
#news-page-index.news-page-background .breadcrumbBar {
  font-size: 14px;
  font-family: "Encode Sans Condensed", sans-serif;
  border-bottom: 1px solid #eaecff;
  padding-bottom: 5px;
}
#news-page-index.news-page-background .news_item {
  background-color: white;
  margin: 20px 0;
  color: var(--theme-deep-blue);
  transition: 0.3s;
}
#news-page-index.news-page-background .news_item a {
  color: #212529;
}
#news-page-index.news-page-background .news_item .news-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#news-page-index.news-page-background .news_item .news-title {
  color: var(--theme-title-color);
  font-size: 1.1rem;
  line-height: unset;
  font-weight: 700;
  padding: 5px;
}
@media (min-width: 768px) {
  #news-page-index.news-page-background .news_item .news-title {
    padding: unset;
    font-size: 1.3rem;
  }
}
#news-page-index.news-page-background .news_item .news-date {
  color: var(--theme-deep-orange);
}
#news-page-index.news-page-background .news_item .news_item_info {
  background-color: white;
}
@media (min-width: 768px) {
  #news-page-index.news-page-background .news_item .news_item_info {
    padding: 20px 40px 20px 20px;
  }
}
#news-page-index.news-page-background .news_item .news_item_info .news-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  #news-page-index.news-page-background .news_item .news_item_info .news-desc {
    margin-top: 10px;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
  }
}
#news-page-index.news-page-background .news_item .news-image {
  padding-top: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: lightslategrey;
  transition: 0.3s;
}
#news-page-index.news-page-background .news_item:hover {
  transform: scale(1.03);
}

#album-page-index.album-page-background {
  background-color: var(--theme-page-background);
}
#album-page-index.album-page-background .breadcrumbBar {
  font-size: 14px;
  font-family: "Encode Sans Condensed", sans-serif;
  border-bottom: 1px solid #eaecff;
  padding-bottom: 5px;
}
#album-page-index.album-page-background .items {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
#album-page-index.album-page-background .items .photoAlbums_item {
  width: 100%;
}
@media (min-width: 576px) {
  #album-page-index.album-page-background .items .photoAlbums_item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  #album-page-index.album-page-background .items .photoAlbums_item {
    width: 25%;
  }
}
#album-page-index.album-page-background .items .photoAlbums_item a {
  display: block;
}
#album-page-index.album-page-background .items .photoAlbums_item a * {
  transition: 0.8s;
}
#album-page-index.album-page-background .items .photoAlbums_item a:hover .photoAlbums_item_info {
  animation-name: albums_info_height_change;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  padding-top: 10% !important;
}
#album-page-index.album-page-background .items .photoAlbums_item a:hover .photoAlbums_item_arrow {
  display: flex;
}
#album-page-index.album-page-background .items .photoAlbums_item .photoAlbums_item_img {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.4s;
}
#album-page-index.album-page-background .items .photoAlbums_item .photoAlbums_item_info {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #674d4dde;
  color: white;
}
#album-page-index.album-page-background .items .photoAlbums_item .photoAlbums_item_info .photoAlbums_item_title {
  font-size: 1.2rem;
}
#album-page-index.album-page-background .items .photoAlbums_item .photoAlbums_item_info .photoAlbums_item_arrow {
  display: none;
  position: absolute;
  bottom: 5%;
  right: 5%;
  font-size: 1.5rem;
  border: #f4f4f4 2px solid;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: white;
  transition-delay: 0.3s;
}

@keyframes albums_info_height_change {
  from {
    height: 50%;
    padding-top: 10%;
  }
  to {
    height: 100%;
    padding-top: 10%;
  }
}
.pageFileContainer {
  margin-bottom: 15px;
}

.pageFileCategories_Title {
  font-size: 1.3rem;
  color: Grey;
  font-style: italic;
}

.pageFileItem {
  background: var(--theme-pdfType-document-bg-color);
  margin-bottom: 0.7rem;
  transition: 0.5s;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 10px;
}
@media (min-width: 576px) {
  .pageFileItem {
    padding: 0 30px;
  }
}
.pageFileItem a {
  color: var(--theme-main-color);
}
.pageFileItem:hover {
  background: #fdeed2;
}
.pageFileItem:hover .pageFileItem_Icon {
  background-color: var(--theme-menu-hover);
}
.pageFileItem:hover .pageFileItem_title {
  color: var(--theme-menu-hover);
}
.pageFileItem .pageFileItem_Icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-main-color);
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.1rem;
  min-width: 35px;
}
.pageFileItem .pageFileItem_title {
  padding: 10px;
}
@media (min-width: 576px) {
  .pageFileItem .pageFileItem_title {
    padding: 15px;
  }
}

/*# sourceMappingURL=main-style.css.map */
