#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);
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#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;
}
@media (max-width: 1280px) {
  #header .container .h-logo {
    height: 70%;
  }
}
#header .container .h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#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;
}
@media (max-width: 1280px) {
  #header .container .mail {
    display: none;
  }
}
#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;
}
#header .container .m-menu-open {
  width: 36px;
  height: 36px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #16457B;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .m-menu-open {
    display: flex;
  }
}
#header .container .m-menu-open i {
  font-size: 24px;
  line-height: 1;
  color: #16457B;
}

.whole-menu {
  position: fixed;
  right: -300px;
  top: 12px;
  width: 280px;
  height: calc(100% - 24px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(20, 73, 69, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 400;
  border: 1px solid #e6fffd;
  border-right-color: #3ac0b5;
  border-bottom-color: #3ac0b5;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.whole-menu.active {
  right: 12px;
}
.whole-menu .whole-head {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.whole-menu .whole-head > a {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.whole-menu .whole-head > a > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
.whole-menu .whole-head .m-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.whole-menu .whole-head .m-menu-close > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
.whole-menu .whole-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li > a, .whole-menu .whole-body .w-global-nav .depth-1 > li > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li a {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #fafafa;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .toggle-box {
  transform: rotate(90deg);
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .depth-2 {
  max-height: 200px;
  margin-top: 12px;
}

#footer {
  width: 100%;
  height: auto;
  padding: 64px 0;
  background: #05173E;
}
@media (max-width: 1280px) {
  #footer {
    padding: 48px 0;
  }
}
@media (max-width: 768px) {
  #footer {
    padding: 24px 0;
  }
}
#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;
}
@media (max-width: 1280px) {
  #footer .container .top {
    padding-bottom: 24px;
    margin-bottom: 24px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .top {
    padding-bottom: 16px;
    margin-bottom: 16px;
    flex-direction: column;
    gap: 20px;
  }
}
#footer .container .top .left {
  left: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1280px) {
  #footer .container .top .left {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .top .left {
    flex: unset;
    width: 100%;
    gap: 16px;
  }
}
#footer .container .top .left .f-logo {
  width: auto;
  height: 40px;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .container .top .left .f-logo {
    height: 32px;
  }
}
#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;
}
@media (max-width: 1280px) {
  #footer .container .top .left .f-message {
    font-size: 16px;
  }
}
#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;
}
@media (max-width: 1280px) {
  #footer .container .top .customer-support {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .top .customer-support {
    gap: 16px;
  }
}
#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;
}
@media (max-width: 1280px) {
  #footer .container .top .customer-support .support-list {
    gap: 16px 20px;
  }
}
@media (max-width: 768px) {
  #footer .container .top .customer-support .support-list {
    grid-template-columns: 1fr;
  }
}
#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 */