@charset "UTF-8";
/* Start ============ font EN 英文字型 ========================  font EN 英文字型 ============ */
@import url("https://fonts.googleapis.com");
@import url("https://fonts.gstatic.com");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");
/* Start ============ font TW 中文字型 ========================  font TW 中文字型 ============ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/v5-shims.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://unpkg.com/boxicons@latest/css/boxicons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
/* Start ============ preloaderSet 預載 ========================  preloaderSet 預載 ============ */
.preloader_01 .preloaderSet {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(25, 64, 152, 0);
  z-index: 6006;
  text-align: center;
}
.preloader_01 .preloaderSet .preloaderSet_ring {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-animation: ring_animation 2s linear infinite;
          animation: ring_animation 2s linear infinite;
}
.preloader_01 .preloaderSet .preloaderSet_ring:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.preloader_01 .preloaderSet .preloaderSet_percentage, .preloader_01 .preloaderSet .preloaderSet_preloader_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.preloader_01 .preloaderSet .preloaderSet-progress {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  height: 5px;
  width: 0;
  margin-top: 50px;
  background-color: #eee;
  -webkit-transition: width 0.1s ease;
  transition: width 0.1s ease;
}
.preloader_01 .preloaderSet .preloaderSet_percentage {
  color: #eee;
  font-size: 1.8rem;
  font-weight: 200;
  margin-top: -10px;
  background: rgba(25, 64, 152, 0);
  text-align: center;
}
.preloader_01 .preloaderSet .preloaderSet_preloader_text {
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 5px;
  margin-top: 15px;
  margin-left: 10px;
  -webkit-animation: preloader_animation 3s ease-in-out infinite;
          animation: preloader_animation 3s ease-in-out infinite;
}
.preloader_01 .preloaderSet_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  opacity: 1;
  pointer-events: none;
  z-index: 6000;
  pointer-events: all;
  --columns:14;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-template-rows: repeat(10, 1fr);
}
.preloader_01 .preloaderSet_overlay.over {
  background: #002147;
  opacity: 1;
}
.preloader_01 .preloaderSet_overlay div {
  background: #002147;
  height: 100%;
}

body.no-scroll {
  overflow-x: hidden;
}

@-webkit-keyframes ring_animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-box-shadow: 1px 5px 2px #fff;
            box-shadow: 1px 5px 2px #fff;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-box-shadow: 1px 5px 2px #fff;
            box-shadow: 1px 5px 2px #fff;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-box-shadow: 1px 5px 2px #fff;
            box-shadow: 1px 5px 2px #fff;
  }
}

