@charset "utf-8";

:root {
  --primary-blue: #0f3c96;
  --primary-light: #006fdd;
  --primary-dark: #03276a;
  --secondary-blue: #9ac9e5;
  --secondary-light: #c7e3f3;
  --secondary-dark: #38769c;
  --yellow: #fbb914;
  --purple: #511966;
  --brown: #8b670a;
  --grey: #403b34;
  --icon-size: 44px;
  --icon-border: 2px;
  --icon-padding: 10px;
  --icon-gap: 10px;
  --border-radius: 10px;
  --page-header-height: 120px;

  --primary-color: #a72126;
  --mobile-nav-bg: #926923;
  --nav-group-gap: 10px;
  --white: #ffffff;
  --dark: #000000;
  --scrollbar-color: #debfa7;
  --scrollbar-hover-color: #a72126;
}

[id] {
  scroll-margin-top: var(--page-header-height);
}

html.o-hidden,
html.o-hidden body {
  overflow: hidden;
  height: 100svh !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.woff") format("woff");
}

@layer core {
  html {
    border: 0;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    /* scroll-behavior: smooth; */
  }

  body {
    font-family: "Roboto", Arial, "微軟正黑體", "Microsoft JhengHei", sans-serif;
    font-variant-ligatures: none;
    font-size: 20px;
    color: #333;
    line-height: 1.2;
    font-weight: 400;
    min-height: 100vh;
  }

  body {
    opacity: 0;
  }

  body.done {
    opacity: 1;
  }

  body.opacity {
    opacity: 0;
  }

  .clearfix:before,
  .clearfix:after {
    display: table;
    content: " ";
  }

  .clearfix:after {
    clear: both;
  }

  *:focus-visible {
    outline: black solid 2px;
  }

  a {
    transition: font-size 0.3s ease 0s, color 0.3s ease 0s,
      background-color 0.3s ease 0s, padding 0.3s ease 0s, margin 0.3s ease 0s;
  }

  sub,
  sup {
    font-size: 0.777em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sup {
    top: -0.5em;
  }

  sub {
    bottom: -0.35em;
  }

  #skipToContent {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 5000;
  }

  #skipToContent a {
    background: #fff;
    font-size: 100%;
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  #skipToContent a:focus,
  #skipToContent a:active {
    display: inline;
    height: auto;
    left: 0;
    padding: 4px;
    top: 0;
    width: 180px;
    z-index: 1000;
    background: #005295;
    color: #fff;
  }

  .videoWrap,
  .youtubeWrap {
    position: relative;
  }

  .youtubeWrap iframe,
  .videoWrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .accessibility {
    height: 0;
    width: 0;
    display: inline-block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-indent: -9999px;
  }

  .hidden,
  .invisible,
  .sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    display: inline;
    border: none;
  }

  h1.sr-only {
    font-size: 0!important;

  }

  /********* dialog ************/
  dialog {
    /* display: block; */
    inset: 0;
    z-index: 10000;
    width: 95%;
    max-width: 800px;
    max-height: 100svh;
    overflow: hidden;
    transition: opacity 0.5s;
    animation-timing-function: cubic-bezier(0.5, -0.5, 0.1, 1.5);
    border-radius: var(--border-radius);
    padding: 0;
    border: 0;
    box-shadow: 0 0 15px 7px rgba(0, 0, 0, 0.2);
  }

  dialog[open] {
    --animation-slide-in-up: slide-in-up 0.5s cubic-bezier(0.25, 0, 0.3, 1);
    animation: var(--animation-slide-in-up) forwards;
  }

  dialog:not([open]) {
    pointer-events: none;
    opacity: 0;
  }

  dialog::backdrop {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0.5);
  }

  dialog[open]::backdrop {
    animation: backdrop-fade-in 0.5s ease-out forwards;
  }

  @keyframes slide-in-up {
    0% {
      transform: translateY(-100%);
    }
  }

  @keyframes backdrop-fade-in {
    from {
      -webkit-backdrop-filter: blur(0);
      backdrop-filter: blur(0);
    }

    to {
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
    }
  }

  dialog article {
    background-color: var(--white);
    width: 100%;
    max-height: 100svh;
  }

  dialog article header {
    font-size: 1.777em;
    line-height: 1em;
    padding: 1.5rem;
    /* background-color: var(--second-color); */
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
  }

  dialog article header > *:last-child,
  dialog article .modal-content .modal-scroll-content > *:last-child {
    margin-bottom: 0 !important;
  }

  dialog article .modal-content {
    padding: 1.5rem;
  }

  dialog article .modal-content .modal-scroll-content {
    max-height: calc(100svh - 280px);
    overflow-y: auto;
    padding-right: 5px;
  }

  .firefox dialog article .modal-content .modal-scroll-content {
    scrollbar-color: var(--scrollbar-color) var(--secondary-light);
    scrollbar-width: thin;
  }

  dialog article .modal-content .modal-scroll-content::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  dialog article .modal-content .modal-scroll-content::-webkit-scrollbar-track {
    background-color: var(--secondary-light);
    border-radius: 0;
  }

  dialog article .modal-content .modal-scroll-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 0;
  }

  dialog article footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--grey);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
  }

  dialog article footer.no-border {
    border-top: none;
  }

  dialog article footer.text-center {
    justify-content: center;
  }

  dialog a.close-modal-btn {
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: var(--primary-blue);
    color: var(--white) !important;
    transition: all 0.3s ease 0s;
  }

  dialog a.close-modal-btn:is(:hover, :focus) {
    background-color: var(--yellow);
    color: var(--primary-blue) !important;
  }

  dialog a.close-modal-btn:before,
  dialog a.close-modal-btn:after {
    content: "";
    position: absolute;
    width: 55%;
    height: 2px;
    background-color: currentColor;
    top: 19px;
    left: 9px;
  }

  dialog a.close-modal-btn:before {
    transform: rotate(45deg);
  }

  dialog a.close-modal-btn:after {
    transform: rotate(-45deg);
  }

  /****** dialog end *********/

  object {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    -moz-transition: width 0.25s ease 0s;
    -o-transition: width 0.25s ease 0s;
    -webkit-transition: width 0.25s ease;
    -webkit-transition-delay: 0s;
    transition: width 0.25s ease 0s;
  }

  ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: rgba(51, 51, 51, 0.8);
  }

  :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(51, 51, 51, 0.8);
    opacity: 1;
  }

  ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(51, 51, 51, 0.8);
    opacity: 1;
  }

  :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(51, 51, 51, 0.8);
  }

  ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(51, 51, 51, 0.8);
  }

  ::placeholder {
    /* Most modern browsers support this now. */
    color: rgba(51, 51, 51, 0.8);
  }

  input:focus::-moz-placeholder {
    color: rgba(51, 51, 51, 1);
  }

  input:focus:-ms-input-placeholder {
    color: rgba(51, 51, 51, 1);
  }

  input:focus::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 1);
  }

  /* Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  input[type="number"] {
    -moz-appearance: textfield;
  }

  input[type="search"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  strong {
    font-weight: 700;
  }

  .container {
    width: 100%;
    padding: 0 2.22em;
    margin: 0 auto;
    max-width: 1700px;
    -webkit-transition: padding 0.3s ease 0s, gap 0.3s ease 0s;
    transition: padding 0.3s ease 0s, gap 0.3s ease 0s;
  }

  #wrapper {
    width: 100%;
    min-width: 320px;
    max-width: 3000px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    background: var(--white);
  }

  #wrapper.grayscale {
    filter: grayscale(1);
  }

  #headerZone {
    /* position: sticky; */
    position: fixed;
    z-index: 990;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    /* box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.1); */
  }

  #headerTop {
    max-width: 2000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.22em;
    -webkit-transition: padding 0.3s;
    transition: padding 0.3s;
  }

  #logoWrap {
    padding: 1.25rem 0;
    flex: 0 1 278px0px;
    transition: all 0.3s ease;
  }

  #logoWrap a {
    display: block;
    max-width: 278px;
    line-height: 0;
  }

  #mmenuCtrl {
    display: block;
    width: 40px;
    aspect-ratio: 1;
    z-index: 2000;
  }

  #mmenuCtrl a {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
  }

  #mmenuCtrl a:hover,
  #mmenuCtrl a.focus {
    border: 1px solid var(--primary-color);
    background-color: var(--white);
  }

  #mmenuCtrl a span {
    text-indent: -9999px;
    color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease 0s, transform 0.3s ease 0s, color 0.3s ease 0s;
  }

  #mmenuCtrl a span:before,
  #mmenuCtrl a span:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--white);
    top: 7px;
    left: 0;
    transition: width 0.3s ease 0s, transform 0.3s ease 0s, color 0.3s ease 0s;
  }

  #mmenuCtrl a span:after {
    top: -8px;
  }

  #mmenuCtrl a:hover span,
  #mmenuCtrl a.focus span,
  #mmenuCtrl a:hover span:before,
  #mmenuCtrl a.focus span:before,
  #mmenuCtrl a:hover span:after,
  #mmenuCtrl a.focus span:after {
    width: 24px;
    background-color: var(--primary-color);
  }

  #mmenuCtrl.active a > span,
  #mmenuCtrl.active a > span:before,
  #mmenuCtrl.active a > span:after {
    background-color: #fff;
  }

  #mmenuCtrl.active a > span {
    background: transparent;
    width: 24px;
  }

  #mmenuCtrl.active a > span:before,
  #mmenuCtrl.active a > span:after {
    top: 0;
    width: 24px;
    background-color: #fff;
  }

  #topNavWrap {
    display: flex;
    justify-content: right;
    align-items: center;
  }

  .siteTools {
    position: relative;
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
  }

  .siteTools > ul {
    display: flex;
    gap: 10px;
  }

  .siteTools > ul > li {
    position: relative;
  }

  .siteTools > ul > li > a {
    display: block;
    position: relative;
    font-size: 0;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    border: 1px solid transparent;
    overflow: hidden;
    background-color: var(--primary-color);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    transition: all 0.3s ease;
  }

  .siteTools > ul > li > a:hover,
  .siteTools > ul > li > a.focus,
  .siteTools > ul > li.active > a {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
  }

  .siteTools > ul > li > a:before {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: icomoon;
    font-size: 20px;
    color: var(--white);
  }

  .siteTools > ul > li > a:hover:before,
  .siteTools > ul > li > a.focus:before,
  .siteTools > ul > li.active > a:before {
    color: var(--primary-color);
  }

  .siteTools > ul > li > a.toolLangs:before {
    content: "\e904";
  }

  .siteTools > ul > li > a.toolFontsize:before {
    content: "\e903";
  }

  .siteTools .subnav {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    pointer-events: none;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
  }

  .siteTools .subnav:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--primary-color);
    top: -7px;
  }

  .siteTools .subnav a,
  .siteTools .subnav form {
    display: none;
  }

  .siteTools > ul > li.active > .subnav a,
  .siteTools > ul > li.active > .subnav form {
    display: block;
    text-align: center;
  }

  .siteTools > ul > li.active > .subnav {
    opacity: 1;
    pointer-events: visible;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
  }

  .siteTools > ul > li > a > span {
    position: relative;
  }

  #toolLangs .subnav,
  #toolShare .subnav {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translate(-50%, 10px);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
  }

  #toolLangs .subnav:before,
  #toolShare .subnav:before {
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
  }

  #toolLangs.active .subnav:before,
  #toolShare.active .subnav:before {
    opacity: 1;
  }

  #toolLangs .subnav > a,
  #toolShare .subnav > a {
    padding: 0 10px;
    line-height: 40px;
  }

  #toolLangs .subnav > a.selected,
  #toolLangs .subnav > a:hover,
  #toolLangs .subnav > a.focus {
    color: #ebd639;
  }

  #toolLangs.active .subnav,
  #toolShare.active .subnav {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  /* #toolLangs > a > span:after {
    content: "\e900";
  } */

  /* #toolFontsize > a > span:after {
    content: "\e906";
    color: #7fb61c !important;
  } */

  #toolFontsize.active > a > span:after,
  #toolFontsize > a:hover > span:after,
  #toolFontsize > a.focus > span:after {
    color: var(--white) !important;
  }

  #toolLangs .subnav > a.selected,
  #toolLangs .subnav > a:hover,
  #toolLangs .subnav > a.focus {
    color: var(--primary-color);
    background-color: var(--white);
  }

  #mainNavWrap {
    position: relative;
    background-color: var(--primary-light);
    z-index: 500;
  }

  #mainNav > ul {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
  }

  #mainNav > ul > li {
    position: relative;
    text-align: center;
  }

  #mainNav > ul > li:after {
    content: "";
    background-color: #dcf0f0;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }

  #mainNav > ul > li:first-child:before {
    content: "";
    background-color: #dcf0f0;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
  }

  #mainNav > ul > li > a {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 0 1.66em;
    width: 100%;
    min-height: 50px;
    transition: padding 0.3s ease 0s, color 0.3s ease 0s,
      background-color 0.3s ease 0s;
  }

  #mainNav > ul > li > a > span {
    text-align: center;
    width: 100%;
    font-size: 1.1111em;
    padding: 10px 0;
  }

  #mainNav > ul > li.selected > a,
  #mainNav > ul > li.active > a,
  #mainNav > ul > li > a:hover,
  #mainNav > ul > li > a.focus {
    background-color: var(--primary-blue);
  }

  #mainNav > ul > li > .subnav {
    position: absolute;
    left: 0;
    top: 100%;
    pointer-events: none;
  }

  #mainNav > ul > li > a > span:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 0;
    display: block;
    border: 7px transparent solid;
    border-bottom-color: #fff;
    border-top-width: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0s;
  }

  #mainNav > ul > li.active > a > span:before {
    opacity: 1;
  }

  #mainNav > ul > li.active > .subnav {
    pointer-events: visible;
  }

  #mainNav > ul > li > .subnav.alignRight {
    left: inherit;
    right: 0;
  }

  #mainNav > ul > li > .subnav > ul {
    width: 240px;
    opacity: 0;
    transform: translate(0, 10px);
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
  }

  #mainNav > ul > li.active > .subnav > ul {
    opacity: 1;
    transform: translate(0, 0);
  }

  #mainNav .subnav > ul > li {
    border-bottom: 1px solid rgba(2, 92, 88, 0.5);
    position: relative;
  }

  #mainNav .subnav > ul > li:last-child {
    border-bottom: none;
  }

  #mainNav > ul > li > .subnav > ul > li > a {
    background-color: var(--primary-light);
  }

  #mainNav > ul > li > .subnav > ul > li.active > a,
  #mainNav > ul > li > .subnav > ul > li.selected > a,
  #mainNav > ul > li > .subnav > ul > li > a:hover,
  #mainNav > ul > li > .subnav > ul > li > a.focus {
    background-color: var(--primary-blue);
  }

  #mainNav > ul > li > .subnav > ul > li:first-child {
    border-top: none;
  }

  #mainNav .subnav > ul > li > a {
    position: relative;
    display: block;
    padding: 12px 15px;
    text-align: left;
    color: #fff;
    line-height: 1.33em;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  }

  #mainNav .subnav > ul > li.active > a,
  #mainNav .subnav > ul > li.selected > a,
  #mainNav .subnav > ul > li > a:hover,
  #mainNav .subnav > ul > li > a.focus {
    color: #fff;
  }

  #mainNav .subnav > ul > li.selected > a:before,
  #mainNav .subnav > ul > li > a:hover:before,
  #mainNav .subnav > ul > li > a.focus:before {
    opacity: 1;
    height: 100%;
  }

  #mainNav > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > a:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(-45deg);
    display: block;
    border: 2px solid #fff;
    border-left-width: 0;
    border-top-width: 0;
    transition: transform 0.3s ease 0s;
  }

  #mainNav > ul > li.hasSubnav > .subnav > ul > li.hasSubnav:hover > a:before {
    border-color: #ebd639;
  }

  #mainNav > ul > li.hasSubnav > .subnav > ul > li.hasSubnav:hover > .subnav,
  #mainNav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li.hasSubnav
    > a.focus
    + .subnav,
  #mainNav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li.hasSubnav.active
    > a
    + .subnav {
    opacity: 1;
    pointer-events: visible;
  }

  #mainNav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li
    > a {
    background-color: #004277;
  }

  #mainNav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li
    > a:hover,
  #mainNav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li.hasSubnav
    > .subnav
    > ul
    > li
    > a.focus {
    background-color: #00355f;
  }

  em {
    font-style: italic !important;
  }

  /*mainNav css ends*/

  #mainZone {
    position: relative;
    background: #fff url("../images/bg.jpg") repeat 0 0 / contain;
    background-attachment: fixed;
    overflow: hidden;
  }

  #footerZone {
    /* border-top: 3px solid var(--primary-color); */
    background-color: var(--primary-color);
    position: relative;
  }

  #footerMain {
    position: relative;
    max-width: 2000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    gap: 10px 15px;
    color: #333;
    font-size: 0.833em;
  }

  #footerLeft {
    flex: 0 1 auto;
  }

  #footerLeft .footer-slogan {
    line-height: 0;
    position: absolute;
    max-width: 370px;
    top: -42px;
    left: 40px;
  }

  #footerNav {
    display: grid;
    gap: 10px 20px;
    margin-bottom: 10px;
    grid-template-columns: repeat(auto-fit, minmax(50px, max-content));
  }

  #footerNav a {
    position: relative;
  }

  #footerNav a:not(:first-child):before {
    content: "";
    background-color: rgba(0, 0, 0, 0.15);
    width: 1px;
    height: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
  }

  #footerNav a {
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease 0s, border-color 0.25s ease 0s;
  }

  #footerNav a:hover {
    border-bottom-color: var(--grey);
  }

  #footerCopyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    font-weight: 300;
  }

  #footerCopyright > div {
    position: relative;
    color: var(--white);
  }

  #footerRight {
    flex: 0 1 auto;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }

  #footerRight a {
    line-height: 0;
  }

  /*mobile menu css starts*/
  #mobileBgLayer {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 998;
    left: 0;
    top: 0;
    animation: fadeIn 0.3s forwards;
  }

  @keyframes fadeIn {
    100% {
      opacity: 0.5;
    }
  }
}

#mobileNavWrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: -100%;
  opacity: 1;
  z-index: 999;
  display: none;
  background: var(--mobile-nav-bg) no-repeat url("../images/bg-menu.jpg") left
    bottom / contain;
  transition: background 0.25s ease 0s, left 0.5s ease 0s;
}

.showMMenu #mobileNavWrap {
  display: flex;
}

#mobileNavWrap.show {
  top: 0;
  left: 0;
}

#mobileNav {
  overflow-x: hidden;
  overflow-y: auto;
  width: auto;
  max-width: fit-content;
  height: auto;
  scrollbar-face-color: #fff; /* Firefox 63 compatibility */
  scrollbar-track-color: var(--mobile-nav-bg); /* Firefox 63 compatibility */
  scrollbar-color: var(--mobile-nav-bg) var(--mobile-nav-bg);
  scrollbar-width: thin;
}
#mobileNav::-webkit-scrollbar {
  width: 10px;
}
#mobileNav::-webkit-scrollbar-track {
  background: var(--mobile-nav-bg);
}
#mobileNav::-webkit-scrollbar-thumb {
  background: #fff;
}
#mobileNav::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

#mobileMenu {
  padding: 70px 140px 0 150px;
  transition: padding 0.3s ease 0s;
}
#mainNav_m .label-title {
  margin-bottom: 1.25rem;
  display: inline-block;
}
#mainNav_m > ul {
  column-count: 1;
}

