.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 600;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.m-menu-background.on {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100dvh;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: #2754e5;
  z-index: 601;
  transition: all 0.2s ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
}
.m-menu .m-menu-head > a {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.m-menu .m-menu-head > a > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-head .m-menu-close, .m-menu .m-menu-head .prev-depth {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg, .m-menu .m-menu-head .prev-depth > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-body {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
}
.m-menu .m-menu-body .m-global-depth1 {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-menu .m-menu-body .m-global-depth1 .item {
  width: 100%;
  height: 50px;
}
.m-menu .m-menu-body .m-global-depth1 .item > p, .m-menu .m-menu-body .m-global-depth1 .item > a {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: white;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-depth1 .item > p:hover, .m-menu .m-menu-body .m-global-depth1 .item > a:hover {
  background-color: white;
  color: #2754e5;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0b6e34;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page .m-global-depth2 {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page .m-global-depth2 > a {
  width: 100%;
  height: 50px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: white;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page .m-global-depth2 > a:hover {
  background: white;
  color: #0b6c6e;
}
.m-menu .m-menu-body .m-global-depth1 .item.on .depth2-page {
  transform: translateX(0);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 88px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  z-index: 400;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1280px) {
  .header {
    height: 60px;
  }
}
.header .container {
  width: 95%;
  height: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container #h-logo {
  flex: 0 0 auto;
  display: inline-block;
  height: 70%;
  font-weight: 700;
  color: black;
  word-break: keep-all;
}
.header .container #h-logo > img {
  width: auto;
  height: 100%;
}
.header .container .h-global-nav {
  flex: 0 1 auto;
  height: 100%;
}
@media (max-width: 1280px) {
  .header .container .h-global-nav {
    display: none;
  }
}
.header .container .h-global-nav .depth-1 {
  width: 800px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1440px) {
  .header .container .h-global-nav .depth-1 {
    width: 600px;
  }
}
.header .container .h-global-nav .depth-1 > li {
  position: relative;
  flex: 1 1 20%;
  height: 100%;
}
.header .container .h-global-nav .depth-1 > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: black;
  word-break: keep-all;
  background: white;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1440px) {
  .header .container .h-global-nav .depth-1 > li > a {
    font-size: 1rem;
  }
}
.header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.header .container .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: auto;
  padding: 24px 1rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: #2D2D2D;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.header .container .h-global-nav .depth-1 > li .depth-2 > a:hover {
  background: black;
  color: white;
}
.header .container .h-global-nav .depth-1 > li:hover > a {
  color: white;
  background: black;
}
.header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 400px;
}
.header .container .h-right-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1440px) {
  .header .container .h-right-group {
    gap: 40px;
  }
}
.header .container .h-right-group .social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1440px) {
  .header .container .h-right-group .social-nav {
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  .header .container .h-right-group .social-nav {
    display: none;
  }
}
.header .container .h-right-group .social-nav > a {
  display: flex;
}
.header .container .h-right-group .social-nav > a > img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.header .container .h-right-group .m-whole-menu-open {
  width: auto;
  height: auto;
  display: flex;
  cursor: pointer;
}
.header .container .h-right-group .m-whole-menu-open > img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.whole-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.whole-background.on {
  opacity: 1;
  visibility: visible;
}

.whole-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 601;
  transition: all 0.2s ease-in-out;
}
.whole-menu.on {
  transform: translateX(0);
}
.whole-menu .w-menu-head {
  flex: 0 0 auto;
  width: 100%;
  height: 50px;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #aaa;
}
.whole-menu .w-menu-head .w-menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.whole-menu .w-menu-head .w-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.whole-menu .w-menu-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
}
.whole-menu .w-menu-body .m-global-nav {
  width: 100%;
  display: flex;
}
.whole-menu .w-menu-body .m-global-nav .depth-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.whole-menu .w-menu-body .m-global-nav .depth-1 > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.whole-menu .w-menu-body .m-global-nav .depth-1 > li > span {
  width: 100%;
  height: 40px;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 600;
  color: black;
  word-break: keep-all;
}
.whole-menu .w-menu-body .m-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.whole-menu .w-menu-body .m-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 36px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
  word-break: keep-all;
}

.footer {
  width: 100%;
  height: auto;
  padding: 70px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
@media (max-width: 1280px) {
  .footer {
    padding: 48px 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }
}
.footer .container {
  width: 95%;
  height: auto;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    gap: 32px;
  }
}
.footer .container .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1280px) {
  .footer .container .left {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer .container .left {
    align-items: center;
    gap: 24px;
  }
}
.footer .container .left .f-logo {
  display: flex;
  height: 80px;
  font-weight: 700;
  color: white;
}
.footer .container .left .f-logo > img {
  width: auto;
  height: 100%;
}
.footer .container .left .footer-info-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
@media (max-width: 768px) {
  .footer .container .left .footer-info-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.footer .container .left .footer-info-wrap .row {
  width: 100%;
  height: auto;
}
.footer .container .left .footer-info-wrap .row.full-w {
  grid-column: 1/-1;
}
.footer .container .left .footer-info-wrap .row:last-of-type .info-group .info-name {
  width: 130px;
}
@media (max-width: 1280px) {
  .footer .container .left .footer-info-wrap .row:last-of-type .info-group .info-name {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .footer .container .left .footer-info-wrap .row:last-of-type .info-group .info-name {
    width: 100px;
  }
}
.footer .container .left .footer-info-wrap .row .info-group {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.footer .container .left .footer-info-wrap .row .info-group .info-name {
  flex: 0 0 auto;
  width: 80px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  color: #ddd;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .container .left .footer-info-wrap .row .info-group .info-name {
    width: 70px;
    font-size: 1rem;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .footer .container .left .footer-info-wrap .row .info-group .info-name {
    width: 100px;
    font-size: 13px;
    line-height: 18px;
  }
}
.footer .container .left .footer-info-wrap .row .info-group .info-content {
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .container .left .footer-info-wrap .row .info-group .info-content {
    font-size: 1rem;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .footer .container .left .footer-info-wrap .row .info-group .info-content {
    font-size: 13px;
    line-height: 18px;
  }
}
.footer .container .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer .container .right {
    align-items: center;
    gap: 1rem;
  }
}
.footer .container .right .top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1280px) {
  .footer .container .right .top-nav {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer .container .right .top-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer .container .right .top-nav .privacy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .container .right .top-nav .privacy-nav > a {
  font-size: 18px;
  font-weight: 300;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .container .right .top-nav .privacy-nav > a {
    font-size: 14px;
  }
}
.footer .container .right .top-nav .privacy-nav > a:not(:last-of-type) {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid #2D2D2D;
}
@media (max-width: 1280px) {
  .footer .container .right .top-nav .privacy-nav > a:not(:last-of-type) {
    padding-right: 16px;
    margin-right: 16px;
  }
}
.footer .container .right .top-nav .social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  .footer .container .right .top-nav .social-nav {
    gap: 8px;
  }
}
.footer .container .right .top-nav .social-nav > img {
  width: 36px;
  height: auto;
}
@media (max-width: 1280px) {
  .footer .container .right .top-nav .social-nav > img {
    width: 16px;
  }
}
.footer .container .right .copyright {
  font-size: 1rem;
  font-weight: 300;
  color: #aaa;
  word-break: keep-all;
  text-align: right;
}
@media (max-width: 1280px) {
  .footer .container .right .copyright {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer .container .right .copyright {
    text-align: center;
  }
}/*# sourceMappingURL=common.css.map */