#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 400;
  background: white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#header .container .h-logo {
  flex: 0 0 auto;
  height: 50%;
  display: flex;
}
#header .container .h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  height: 100%;
}
#header .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  height: 100%;
}
#header .container .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #16457B;
  word-break: keep-all;
  text-align: center;
  letter-spacing: 2px;
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li {
  width: 100%;
  height: auto;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li > a {
  width: 100%;
  height: 52px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  background: white;
  color: black;
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li > a:hover {
  color: #2F7D77;
  font-weight: 500;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  opacity: 1;
  visibility: visible;
}
#header .container .lang {
  position: relative;
}
#header .container .lang .current {
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#header .container .lang .current .global {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: #16457B;
}
#header .container .lang .current span {
  font-size: 18px;
  line-height: 1.2;
  color: #16457B;
  word-break: keep-all;
}
#header .container .lang .current .arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: #16457B;
}
#header .container .lang .lang-select {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
#header .container .lang .lang-select > li {
  width: 100%;
  height: 48px;
}
#header .container .lang .lang-select > li > a {
  width: 100%;
  height: 100%;
  padding: 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.2;
  color: #3D3D3D;
  background: white;
}
#header .container .lang .lang-select > li.now > a {
  color: #2F7D77;
  font-weight: 600;
}
#header .container .lang.active .lang-select {
  opacity: 1;
  visibility: visible;
}
#header .container .mail {
  padding: 8px;
  padding-right: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border: 1px solid #16457B;
  border-radius: 4px;
}
#header .container .mail span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #16457B;
}
#header .container .mail svg {
  flex: 0 0 auto;
  height: 18px;
  fill: #16457B;
}

#footer {
  width: 100%;
  height: auto;
  padding: 64px 0;
  background: #05173E;
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#footer .container .top {
  width: 100%;
  height: auto;
  padding-bottom: 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  gap: 36px;
}
#footer .container .top .left {
  left: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#footer .container .top .left .f-logo {
  width: auto;
  height: 40px;
  display: flex;
}
#footer .container .top .left .f-logo > img {
  width: auto;
  height: 100%;
}
#footer .container .top .left .f-message {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  word-break: keep-all;
  color: white;
}
#footer .container .top .left .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
#footer .container .top .left .socials > a {
  flex: 0 0 auto;
  width: 38px;
  height: auto;
  display: flex;
}
#footer .container .top .left .socials > a > img {
  width: 100%;
  height: auto;
}
#footer .container .top .customer-support {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
#footer .container .top .customer-support b {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #46B9B1;
  word-break: keep-all;
  letter-spacing: 2px;
}
#footer .container .top .customer-support .support-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 100px;
}
#footer .container .top .customer-support .support-list li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
#footer .container .top .customer-support .support-list li .support-icon {
  flex: 0 0 auto;
  width: 32px;
  height: auto;
  display: flex;
}
#footer .container .top .customer-support .support-list li .support-icon > img {
  width: 100%;
  height: auto;
}
#footer .container .top .customer-support .support-list li span {
  padding-top: 5px;
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: white;
}
#footer .container .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#footer .container .bottom .copyright {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
  color: #46B9B1;
  letter-spacing: 2px;
}
#footer .container .bottom .policy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
#footer .container .bottom .policy-nav > a {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
  color: #46B9B1;
  letter-spacing: 2px;
}/*# sourceMappingURL=common.css.map */