#mainNav_m > ul.two-columns {
  column-count: 2;
}
.mainNav_m ul > li {
  padding-right: 15px;
}
.mainNav_m ul > li:not(:last-child) {
  margin-bottom: 1.75rem;
}

.mainNav_m li > a {
  position: relative;
  font-size: 2.5em;
  font-size: clamp(1.75rem, 0.8929rem + 1.7857vw, 3.125rem);
  /* line-height: 1.8; */
  color: var(--white);
  font-weight: 400;
  opacity: 0;
  bottom: -20px;
  transition: color 0.3s ease 0s, bottom 0.5s ease 0s, opacity 0.5s ease 0s;
}

.mainNav_m li > a.fadeInUp {
  animation: fadeInUp 0.5s forwards;
}

.mainNav_m li > a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--white);
  left: 0;
  bottom: 0;
}

.mainNav_m li.selected > a:before,
.mainNav_m li > a:hover:before,
.mainNav_m li > a.focus:before {
  width: 100%;
  transition: width 0.3s ease;
}

.mainNav_m li > a:after {
  position: absolute;
  content: "";
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--white);
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.mainNav_m li.selected > a:after

/* .mainNav_m li > a:hover:after, */
/* .mainNav_m li > a.focus:after  */ {
  opacity: 1;
  transition: opacity 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    bottom: -20px;
  }

  to {
    opacity: 1;
    bottom: 0;
  }
}

