#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  transition: all 0.2s ease-in-out;
  z-index: 500;
}
#header.sub-type, #header.scrolled {
  background: white;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
#header.sub-type .container #h-logo > img, #header.scrolled .container #h-logo > img {
  display: none;
}
#header.sub-type .container #h-logo > img:nth-child(2), #header.scrolled .container #h-logo > img:nth-child(2) {
  display: block;
}
#header.sub-type .container .h-right #h-global-nav .depth-1 li > a, #header.scrolled .container .h-right #h-global-nav .depth-1 li > a {
  color: black;
}
#header.sub-type .container .h-right .menu-open > span, #header.scrolled .container .h-right .menu-open > span {
  color: black;
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
#header .container #h-logo {
  flex: 0 0 auto;
  width: auto;
  height: 80%;
  display: flex;
  z-index: 510;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container #h-logo > img:nth-child(2) {
  display: none;
}
#header .container .h-right {
  height: 100%;
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}
#header .container .h-right #h-global-nav {
  flex: 0 1 auto;
  display: flex;
}
#header .container .h-right #h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}
#header .container .h-right #h-global-nav .depth-1 li {
  position: relative;
  flex: 0 0 auto;
}
#header .container .h-right #h-global-nav .depth-1 li > a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
#header .container .h-right #h-global-nav .depth-1 li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  padding-top: 35px;
  display: none;
  flex-direction: column;
}
#header .container .h-right #h-global-nav .depth-1 li .depth-2 li {
  width: 100%;
  height: auto;
}
#header .container .h-right #h-global-nav .depth-1 li .depth-2 li > a {
  width: 100%;
  height: auto;
  padding: 16px 12px;
  display: block;
  background: white;
  font-size: 16px;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#header .container .h-right #h-global-nav .depth-1 li .depth-2 li > a:hover {
  background: #065DDF;
  color: white;
}
#header .container .h-right #h-global-nav .depth-1 li:hover > a {
  color: #065DDF;
}
#header .container .h-right #h-global-nav .depth-1 li:hover .depth-2 {
  display: flex;
}
#header .container .h-right .menu-open {
  width: 52px;
  height: 52px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 510;
}
#header .container .h-right .menu-open > span {
  font-size: 36px;
  font-weight: 300;
  color: white;
}
@media screen and (max-width: 1024px) {
  #header .container .h-right {
    gap: 0;
  }
  #header .container .h-right .menu-open {
    display: flex;
  }
  #header .container .h-right #h-global-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 120px 0 40px 0;
    overflow-y: auto;
    box-sizing: border-box;
  }
  #header .container .h-right #h-global-nav .depth-1 {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  #header .container .h-right #h-global-nav .depth-1 li {
    width: 100%;
  }
  #header .container .h-right #h-global-nav .depth-1 li > a {
    display: block;
    padding: 20px 24px;
    color: black;
    font-size: 18px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header .container .h-right #h-global-nav .depth-1 li > a::after {
    content: "expand_more";
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    transition: transform 0.3s;
  }
  #header .container .h-right #h-global-nav .depth-1 li .depth-2 {
    position: static;
    transform: none;
    width: 100%;
    padding-top: 0;
    background: #f8f9fa;
    display: none;
  }
  #header .container .h-right #h-global-nav .depth-1 li .depth-2 li > a {
    padding: 14px 36px;
    text-align: left;
    font-size: 15px;
    background: transparent;
    border-bottom: 1px solid #eee;
  }
  #header .container .h-right #h-global-nav .depth-1 li .depth-2 li > a:hover {
    background: #eef4ff;
    color: #065DDF;
  }
  #header .container .h-right #h-global-nav .depth-1 li:hover .depth-2 {
    display: none;
  }
  #header .container .h-right #h-global-nav .depth-1 li.open > a {
    color: #065DDF;
    font-weight: bold;
  }
  #header .container .h-right #h-global-nav .depth-1 li.open > a::after {
    transform: rotate(180deg);
  }
  #header.mobile-active {
    background: white !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  }
  #header.mobile-active .container #h-logo > img {
    display: none;
  }
  #header.mobile-active .container #h-logo > img:nth-child(2) {
    display: block;
  }
  #header.mobile-active .container .h-right #h-global-nav {
    display: block;
  }
  #header.mobile-active .container .h-right .menu-open > span {
    color: black;
  }
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: black;
}
#footer .top {
  width: 100%;
  height: auto;
  padding: 36px 0;
  border-bottom: 1px solid #707070;
}
#footer .top .container {
  width: 95%;
  height: auto;
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
#footer .top .container aside {
  flex: 0 0 25%;
}
#footer .top .container .mid {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#footer .top .container .mid #f-logo {
  width: auto;
  height: 120px;
  display: flex;
  opacity: 0.5;
}
#footer .top .container .mid #f-logo > img {
  width: auto;
  height: 100%;
}
#footer .top .container .mid article {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#footer .top .container .mid article b {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
#footer .top .container .mid article .f-infos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
#footer .top .container .mid article .f-infos span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #ddd;
  word-break: keep-all;
}
#footer .top .container .mid article .f-infos span em {
  font-weight: 500;
  color: white;
}
#footer .bottom {
  width: 100%;
  height: auto;
  padding: 16px 0;
}
#footer .bottom .copyright {
  max-width: 95pc;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
  text-align: center;
}/*# sourceMappingURL=common.css.map */