@keyframes ring_animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-box-shadow: 1px 5px 2px #fff;
            box-shadow: 1px 5px 2px #fff;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-box-shadow: 1px 5px 2px #fff;
            box-shadow: 1px 5px 2px #fff;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-box-shadow: 1px 5px 2px #fff;
            box-shadow: 1px 5px 2px #fff;
  }
}
@-webkit-keyframes preloader_animation {
  50% {
    color: #002147;
  }
}
@keyframes preloader_animation {
  50% {
    color: #002147;
  }
}
.preloader_02 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff;
  overflow: hidden;
}
.preloader_02 .loading-main {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: linear-gradient(to right, #002147, #0d2d62);
}
.preloader_02 .loading-main .loader-logo {
  width: 200px;
}
.preloader_02 .loading-main .loader-logo svg {
  width: 100%;
  display: block;
}
.preloader_02 .loading-main .dots {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader_02 .loading-main .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-animation: bounce 1.4s infinite ease-in-out both;
          animation: bounce 1.4s infinite ease-in-out both;
}
.preloader_02 .loading-main .dots span:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.preloader_02 .loading-main .dots span:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}
.preloader_02 .loading-main .dots span:nth-child(3) {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.preloader_02 .loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.preloader_02 .loading-bg.bg1 {
  background: -webkit-gradient(linear, left top, right top, from(#002147), to(#0d2d62));
  background: linear-gradient(to right, #002147, #0d2d62);
  z-index: 4;
}
.preloader_02 .loading-bg.bg2 {
  background: rgba(13, 46, 99, 0.6);
  z-index: 3;
}
.preloader_02 .loading-bg.bg3 {
  background: rgba(13, 46, 99, 0.4);
  z-index: 2;
}

@-webkit-keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.preloader_03 {
  position: fixed;
  inset: 0;
  background-color: #002147;
  z-index: 9999;
  -webkit-mask: radial-gradient(circle 0px at 50% 50%, transparent 0px, black 1px);
  mask: radial-gradient(circle 0px at 50% 50%, transparent 0px, black 1px);
}
.preloader_03 .loader-logo {
  position: absolute;
  width: 200px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.preloader_03 .loader-logo img {
  width: 100%;
  height: auto;
}

.preloader_04 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.preloader_04 .loading-main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
.preloader_04 .loading-main .loader-logo {
  width: 150px;
  opacity: 0.8;
}
.preloader_04 .loading-main .loader-logo img {
  width: 100%;
  height: auto;
}
.preloader_04 .loading-main .dots {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader_04 .loading-main .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-animation: bounce 1.4s infinite ease-in-out both;
          animation: bounce 1.4s infinite ease-in-out both;
}
.preloader_04 .loading-main .dots span:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.preloader_04 .loading-main .dots span:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}
.preloader_04 .loading-main .dots span:nth-child(3) {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.preloader_04 .loading-bg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background: #002147;
  position: relative;
}

@keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.Roboto {
  font-family: "Roboto", sans-serif !important;
}

.Roboto-Condensed {
  font-family: "Roboto Condensed", sans-serif !important;
}

.Oswald {
  font-family: "Oswald", sans-serif !important;
}

.Poppins {
  font-family: "Poppins", sans-serif !important;
}

.Playfair-Display {
  font-family: "Playfair Display", Times, serif !important;
}

.Noto-Sans-TC {
  font-family: "Noto Sans TC", sans-serif !important;
}

.Noto-Serif-TC {
  font-family: "Noto Serif TC", serif !important;
}

/* Start ============ font weightn 字型 粗體 ========================  font weightn 字型 粗體 ============ */
.font-w100 {
  font-weight: 100 !important;
}

.font-w200 {
  font-weight: 200 !important;
}

.font-w300 {
  font-weight: 300 !important;
}

.font-w400 {
  font-weight: 400 !important;
}

.font-w500 {
  font-weight: 500 !important;
}

.font-w600 {
  font-weight: 600 !important;
}

.font-w700 {
  font-weight: 700 !important;
}

.font-w800 {
  font-weight: 800 !important;
}

.font-w900 {
  font-weight: 900 !important;
}

.letter-spacing-0 {
  letter-spacing: 0px !important;
}

body {
  font-family: "Noto Sans TC", "思源黑體", "Roboto", sans-serif !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  body {
    font-size: 0.95rem !important;
    line-height: 1.7;
  }
}
@media (max-width: 575.98px) {
  body {
    font-size: 1rem;
  }
}

p {
  font-weight: 400 !important;
}

.form-control,
.custom-select {
  font-weight: 500 !important;
}

/* Start ============ scrollspy 滾動監控 ========================  scrollspy 滾動監控 ============ */
.dotted-scrollspy {
  background: rgba(0, 0, 0, 0);
  z-index: 1000;
  position: fixed;
  top: 45%;
  right: 30px;
}
@media (max-width: 575.98px) {
  .dotted-scrollspy {
    display: none;
  }
}
.dotted-scrollspy ul {
  list-style: none;
}
.dotted-scrollspy ul li:hover {
  cursor: pointer;
}
.dotted-scrollspy ul li a.nav-link span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c4c4c4;
}
.dotted-scrollspy ul li a.nav-link.active {
  background-color: none !important;
}
.dotted-scrollspy ul li a.nav-link.active span {
  background-color: #666;
}

.nav-pills .nav-link.active {
  background-color: rgba(0, 0, 0, 0) !important;
}

/* Start ============ GoTop 回到最上 ========================  GoTop 回到最上 ============ */
.btn-top {
  position: fixed;
  bottom: -45px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-top.open {
  bottom: 60px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.btn-top .btn-floating {
  position: relative;
  background-color: #ffffff !important;
  border: 1px solid #d2b48c;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.btn-top .btn-floating i {
  position: absolute;
  z-index: 2;
  color: #997933 !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-top .btn-floating::before {
  content: "";
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  display: block;
  background-color: #d2b48c;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-top .btn-floating:hover {
  -webkit-box-shadow: 0px 5px 0.6em rgba(0, 0, 0, 0.4);
          box-shadow: 0px 5px 0.6em rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-top .btn-floating:hover.btn-floating {
  border: none;
}
.btn-top .btn-floating:hover.btn-floating i {
  color: #FFF !important;
  -webkit-animation: backTop_keyframes 0.5s 1.2s infinite ease-out alternate;
          animation: backTop_keyframes 0.5s 1.2s infinite ease-out alternate;
}
.btn-top .btn-floating:hover::before {
  top: -1px;
  left: -1px;
  width: 104%;
  height: 104%;
  border-radius: 50%;
}

@-webkit-keyframes backTop_keyframes {
  0% {
    top: 60%;
  }
  100% {
    top: 40%;
  }
}

@keyframes backTop_keyframes {
  0% {
    top: 60%;
  }
  100% {
    top: 40%;
  }
}
/* Start ============ mask 圖片遮罩 ========================  mask 圖片遮罩 ============ */
.mask.rgba-gradient-1 {
  background: linear-gradient(45deg, rgba(255, 88, 88, 0.7), rgba(238, 66, 146, 0.8));
}

.mask.rgba-gradient-2 {
  background: linear-gradient(98deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.mask.rgba-gradient-3 {
  background: linear-gradient(45deg, rgba(42, 27, 161, 0.7), rgba(255, 48, 48, 0.7));
}

.mask.rgba-gradient-4 {
  background: linear-gradient(98deg, rgba(22, 91, 231, 0.5), rgba(255, 32, 32, 0.5));
}

/* Start ============ iframe ========================  iframe ============ */
.iframe_get_page {
  height: 100%;
  height: 85vh;
}

.fa, .far, .fas {
  font-family: "Font Awesome 5 Free" !important;
}

.aos-show {
  position: relative;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.aos-show.aos-animate {
  opacity: 1;
  clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
}

.aos_show_top,
.aos_show_bottom,
.aos_show_left,
.aos_show_right,
.aos_reveal-left,
.aos_reveal-right {
  position: relative;
  overflow: hidden;
}
.aos_show_top img,
.aos_show_bottom img,
.aos_show_left img,
.aos_show_right img,
.aos_reveal-left img,
.aos_reveal-right img {
  width: 100%;
  height: auto;
  display: block;
}

.aos_show_top {
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: clip-path 1s ease, opacity 1s ease;
  transition: clip-path 1s ease, opacity 1s ease;
}
.aos_show_top.aos-animate {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.aos_show_bottom {
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: clip-path 1s ease, opacity 1s ease;
  transition: clip-path 1s ease, opacity 1s ease;
}
.aos_show_bottom.aos-animate {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.aos_show_left {
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: clip-path 1s ease, opacity 1s ease;
  transition: clip-path 1s ease, opacity 1s ease;
}
.aos_show_left.aos-animate {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.aos_show_right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: clip-path 1s ease, opacity 1s ease;
  transition: clip-path 1s ease, opacity 1s ease;
}
.aos_show_right.aos-animate {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.aos_reveal-left {
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: clip-path 0.6s ease, opacity 0.6s ease;
  transition: clip-path 0.6s ease, opacity 0.6s ease;
}
.aos_reveal-left.aos-animate {
  opacity: 1;
  clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
}

.aos_reveal-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: clip-path 0.6s ease, opacity 0.6s ease;
  transition: clip-path 0.6s ease, opacity 0.6s ease;
}
.aos_reveal-right.aos-animate {
  opacity: 1;
  clip-path: polygon(-10% 0, 100% 0, 100% 100%, 0 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-y: scroll;
  overflow-x: hidden;
}

:root {
  scroll-padding-top: 4rem;
}

::-moz-selection {
  color: #fff;
  background: #997933;
}

::selection {
  color: #fff;
  background: #997933;
}

::-moz-selection {
  color: #fff;
  background: #997933;
}

a:hover {
  cursor: pointer;
  text-decoration: none !important;
}

img.placeholder {
  background-color: #f0f0f0; /* 灰色背景 */
  display: block; /* 使圖片在載入前佔有空間 */
}

img.skeleton {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f0f0f0), color-stop(50%, #e0e0e0), color-stop(75%, #f0f0f0));
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: loading 1.5s infinite;
          animation: loading 1.5s infinite;
  min-height: 200px;
}

@-webkit-keyframes loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
h2 {
  color: #002147;
}

@media (max-width: 768px) {
  .container-all,
  .container-1400 {
    max-width: 85%;
  }
}
@media (min-width: 1400px) {
  .container-all,
  .container-1400 {
    max-width: 1400px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

.scaleSize {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.scaleSize::before {
  display: block;
  content: "";
}
.scaleSize .scaleSize-item,
.scaleSize img,
.scaleSize iframe,
.scaleSize embed,
.scaleSize object,
.scaleSize video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.scaleSize-21by9::before {
  padding-top: 42.857143%;
}

.scaleSize-16by9::before {
  padding-top: 56.25%;
}

.scaleSize-10by6::before {
  padding-top: 60%;
}

.scaleSize-4by3::before {
  padding-top: 75%;
}

.scaleSize-1by1::before {
  padding-top: 100%;
}

.btn-h1 {
  min-height: 32px !important;
}

.btn-h2 {
  min-height: 36px !important;
}

.btn-h3 {
  min-height: 40px !important;
}

.btn-h4 {
  min-height: 44px !important;
}

.btn-h5 {
  min-height: 48px !important;
}

.btn-h6 {
  min-height: 52px !important;
}

.btn-h7 {
  min-height: 56px !important;
}

.btn-h8 {
  min-height: 60px !important;
}

.btn-h9 {
  min-height: 64px !important;
}

.btn-h10 {
  min-height: 68px !important;
}

.btn-w1 {
  min-width: 120px !important;
}

.btn-w2 {
  min-width: 160px !important;
}

.btn-w3 {
  min-width: 200px !important;
}

.btn-w4 {
  min-width: 240px !important;
}

.btn-w5 {
  min-width: 280px !important;
}

.btn-w6 {
  min-width: 320px !important;
}

.btn-w7 {
  min-width: 360px !important;
}

.btn-w8 {
  min-width: 400px !important;
}

.btn-w9 {
  min-width: 440px !important;
}

.btn-w10 {
  min-width: 480px !important;
}

.btn_capsule_a01 {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  min-height: 36px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 10;
  overflow: hidden;
  color: #222;
  border: 1px solid #ccc;
  background-color: #fff;
}
.btn_capsule_a01::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_capsule_a01:hover {
  color: #fff;
  cursor: pointer;
}
.btn_capsule_a01:hover i {
  color: "";
}
.btn_capsule_a01:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_capsule_a02 {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  min-height: 36px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 10;
  overflow: hidden;
  color: #222;
  border: 1px solid #194098;
  background-color: #fff;
}
.btn_capsule_a02::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_capsule_a02:hover {
  color: #fff;
  cursor: pointer;
}
.btn_capsule_a02:hover i {
  color: "";
}
.btn_capsule_a02:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_capsule_a03 {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  min-height: 36px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 10;
  overflow: hidden;
  color: #fff;
  border: 1px solid #194098;
  background-color: #194098;
}
.btn_capsule_a03::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_capsule_a03:hover {
  color: #222;
  cursor: pointer;
}
.btn_capsule_a03:hover i {
  color: "";
}
.btn_capsule_a03:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_capsule_a04 {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  min-height: 36px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 10;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgb(14.1949152542, 36.3389830508, 86.3050847458);
  background-color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
}
.btn_capsule_a04::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_capsule_a04:hover {
  color: #222;
  cursor: pointer;
}
.btn_capsule_a04:hover i {
  color: "";
}
.btn_capsule_a04:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_capsule_a05 {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  min-height: 36px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 10;
  overflow: hidden;
  color: #222;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn_capsule_a05:hover {
  color: #fff;
  background-color: #997933;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_a01 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 10px;
  min-height: 44px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 12px;
  min-width: 140px;
  z-index: 10;
  background: #fff;
  overflow: hidden;
  color: #222;
  line-height: 1.5;
}
.btn_square_a01 i {
  position: absolute;
  left: 15px;
  color: #194098;
  font-size: 1rem;
}
.btn_square_a01::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a01::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a01:hover {
  color: #fff;
  cursor: pointer;
}
.btn_square_a01:hover i {
  color: #fff;
}
.btn_square_a01:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_a02 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 10px;
  min-height: 44px;
  border: 1px solid #194098;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 12px;
  min-width: 140px;
  z-index: 10;
  background: #fff;
  overflow: hidden;
  color: #222;
  line-height: 1.5;
}
.btn_square_a02 i {
  position: absolute;
  left: 15px;
  color: #194098;
  font-size: 1rem;
}
.btn_square_a02::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a02::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a02:hover {
  color: #fff;
  cursor: pointer;
}
.btn_square_a02:hover i {
  color: #fff;
}
.btn_square_a02:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_a03 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 10px;
  min-height: 44px;
  border: 1px solid #194098;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 12px;
  min-width: 140px;
  z-index: 10;
  background: #194098;
  overflow: hidden;
  color: #fff;
  line-height: 1.5;
}
.btn_square_a03 i {
  position: absolute;
  left: 15px;
  color: #fff;
  font-size: 1rem;
}
.btn_square_a03::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a03::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a03:hover {
  color: #222;
  cursor: pointer;
}
.btn_square_a03:hover i {
  color: #194098;
}
.btn_square_a03:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_a04 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 10px;
  min-height: 44px;
  border: 1px solid "";
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 12px;
  min-width: 140px;
  z-index: 10;
  background: rgb(14.1949152542, 36.3389830508, 86.3050847458);
  overflow: hidden;
  color: #fff;
  line-height: 1.5;
}
.btn_square_a04 i {
  position: absolute;
  left: 15px;
  color: #fff;
  font-size: 1rem;
}
.btn_square_a04::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a04::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_a04:hover {
  color: #fff;
  cursor: pointer;
}
.btn_square_a04:hover i {
  color: #fff;
}
.btn_square_a04:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_b01 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  cursor: pointer;
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 15px;
  margin: 3px 3px;
  font-size: 1.1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 38px;
  min-width: 250px;
}
.btn_square_b01 i {
  font-size: 1.2rem;
  color: #194098;
  margin-right: 5px;
  margin-left: 5px;
}
.btn_square_b01::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #194098;
  z-index: -2;
}
.btn_square_b01::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.btn_square_b01:hover {
  color: #fff;
  cursor: pointer;
}
.btn_square_b01:hover i {
  color: #fff;
}
.btn_square_b01:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_l01 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
  color: hsl(221.5748031496, 71.7514124294%, -65.2941176471%);
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.btn_square_l01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(221.5748031496, 71.7514124294%, 134.7058823529%);
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_square_l01 i {
  color: #194098;
  position: absolute;
  left: 20px;
  margin-bottom: -5px;
  font-size: 1.4rem;
}
.btn_square_l01:hover {
  color: #fff;
}
.btn_square_l01:hover i {
  color: #fff;
}
.btn_square_l01:hover::after {
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_l02 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.btn_square_l02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #194098;
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_square_l02 i {
  color: #fff;
  position: absolute;
  left: 20px;
  margin-bottom: -5px;
  font-size: 1.4rem;
}
.btn_square_l02:hover {
  color: #194098;
}
.btn_square_l02:hover i {
  color: rgb(32.2033898305, 82.4406779661, 195.7966101695);
}
.btn_square_l02:hover::after {
  background-color: hsl(221.5748031496, 71.7514124294%, 134.7058823529%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_l03 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.btn_square_l03::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_square_l03 i {
  color: #fff;
  position: absolute;
  left: 20px;
  margin-bottom: -5px;
  font-size: 1.4rem;
}
.btn_square_l03:hover {
  color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
}
.btn_square_l03:hover i {
  color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
}
.btn_square_l03:hover::after {
  background-color: hsl(221.5748031496, 71.7514124294%, 134.7058823529%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_r01 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
  color: hsl(221.5748031496, 71.7514124294%, -65.2941176471%);
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.btn_square_r01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(221.5748031496, 71.7514124294%, 134.7058823529%);
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_square_r01 i {
  color: #194098;
  margin-left: auto;
  margin-bottom: -5px;
  font-size: 1.4rem;
}
.btn_square_r01:hover {
  color: #fff;
}
.btn_square_r01:hover i {
  color: #fff;
}
.btn_square_r01:hover::after {
  background-color: #194098;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_r02 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.btn_square_r02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #194098;
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_square_r02 i {
  color: #fff;
  margin-left: auto;
  margin-bottom: -5px;
  font-size: 1.4rem;
}
.btn_square_r02:hover {
  color: #194098;
}
.btn_square_r02:hover i {
  color: rgb(32.2033898305, 82.4406779661, 195.7966101695);
}
.btn_square_r02:hover::after {
  background-color: hsl(221.5748031496, 71.7514124294%, 134.7058823529%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_square_r03 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.btn_square_r03::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_square_r03 i {
  color: #fff;
  margin-left: auto;
  margin-bottom: -5px;
  font-size: 1.4rem;
}
.btn_square_r03:hover {
  color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
}
.btn_square_r03:hover i {
  color: rgb(14.1949152542, 36.3389830508, 86.3050847458);
}
.btn_square_r03:hover::after {
  background-color: hsl(221.5748031496, 71.7514124294%, 134.7058823529%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_stick_r01 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  cursor: pointer;
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding-left: 14px;
  padding-right: 12px;
  margin-right: 10px;
  margin-bottom: 14px;
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-box-shadow: 1px 2px 2px -1px #c0c0c0;
          box-shadow: 1px 2px 2px -1px #c0c0c0;
  background: -webkit-gradient(linear, left top, right top, from(#e7e6e6), color-stop(70%, #fff), to(#ececec));
  background: linear-gradient(to right, #e7e6e6 0%, #fff 70%, #ececec 100%);
  min-height: 40px;
  min-width: 240px;
  max-width: 600px;
}
.btn_stick_r01 i {
  color: #cfcccc;
  margin-left: auto;
  margin-bottom: -5px;
  font-size: 1.5rem;
  z-index: 2;
}
.btn_stick_r01::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  left: 1px;
  top: calc(50% - 8px);
  background-color: #cfcccc;
  -webkit-transition: all 2s;
  transition: all 2s;
  z-index: 2;
}
.btn_stick_r01::before {
  z-index: -1;
  position: absolute;
  content: "";
  left: 7px;
  width: 70%;
  top: 0;
  -webkit-box-shadow: 0 12px 10px #c0c0c0;
          box-shadow: 0 12px 10px #c0c0c0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 2s;
  transition: all 2s;
}
.btn_stick_r01:hover {
  background: -webkit-gradient(linear, left top, right top, from(#fcecea), color-stop(15%, #fff), to(#f5dbd7));
  background: linear-gradient(to right, #fcecea 0%, #fff 15%, #f5dbd7 100%);
  color: #222;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.btn_stick_r01:hover i {
  color: #194098;
}
.btn_stick_r01:hover::before {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  bottom: 13px;
  z-index: -10;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.card_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card_corner-a01 {
  display: block;
  position: relative;
  max-width: 600px;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: rgb(194.03, 210.2232394366, 228.87);
}
.card_corner-a01 > .card_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a01 > .card_desc {
  font-size: 0.85rem;
  color: #666;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a01 > .card_corner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #002147;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  top: 0;
  right: 0;
  border-radius: 0 4px 0 32px;
}
.card_corner-a01 > .card_corner i {
  font-size: 1.2rem;
  color: white;
}
.card_corner-a01:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #002147;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  top: -16px;
  right: -16px;
}
.card_corner-a01:hover > .card_title,
.card_corner-a01:hover > .card_desc {
  color: #fff;
}
.card_corner-a01:hover:before {
  -webkit-transform: scale(40);
          transform: scale(40);
}

.card_corner-a02 {
  display: block;
  position: relative;
  max-width: 600px;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: rgb(194.03, 210.2232394366, 228.87);
}
.card_corner-a02 > .card_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a02 > .card_desc {
  font-size: 0.85rem;
  color: #666;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a02 > .card_corner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #002147;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  bottom: 0;
  right: 0;
  border-radius: 32px 0 4px 0;
}
.card_corner-a02 > .card_corner i {
  font-size: 1.2rem;
  color: white;
}
.card_corner-a02:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #002147;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  bottom: -16px;
  right: -16px;
}
.card_corner-a02:hover > .card_title,
.card_corner-a02:hover > .card_desc {
  color: #fff;
}
.card_corner-a02:hover:before {
  -webkit-transform: scale(40);
          transform: scale(40);
}

.card_corner-a03 {
  display: block;
  position: relative;
  max-width: 600px;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: rgb(194.03, 210.2232394366, 228.87);
}
.card_corner-a03 > .card_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a03 > .card_desc {
  font-size: 0.85rem;
  color: #666;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a03 > .card_corner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #002147;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  bottom: 0;
  left: 0;
  border-radius: 0 32px 4px 0;
}
.card_corner-a03 > .card_corner i {
  font-size: 1.2rem;
  color: white;
}
.card_corner-a03:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #002147;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  bottom: -16px;
  left: -16px;
}
.card_corner-a03:hover > .card_title,
.card_corner-a03:hover > .card_desc {
  color: #fff;
}
.card_corner-a03:hover:before {
  -webkit-transform: scale(40);
          transform: scale(40);
}

.card_corner-a04 {
  display: block;
  position: relative;
  max-width: 600px;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: rgb(194.03, 210.2232394366, 228.87);
}
.card_corner-a04 > .card_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a04 > .card_desc {
  font-size: 0.85rem;
  color: #666;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.card_corner-a04 > .card_corner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #002147;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  top: 0;
  left: 0;
  border-radius: 4px 0 32px 0;
}
.card_corner-a04 > .card_corner i {
  font-size: 1.2rem;
  color: white;
}
.card_corner-a04:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #002147;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  top: -16px;
  left: -16px;
}
.card_corner-a04:hover > .card_title,
.card_corner-a04:hover > .card_desc {
  color: #fff;
}
.card_corner-a04:hover:before {
  -webkit-transform: scale(40);
          transform: scale(40);
}

.shadow_box {
  width: 150px;
  height: 150px;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  margin-right: 50px;
  margin-bottom: 60px;
}

.shadow_01 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
          box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.shadow_02 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.shadow_03 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.shadow_04 {
  -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.shadow_05 {
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.shadow_06 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.shadow_07 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
          box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.shadow_08 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
          box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.shadow_09 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.shadow_10 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
          box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.shadow_11 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.shadow_12 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.shadow_13 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.shadow_14 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.shadow_15 {
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.shadow_16 {
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

[data-aos=title_bk_in]::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  background: #194098;
  -webkit-animation-play-state: paused;
          animation-play-state: paused; /* 初始設置為暫停 */
  z-index: -1;
}

/* AOS 觸發時啟動背景動畫 */
[data-aos=title_bk_in].aos-animate::after {
  -webkit-animation: title_bk_in 2s ease forwards;
          animation: title_bk_in 2s ease forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running; /* 滾動到時啟動動畫 */
}

/* 初始設置為暫停的文字淡入動畫 */
[data-aos=title_txt_in] {
  -webkit-animation: title_txt_in 2s ease forwards;
          animation: title_txt_in 2s ease forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

/* AOS 觸發時啟動文字淡入動畫 */
[data-aos=title_txt_in].aos-animate {
  -webkit-animation-play-state: running;
          animation-play-state: running; /* 滾動到時啟動動畫 */
}

/* 自定義背景動畫 */
@-webkit-keyframes title_bk_in {
  0% {
    top: 100%;
    left: 0;
    width: 4px;
    height: 0%;
  }
  10% {
    top: 100%;
    left: 0;
    width: 4px;
    height: 100%;
  }
  26% {
    top: 0%;
    left: 0;
    width: 4px;
  }
  40% {
    top: 0%;
    left: 0;
    width: 100%;
  }
  55% {
    top: 0%;
    left: 100%;
    width: 4px;
  }
  65% {
    top: 0%;
    left: 0;
    width: 100%;
  }
  100% {
    top: 0%;
    left: 0;
    width: 4px;
  }
}
@keyframes title_bk_in {
  0% {
    top: 100%;
    left: 0;
    width: 4px;
    height: 0%;
  }
  10% {
    top: 100%;
    left: 0;
    width: 4px;
    height: 100%;
  }
  26% {
    top: 0%;
    left: 0;
    width: 4px;
  }
  40% {
    top: 0%;
    left: 0;
    width: 100%;
  }
  55% {
    top: 0%;
    left: 100%;
    width: 4px;
  }
  65% {
    top: 0%;
    left: 0;
    width: 100%;
  }
  100% {
    top: 0%;
    left: 0;
    width: 4px;
  }
}
/* 自定義文字淡入動畫 */
@-webkit-keyframes title_txt_in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    color: #fff;
  }
  70% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 1;
    color: #111827;
  }
}
@keyframes title_txt_in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    color: #fff;
  }
  70% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 1;
    color: #111827;
  }
}
.section_title,
.section_title_01 {
  position: relative;
  font-size: 2.2rem;
  line-height: 1em;
  font-weight: 700;
  color: #002147;
  padding: 1px 10px 5px 20px;
  margin-bottom: 10px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  overflow: hidden;
}
.section_title::after,
.section_title_01::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #194098;
  z-index: 2;
}

.section_title-w,
.section_title_01-w {
  position: relative;
  font-size: 2.2rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  padding: 1px 10px 5px 20px;
  margin-bottom: 10px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  overflow: hidden;
}
.section_title-w::after,
.section_title_01-w::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #fff;
  z-index: 2;
}

.section_title_icon {
  position: relative;
  text-align: left;
  font-size: 2.2rem;
  line-height: 1em;
  font-weight: 700;
  color: #111827;
  padding-left: 0px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.section_title_icon i {
  color: #194098;
  margin-left: auto;
  margin-bottom: -5px;
  z-index: 2;
  margin-right: 10px;
}

.section_title_icon-w {
  position: relative;
  text-align: left;
  font-size: 2.2rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  padding-left: 0px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.section_title_icon-w i {
  color: #fff;
  margin-left: auto;
  margin-bottom: -5px;
  z-index: 2;
  margin-right: 10px;
}

.article_title,
.article_title_01 {
  font-size: 2rem;
  line-height: 1em;
  font-weight: 700;
  color: #194098;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 768px) {
  .article_title,
  .article_title_01 {
    font-size: 1.6rem;
  }
}
.article_title a,
.article_title_01 a {
  text-decoration: none;
  color: #194098;
}

.article_title-w,
.article_title_01-w {
  font-size: 2rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 768px) {
  .article_title-w,
  .article_title_01-w {
    font-size: 1.6rem;
  }
}
.article_title-w a,
.article_title_01-w a {
  text-decoration: none;
  color: #ededed;
}

.article_title-b,
.article_title_01-b {
  font-size: 2rem;
  line-height: 1em;
  font-weight: 700;
  color: #222;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 768px) {
  .article_title-b,
  .article_title_01-b {
    font-size: 1.6rem;
  }
}
.article_title-b a,
.article_title_01-b a {
  text-decoration: none;
  color: #222;
}

.article_subTitle,
.article_subTitle_01 {
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 700;
  color: #194098;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 768px) {
  .article_subTitle,
  .article_subTitle_01 {
    font-size: 1.1rem;
  }
}
.article_subTitle a,
.article_subTitle_01 a {
  text-decoration: none;
  color: #194098;
}

.article_subTitle-w,
.article_subTitle_01-w {
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 768px) {
  .article_subTitle-w,
  .article_subTitle_01-w {
    font-size: 1.1rem;
  }
}
.article_subTitle-w a,
.article_subTitle_01-w a {
  text-decoration: none;
  color: #ededed;
}

.article_subTitle-b,
.article_subTitle_01-b {
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 700;
  color: #222;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 768px) {
  .article_subTitle-b,
  .article_subTitle_01-b {
    font-size: 1.1rem;
  }
}
.article_subTitle-b a,
.article_subTitle_01-b a {
  text-decoration: none;
  color: #222;
}

.youtube_play {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.videoBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  text-decoration: none;
}
.playBtn .circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.96);
  -webkit-box-shadow: 0 12px 28px rgba(220, 53, 69, 0.35);
          box-shadow: 0 12px 28px rgba(220, 53, 69, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .playBtn .circle {
    width: 72px;
    height: 72px;
  }
}
.playBtn .circle i {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
@media (max-width: 576px) {
  .playBtn .circle i {
    font-size: 1.7rem;
  }
}
.playBtn .circle i.fa-solid.fa-play {
  display: block;
  -webkit-transform: translateX(0.12em);
          transform: translateX(0.12em);
}
.playBtn:hover .circle {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.navbar-tree {
  position: relative;
  z-index: 1000;
  width: 100%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(35, 35, 35, 0.8);
}
@media (max-width: 575.98px) {
  .navbar-tree {
    padding-left: 0px !important;
    width: 100%;
  }
}
@media (max-width: 374.98px) {
  .navbar-tree {
    padding-left: 0px !important;
  }
  .navbar-tree .container-fluid {
    padding-left: 5px !important;
  }
}
.navbar-tree .navRow {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 98px;
}
@media (min-width: 1440px) {
  .navbar-tree .navRow {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .navbar-tree .navRow {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 85px;
  }
}
@media (max-width: 767.98px) {
  .navbar-tree .navRow {
    height: 85px;
  }
}
.navbar-tree .navRow .nav_logo {
  width: 380px;
  height: 98px;
  padding-right: 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-tree .navRow .nav_logo a.logo_img {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../img/logo/logo_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-tree .navRow .nav_logo a.logo_img span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.navbar-tree .navRow .nav_main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding: 0 15px;
}
.navbar-tree .navRow .nav-right {
  height: 98px;
  padding-left: 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar-tree .navRow .nav-right .nav-icon {
  padding: 0px;
  margin-bottom: -8px;
  display: inline-block;
}
.navbar-tree .navRow .nav-right .nav-icon .dropdown > a {
  padding: 24px 5px 24px 5px;
}
@media (max-width: 1300px) {
  .navbar-tree .navRow .nav-right .nav-icon .dropdown > a {
    padding: 12px 5px;
  }
}
.navbar-tree .navRow .nav-right .nav-icon a {
  font-weight: 600;
  color: #ffffff;
  padding: 0.2rem 0.1rem;
  font-size: 1.5rem;
  border-radius: 0rem;
}
.navbar-tree .navRow .nav-right .nav-icon a:hover {
  color: #997933;
}
.navbar-tree .navRow .nav-right .nav-icon a::after {
  display: none;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu {
  min-width: 3rem;
  border-radius: 0rem;
  padding: 0;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-left: -10px !important;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu .dropdown-item {
  font-weight: 300;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu li {
  text-align: center;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu li .dropdown-item {
  color: #555;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu li.active .dropdown-item {
  color: #fff;
  background: #997933;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu .dropdown-item:hover,
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu .dropdown-item.active {
  color: #fff;
  background: #997933;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-search .dropdown-menu {
  width: 400px;
  padding: 10px;
  border-radius: 0rem;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-search .dropdown-menu .btn.btn-search {
  background: #002147;
  color: #fff;
  border-radius: 0rem;
}
.navbar-tree .navRow .nav-burger {
  position: relative;
  width: 35px;
}
@media (max-width: 991.98px) {
  .navbar-tree .navRow .nav-burger {
    margin-bottom: 35px;
    width: 35px;
    margin-right: 0px;
  }
}
@media (max-width: 576px) {
  .navbar-tree .navRow .nav-burger {
    margin-left: 10px !important;
  }
}
.navbar-tree .navRow .nav-burger .animated-icon1 {
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
@media (max-width: 576px) {
  .navbar-tree .navRow .nav-burger .animated-icon1 {
    top: calc(50% - 15px) !important;
  }
}
.navbar-tree .navRow .nav-burger .animated-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  border-radius: 9px;
  opacity: 1;
  left: 8px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #fff;
}
.navbar-tree .navRow .nav-burger .animated-icon1 span:nth-child(1) {
  top: 11px;
}
.navbar-tree .navRow .nav-burger .animated-icon1 span:nth-child(2) {
  top: 18px;
}
.navbar-tree .navRow .nav-burger .animated-icon1 span:nth-child(3) {
  top: 25px;
}
.navbar-tree .navRow .nav-burger .animated-icon1.open span:nth-child(1) {
  top: 20px;
  left: 7px;
  width: 60%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.navbar-tree .navRow .nav-burger .animated-icon1.open span:nth-child(2) {
  opacity: 0;
  width: 60%;
}
.navbar-tree .navRow .nav-burger .animated-icon1.open span:nth-child(3) {
  top: 20px;
  left: 7px;
  width: 60%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.top-nav-collapse.navbar-tree {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05), 0 2px 10px 0 rgba(0, 0, 0, 0.03) !important;
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05), 0 2px 10px 0 rgba(0, 0, 0, 0.03) !important;
}
.top-nav-collapse.navbar-tree .navRow .nav-right .nav-icon a {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navRow .nav-right .nav-icon a:hover {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navRow .nav-right .nav-icon a .bx-search {
  margin-top: 10px;
}
.top-nav-collapse.navbar-tree .nav-burger .animated-icon1 span {
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1300px) {
  .nav-burger {
    display: none;
  }
}
@media (max-width: 1300px) {
  .navRow {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .nav_logo {
    width: 300px !important;
    height: 70px !important;
  }
  .nav_logo::before {
    display: none;
  }
  .nav_main {
    display: none;
  }
  .nav-right {
    margin-left: auto;
    height: 70px !important;
  }
  .nav-right::before {
    display: none;
  }
}
@media (min-width: 600px) {
  .navbar-tree.scrolling-navbar {
    width: 100%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  .navbar-tree.scrolling-navbar .top-nav-collapse {
    padding-top: 5px;
    padding-bottom: 10px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
}
.top_nav {
  position: absolute;
  top: 5px;
  right: 30px;
  list-style: none;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: 1000;
}
@media (max-width: 1300px) {
  .top_nav {
    top: 5px;
    right: 20px;
  }
}
.top_nav li {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.top_nav li a {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 8px 12px;
  color: #ccc;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .top_nav li a {
    padding: 8px 7px;
  }
}
.top_nav li a:hover {
  color: #997933;
  cursor: pointer;
}

.top-nav-collapse.navbar-tree .top_nav li a {
  color: #222 !important;
}
.top-nav-collapse.navbar-tree .top_nav li a:hover {
  color: #997933 !important;
}

.navbar-tree .navbar-site {
  position: relative;
  z-index: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-tree .navbar-site ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-tree .navbar-site ul.nav__L1 {
  width: 100%;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.navbar-tree .navbar-site ul.nav__L1 > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.navbar-tree .navbar-site ul li {
  position: relative;
}
.navbar-tree .navbar-site ul li.nav__L1--item {
  color: #ffffff;
  position: relative;
}
.navbar-tree .navbar-site ul li.nav__L1--item::before, .navbar-tree .navbar-site ul li.nav__L1--item::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  background-color: #997933;
}
.navbar-tree .navbar-site ul li.nav__L1--item:before {
  left: -2.5px;
}
.navbar-tree .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #997933;
  -webkit-transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within, .navbar-tree .navbar-site ul li.nav__L1--item:hover {
  color: #997933;
  cursor: pointer;
}
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within:before, .navbar-tree .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #997933;
  width: 100%;
  -webkit-transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within:after, .navbar-tree .navbar-site ul li.nav__L1--item:hover:after {
  background: transparent;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}
.navbar-tree .navbar-site ul li.nav__L1--item a {
  padding: 40px 0 28px 0;
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  background-color: rgba(153, 121, 51, 0);
}
.navbar-tree .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
@media (min-width: 1300px) {
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    min-width: 170px;
    margin: 0;
    padding: 0 0 1.25rem;
    list-style: none;
    z-index: 800;
    background-color: rgba(19, 55, 108, 0.95);
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: visible;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.12);
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2::-webkit-scrollbar {
    width: 6px;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 8px;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.65);
  }
  .navbar-tree .navbar-site ul li.nav__L1--item:hover > ul.nav__L2,
  .navbar-tree .navbar-site ul li.nav__L1--item:focus-within > ul.nav__L2,
  .navbar-tree .navbar-site ul li.nav__L1--item.is-nav-l2-held-open > ul.nav__L2 {
    display: block;
    opacity: 1;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item.is-nav-l2-held-open > ul.nav__L2 {
    -webkit-transition: none;
    transition: none;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    color: #fff;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item > a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item > a:hover {
    color: #fff;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:hover, .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:focus-within {
    background: rgba(155, 119, 69, 0.9);
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item.is-nav-l2-flyout-source {
    background: rgba(155, 119, 69, 0.9);
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:has(> ul.nav__L3) > a {
    padding-right: 2rem;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:has(> ul.nav__L3) > a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #fff;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item > ul.nav__L3 {
    display: none;
    position: absolute;
    left: 220px;
    top: 0;
    width: 220px;
    min-width: 170px;
    margin: 0;
    padding: 0 0 0.75rem;
    list-style: none;
    z-index: 900;
    background-color: rgba(19, 55, 108, 0.95);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:hover > ul.nav__L3,
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:focus-within > ul.nav__L3 {
    display: block;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item > ul.nav__L3 > li.nav__L3--item {
    display: block;
    width: 100%;
    padding: 0;
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item > ul.nav__L3 > li.nav__L3--item > a {
    display: block;
    padding: 0.45rem 0.75rem 0.45rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background-color: rgba(19, 55, 108, 0.95);
  }
  .navbar-tree .navbar-site ul li.nav__L1--item > ul.nav__L2 > li.nav__L2--item > ul.nav__L3 > li.nav__L3--item > a:hover {
    color: #fff;
    background: rgba(131, 101, 58, 0.95);
  }
  .navbar-tree .navbar-site ul.nav__L1 > .nav__L1--item:last-child > ul.nav__L2 > li.nav__L2--item > ul.nav__L3 {
    left: -220px;
    right: auto;
  }
}

.nav-tree-l3-floating-panel {
  position: fixed;
  display: none;
  width: 220px;
  min-width: 170px;
  z-index: 20000;
  margin: 0;
  padding: 0 0 0.75rem;
  list-style: none;
  background-color: rgba(15, 48, 99, 0.95);
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-tree-l3-floating-panel li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-tree-l3-floating-panel a {
  display: block;
  padding: 0.45rem 0.75rem 0.45rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background-color: rgba(15, 48, 99, 0.95);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-tree-l3-floating-panel a:hover {
  color: #fff;
  background: rgba(131, 101, 58, 0.95);
}

@media (min-width: 1300px) {
  body.is-nav-tree-l3-float .navbar-tree .navbar-site ul.nav__L1 li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:hover > ul.nav__L3,
  body.is-nav-tree-l3-float .navbar-tree .navbar-site ul.nav__L1 li.nav__L1--item > ul.nav__L2 > li.nav__L2--item:focus-within > ul.nav__L3 {
    display: none !important;
  }
}
.scroll-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  pointer-events: none;
}
.scroll-hint .scroll-mouse {
  width: 28px;
  height: 50px;
  -webkit-box-shadow: inset 0 0 0 1px #999;
          box-shadow: inset 0 0 0 1px #999;
  border-radius: 14px;
  position: relative;
}
.scroll-hint .scroll-mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #666;
  margin-left: -3px;
  top: 6px;
  border-radius: 50%;
  -webkit-animation: scroll 1.3s infinite;
          animation: scroll 1.3s infinite;
}
.scroll-hint .scroll-label {
  margin-top: 4px;
  font-size: 13px;
  color: #777;
  white-space: nowrap;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.top-nav-collapse.navbar-tree .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.top-nav-collapse.navbar-tree .navRow .nav_logo a.logo_img {
  background-image: url("../img/logo/logo_c.svg");
}
.top-nav-collapse.navbar-tree .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item::before, .top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item::after {
  background-color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.show, .top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item:hover {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.show:before, .top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item a {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  background-color: rgba(153, 121, 51, 0);
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}

body.navOver {
  overflow: hidden;
}
body.navOver .navbar-tree.scrolling-navbar .navRow {
  background: rgba(255, 255, 255, 0.85) !important;
}

body.navOver .navRow .nav_logo a.logo_img,
body.navOver .navbar-bgb .navRow .nav_logo a.logo_img {
  background-image: url("../img/logo/logo_c.svg");
}
body.navOver .navRow .nav-right .nav-icon a,
body.navOver .navbar-bgb .navRow .nav-right .nav-icon a {
  color: #222;
}
body.navOver .navRow .nav-burger .animated-icon1 span,
body.navOver .navbar-bgb .navRow .nav-burger .animated-icon1 span {
  background: rgba(0, 0, 0, 0.7);
}

.navbar_over {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 30%, rgba(221, 221, 221, 0.95) 100%);
  z-index: -1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 1300px) {
  .navbar_over {
    display: none;
  }
}
@media (max-width: 1300px) {
  .navbar_over {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
}
@media (min-width: 1480px) {
  .navbar_over .navbar_over--topNav {
    display: none;
  }
}
.navbar_over.open {
  position: fixed;
  top: 0;
  width: 100%;
  overflow-y: auto;
  background-blend-mode: multiply;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 1;
}
.navbar_over.open .container-index {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar_over li {
  list-style: none;
}
.navbar_over .L1_btn {
  width: 25%;
  margin-top: 20px;
  padding-left: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #997933;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@media (max-width: 991.99px) {
  .navbar_over .L1_btn {
    width: 32%;
  }
}
@media (max-width: 767.99px) {
  .navbar_over .L1_btn {
    margin-top: 0px;
    width: 50%;
  }
}
@media (max-width: 375.99px) {
  .navbar_over .L1_btn {
    width: 100%;
  }
}
.navbar_over .L1_btn > a {
  font-size: 22px;
  font-weight: 700;
  color: #997933;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-decoration: none;
}
.navbar_over .L1_btn > a:hover {
  font-size: 23px;
  color: #997933;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.navbar_over li > ul.L2_list {
  padding-left: 0px;
}
.navbar_over li > ul.L2_list > li a {
  padding: 6px 15px;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 400;
  color: #133777;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-decoration: none;
}
.navbar_over li > ul.L2_list > li:hover {
  cursor: pointer;
  background-color: #997933;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar_over li > ul.L2_list > li:hover a {
  color: #fff;
  text-decoration: none;
}
.navbar_over li > ul.L2_list li.dropdown-submenu {
  position: relative;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu.show {
  left: -20px;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu li a {
  display: block;
  width: 100%;
  min-width: 220px;
  color: #133777 !important;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu li:hover {
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu li:hover a {
  color: #fff !important;
  background-color: #997933;
}

@media (min-width: 992px) {
  .navbar_over {
    padding-top: 100px;
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .navbar_over {
    padding-top: 86px;
    overflow-y: auto;
  }
}

.navbar-tree.navbar-bgw {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}
.navbar-tree.navbar-bgw::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#193f98), color-stop(#2252c0), to(#052a58));
  background: linear-gradient(to right, #193f98, #2252c0, #052a58);
  top: 0;
  right: 0;
}
.navbar-tree.navbar-bgw .top_nav li a {
  color: #5a6470 !important;
}
.navbar-tree.navbar-bgw .top_nav li a:hover {
  color: #997933 !important;
}
.navbar-tree.navbar-bgw .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.navbar-bgw .navRow .nav_logo a.logo_img {
  background-image: url("../img/logo/logo_c.svg");
}
.navbar-tree.navbar-bgw .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.navbar-bgw .navRow .nav-right .nav-icon a {
  color: #2a4c8a;
}
.navbar-tree.navbar-bgw .navRow .nav-right .nav-icon a:hover {
  color: #997933;
}
.navbar-tree.navbar-bgw .navRow .nav-burger .animated-icon1 span {
  background: rgba(0, 0, 0, 0.7);
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item::before, .navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item::after {
  background-color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.show, .navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item:hover {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item a {
  color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  background-color: rgba(153, 121, 51, 0);
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul > li,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul > li {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item a,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul > li.nav__L2--item a {
  color: #fff;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item:hover,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul > li.nav__L2--item:hover {
  background-color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a {
  color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a:hover,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a:hover {
  color: #997933;
}

.navbar-tree.top-nav-collapse.navbar-bgw {
  position: fixed;
}

.navbar-tree.navbar-bgb {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#0f3068), to(#133777));
  background: linear-gradient(to right, #0f3068, #133777);
}
.navbar-tree.navbar-bgb .top_nav li a {
  color: rgba(255, 255, 255, 0.8235294118);
}
.navbar-tree.navbar-bgb .top_nav li a:hover {
  color: #ffffff;
}
.navbar-tree.navbar-bgb .navRow .nav_logo::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgb .navRow .nav-right::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgb .navRow .nav-right .nav-icon a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-tree.navbar-bgb .navRow .nav-right .nav-icon a:hover {
  color: #cdaa80;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-tree.navbar-bgb .navRow .nav-burger .animated-icon1 span {
  background: #fff;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item::before, .navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item::after {
  background-color: #cdaa80;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #cdaa80;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item a {
  color: #dadada;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item.active {
  color: #cdaa80;
  font-weight: 500;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item.active a {
  color: #cdaa80;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #fff;
}

.navbar-tree.top-nav-collapse.navbar-bgb {
  position: fixed;
  background: #fff;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav-right .nav-icon a {
  color: #2a4c8a;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav-burger .animated-icon1 span {
  background: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item::before, .navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item::after {
  background-color: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item a {
  color: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  font-weight: 500;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #002147;
}

.navbar-tree.navbar-bgr {
  position: relative;
  background: #194098;
}
.navbar-tree.navbar-bgr .top_nav li a {
  color: rgba(255, 255, 255, 0.8235294118);
}
.navbar-tree.navbar-bgr .top_nav li a:hover {
  color: #ffffff;
}
.navbar-tree.navbar-bgr .navRow .nav_logo::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgr .navRow .nav-right::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgr .navRow .nav-right .nav-icon a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-tree.navbar-bgr .navRow .nav-right .nav-icon a:hover {
  color: #f7c230;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-tree.navbar-bgr .navRow .nav-burger .animated-icon1 span {
  background: #fff;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item::before, .navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item::after {
  background-color: #fff;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #fff;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item a {
  color: #dadada;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item.active {
  color: #eec12c;
  font-weight: 500;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item.active a {
  color: #eec12c;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #fff;
}

.navbar-tree.top-nav-collapse.navbar-bgr {
  position: fixed;
  background: #fff;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav-right .nav-icon a {
  color: #222;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav-burger .animated-icon1 span {
  background: #222;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item::before, .navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item::after {
  background-color: #194098;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #194098;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item a {
  color: #222;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item.active {
  color: #806200;
  font-weight: 500;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item.active a {
  color: #806200;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #194098;
}

.page-footer {
  font-size: 1rem;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right top, from(#03152b), to(#0c2957)) !important;
  background: linear-gradient(to right, #03152b, #0c2957) !important;
  position: relative;
  min-height: 100px;
  padding: 40px 0px 60px 20px;
  z-index: 10;
}

.page-footer .footer_row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px 20px;
  color: #bdbdbd;
}
.page-footer .footer_row a {
  color: #fff;
  font-weight: 400;
}
.page-footer .footer_row a:hover {
  color: #d2b48c;
}
.page-footer .footer_row .col-logo {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  min-width: 220px;
}
.page-footer .footer_row .col-logo img, .page-footer .footer_row .col-logo svg, .page-footer .footer_row .col-logo image {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-footer .footer_row .col-add {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 260px;
}
.page-footer .footer_row .col-add a {
  text-decoration: none;
}
.page-footer .footer_row .col-copyright {
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-footer .footer_row .col-copyright img, .page-footer .footer_row .col-copyright svg, .page-footer .footer_row .col-copyright image {
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .page-footer .footer_row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-footer .footer_row .col-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
    height: 50px;
  }
  .page-footer .footer_row .col-logo img, .page-footer .footer_row .col-logo svg, .page-footer .footer_row .col-logo image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .page-footer .footer_row .col-add {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    min-width: 0;
  }
  .page-footer .footer_row .col-copyright {
    margin-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767.98px) {
  .page-footer .footer_row .col-logo {
    text-align: center;
    width: 100% !important;
  }
  .page-footer .footer_row .col-add {
    text-align: left;
    width: 100%;
    min-width: 0;
  }
  .page-footer .footer_row .col-copyright {
    margin-left: 0;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/* Start ============ accesskey 內頁 無障礙 ========================  accesskey 內頁 無障礙 ============ */
.show-hide-contact-bar, .hide {
  display: none;
}

.linkDesc, span.linkDesc {
  font-size: 0em !important;
}

*:focus {
  outline: 3px dashed rgba(255, 0, 0, 0) !important;
  outline-offset: -3px;
  text-decoration: none;
}

#AU[accesskey] {
  color: rgba(255, 0, 0, 0);
  max-width: 30px;
  font-size: 1rem;
  position: absolute;
  top: -0.5rem;
  left: 0rem;
}
#AU:focus {
  color: rgba(255, 0, 0, 0);
  font-size: 1.2rem;
  padding: 0.3rem;
}

#toAC[accesskey] {
  position: absolute;
  color: #fff;
  font-size: 0.01rem;
}
#toAC:focus {
  color: #fff;
  font-size: 1.2rem;
  top: 0px;
  left: 0px;
  padding: 10px;
  width: 100%;
  z-index: 100;
  background: #002147;
  text-align: center;
  z-index: 1000;
}

#AC[accesskey] {
  color: rgba(255, 0, 0, 0);
  font-size: 1rem;
  scroll-margin-top: 180px;
  z-index: 10;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}
#AC:focus {
  color: rgba(255, 0, 0, 0);
  font-size: 1.2rem;
  padding: 0.3rem;
}

#AZ[accesskey] {
  color: rgba(255, 0, 0, 0);
  font-size: 1rem;
  position: absolute;
  top: -0.5rem;
  left: 0rem;
}
#AZ:focus {
  color: rgba(255, 0, 0, 0);
  font-size: 1.2rem;
  padding: 0.3rem;
}

.acc-key {
  position: absolute;
  text-decoration: none;
}
.acc-key a:focus {
  outline: 3px dashed rgba(255, 0, 0, 0) !important;
  outline-offset: -3px;
}

.noscript-alert {
  width: 100%;
  display: block;
}
.noscript-alert.alert {
  margin-bottom: 0px;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.85) !important;
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  direction: ltr;
  color: #f8f8f8;
  -webkit-text-size-adjust: 100%;
}/*# sourceMappingURL=layout.css.map */