.toolsWrap {
  padding: 70px 0 0 10px;
}

.toolsWrap .label-title {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.mmenuClose {
  position: absolute;
  display: block;
  right: 40px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: transparent;
  line-height: 0;
  transition: all 0.3s ease;
}

.mmenuClose:hover,
.mmenuClose.focus {
  border: 1px solid transparent;
  background-color: var(--white);
}

.mmenuClose span {
  font-size: 0;
}

.mmenuClose span:before,
.mmenuClose span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

.mmenuClose span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mmenuClose:hover span:before,
.mmenuClose:hover span:after,
.mmenuClose.focus span:before,
.mmenuClose.focus span:after {
  background-color: var(--mobile-nav-bg);
}

.label-title {
  font-size: 1em;
  font-weight: 700;
  color: var(--white);
}

.nav-btn-wrap {
  margin-bottom: 50px;
}

.nav-btn-wrap .btn-group {
  display: flex;
  align-items: center;
  gap: var(--nav-group-gap);
}

.nav-btn-wrap .btn-group > a {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: var(--white);
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
}

.nav-btn-wrap .btn-group > a::before {
  font-family: icomoon;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
  font-size: 20px;
  color: var(--mobile-nav-bg);
}

.nav-btn-wrap .btn-group > a:hover,
.nav-btn-wrap .btn-group > a.focus {
  background-color: var(--mobile-nav-bg);
  border-color: var(--white);
}

.nav-btn-wrap .btn-group > a:hover:before,
.nav-btn-wrap .btn-group > a.focus:before {
  color: var(--white);
}

.nav-btn-wrap .btn-group > a.langEN:before {
  content: "\e905";
}

.nav-btn-wrap .btn-group > a.langTC:before {
  content: "\e907";
}

.nav-btn-wrap .btn-group > a.langSC:before {
  content: "\e906";
}

.nav-btn-wrap .btn-group > a.fontSizeIncrease:before {
  content: "\e903";
}

/*mobile menu css ends*/
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  opacity: 0;
  z-index: 1000;
  font-size: 0;
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  visibility: hidden;
  border-radius: 50%;
  transition: background-color 0.5s ease 0s, opacity 0.3s ease 0s,
    width 0.3s ease 0s, height 0.3s ease 0s;
}

#backToTop:hover,
#backToTop.focus {
  background-color: var(--primary-color);
  border: 1px solid transparent;
}

#backToTop:before {
  font-family: icomoon;
  position: absolute;
  display: block;
  content: "\e902";
  height: 24px;
  width: 24px;
  transform: translateY(-50%);
  top: 50%;
  left: 10px;
  font-size: 24px;
  color: var(--primary-color);
}

#backToTop:hover:before,
#backToTop.focus:before {
  color: var(--white);
}

#backToTop.fixed {
  position: absolute;
  bottom: 20px;
}

#backToTop.active {
  opacity: 1;
  visibility: visible;
}

#wrapper.showMMenu #backToTop {
  visibility: hidden;
}

/*inside*/
#insideVisualWrap {
  height: 200px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}

#insideVisualWrap.loaded {
}

#secTitlWrap {
  height: 100%;
}

#secTitle {
  font-size: 2.778em;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 100;
  padding: 0.4em 0.8em;
  transition: font-size 0.3s ease 0s, padding 0.3s ease 0s;
}

#pageTitle {
  position: relative;
  padding: 0 0 10px;
  margin-bottom: 0.75em;
  font-size: 2.22em;
  color: var(--primary-blue);
  font-weight: 600;
  border-bottom: 4px solid var(--primary-light);
}

#contentWrap {
  position: relative;
}

#contentWrap.hasLeftNav .container {
  display: flex;
  column-gap: 40px;
}

#mainContent {
  width: 100%;
  /* padding: 20px 0 70px; */
  position: relative;
  min-height: 460px;
  opacity: 0;
  container: content / inline-size;
  transition: opacity 0.2s ease 0s;
}

#contentWrap.shown #mainContent,
#contentWrap.shown #content {
  opacity: 1;
}

#content {
  opacity: 0;
}

#lastRevDate {
  text-align: left;
  color: #6e6e6e;
  font-size: 0.833em;
  padding: 10px 20px;
}

.fancybox-content {
  max-width: 800px;
}

#lastRevDate {
  text-align: left;
  color: #6e6e6e;
  font-size: 0.833em;
  padding: 10px 20px;
}

/*swiper*/
.swiper-wrap {
  position: relative;
}

.swiper-wrap .swiper-play {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-wrap .swiper-arrow {
  position: absolute;
  width: 50px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 990;
  font-size: 0;
  line-height: 0;
  display: block;
  overflow: hidden;
  opacity: 1;
  border: none;
  transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s,
    left 0.3s ease 0s, right 0.3s ease 0s;
}

.swiper-wrap .swiper-arrow span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-top: none;
  border-left: none;
}

.swiper-wrap .swiper-next {
  right: 20px;
}

.swiper-wrap .swiper-prev {
  left: 20px;
}

.swiper-wrap .swiper-prev span {
  transform: translate(-50%, -50%) rotate(135deg);
  margin-left: 4px;
}

.swiper-wrap .swiper-prev:not(.swiper-button-disabled):hover,
.swiper-wrap .swiper-prev:not(.swiper-button-disabled).focus {
  left: 15px;
}

.swiper-wrap .swiper-next span {
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-left: -4px;
}

.swiper-wrap .swiper-next:not(.swiper-button-disabled):hover,
.swiper-wrap .swiper-next:not(.swiper-button-disabled).focus {
  right: 15px;
}

.swiper-paging {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
}

.swiper-paging > a {
  display: inline-block;
  height: 34px;
  width: 20px;
  position: relative;
  vertical-align: top;
  text-indent: -9999px;
  opacity: 1;
}

.swiper-paging > a:before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  box-shadow: 0px 5px 30px 5px rgba(0, 0, 0, 0.2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease 0s, height 0.3s ease 0s,
    background-color 0.3s ease 0s;
}

.swiper-paging .swiper-pagination-bullet-active:before {
  background-color: #fff;
  width: 16px;
  height: 16px;
}

.swiper-paging .swiper-pagination-bullet:hover:before {
  background-color: #fff;
}

.swiper-paging .swiper-pagination-bullet,
.swiper-paging .swiper-pagination-bullet-active {
  background: none;
}

.swiper-button-disabled {
  cursor: default;
}

.swiper-notification {
  position: absolute;
  height: 0;
  width: 0;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
}

.btn-play {
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  width: 35px;
  height: 34px;
  z-index: 10;
  transition: background-color 0.3s ease 0s;
}

.btn-play:hover {
}

.btn-play:before {
  left: 12px;
}

.btn-play:after {
  right: 12px;
}

.btn-play:before,
.btn-play:after {
  position: absolute;
  width: 3px;
  height: 14px;
  background-color: #fff;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  /*transition: background-color .3s ease 0s;*/
}

.btn-play.stop:before {
  content: "";
  border-bottom: 7px solid transparent;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  background: none;
  border-radius: 0;
  height: 0;
  top: 50%;
  left: 50%;
  width: 0;
  transform: translate(-50%, -50%);
}

.btn-play.stop:hover:before,
.btn-play.stop:focus:before {
  border-bottom: 7px solid transparent;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
}

.btn-play.stop::after {
  display: none;
}

/*swiper*/

.button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 8px;
  min-width: 130px;
  font-size: 1em;
  line-height: 1.8;
  font-weight: 700;
  text-decoration: none !important;
  padding: 5px 30px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.25s ease;
}

.button:hover,
.button.focus {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* .horizontal-scroll-section .card .link {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--white);
  font-size: 1em;
  line-height: 1.8;
  font-weight: 700;
  padding: 10px 40px 10px 25px;
  min-width: 160px;
  max-width: 160px;
  margin-left: auto;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  justify-self: flex-end;
  background-color: var(--primary-color);
  border: 1px solid transparent;
  opacity: 0;
}

.horizontal-scroll-section .card .link:hover,
.horizontal-scroll-section .card .link.focus {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
} */

.button.back {
  padding: 5px 30px 5px 60px;
}

.button.back:before {
  font-family: icomoon;
  content: "\e900";
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  left: 30px;
  line-height: 18px;
  font-size: 18px;
}

/*end layer*/

.mw-820 {
  max-width: 1000px;
  margin: 0 auto;
}

/* Loading */

.loading {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 1);
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--primary-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }

  100%,
  0% {
    transform: scale(1);
  }
}

/* end of Loading */
