.m-menu-background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(150, 150, 150, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: -1;
  opacity: 0;
  transition: 0.2s all ease-in-out;
}
.m-menu-background.active {
  opacity: 1;
  z-index: 700;
}

.m-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: 701;
  transition: 0.2s all ease-in-out;
}
.m-menu .top {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.m-menu .top .m-menu-close {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 500px;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
}
.m-menu .top .m-menu-close > svg {
  width: 60%;
  height: 60%;
}
.m-menu .m-global-depth1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-global-depth1 .depth1-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-weight: 600;
  line-height: 1;
  color: black;
  border-bottom: 1px solid #f0f0f0;
}
.m-menu .m-global-depth1 .depth1-item > span {
  display: inline-block;
  width: 100%;
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: black;
  text-align: center;
  background: white;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-global-depth1 .depth1-item.active > span, .m-menu .m-global-depth1 .depth1-item:hover > span {
  color: white;
  background: #38059E;
}
.m-menu .m-global-depth1 .depth1-item.active .m-global-depth2 {
  max-height: 500px;
}
.m-menu .m-global-depth1 .depth1-item .m-global-depth2 {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-global-depth1 .depth1-item .m-global-depth2 > a {
  display: inline-block;
  width: 100%;
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #38059E;
  background: white;
}
.m-menu .m-global-depth1 > a {
  display: inline-block;
  width: 100%;
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: black;
  text-align: center;
  background: white;
  transition: 0.2s all ease-in-out;
  border-bottom: 1px solid #f0f0f0;
}
.m-menu .m-global-depth1 > a:hover {
  color: white;
  background: #38059E;
}

@media (max-width: 768px) {
  .m-menu.active {
    transform: rotateX(0);
  }
}
@media (max-width: 480px) {
  .m-menu .m-global-depth1 .depth1-item > span {
    padding: 14px;
    font-size: 14px;
  }
  .m-menu .m-global-depth1 .depth1-item .m-global-depth2 > a {
    padding: 12.8px;
    font-size: 12px;
  }
  .m-menu .m-global-depth1 > a {
    padding: 14px;
    font-size: 14px;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: 0.2s all ease-in-out;
  z-index: 480;
}
.header:hover, .header.active {
  background: white;
  border-bottom: 1px solid #f0f0f0;
}
.header:hover .container .h-logo > span, .header.active .container .h-logo > span {
  color: #38059E;
}
.header .container {
  width: 100%;
  height: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header .container .h-logo {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 10px;
}
.header .container .h-logo > span {
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  color: black;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav {
  height: 100%;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.header .container .h-global-nav > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: black;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav > a:hover {
  color: #38059E;
}
.header .container .h-global-nav > a .lang-wrap {
  display: flex;
  flex-direction: row;
  grid-gap: 3px;
  align-items: center;
}
.header .container .h-global-nav > a .lang-wrap > svg {
  width: auto;
  height: 100%;
}
.header .container .h-global-nav > a .lang-wrap > span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.header .container .m-head-wrap {
  display: none;
  flex-direction: row;
  align-items: center;
  grid-gap: 20px;
}
.header .container .m-head-wrap > a {
  height: 30px;
  padding: 4px 0;
  display: flex;
  flex-direction: row;
  grid-gap: 3px;
  align-items: center;
}
.header .container .m-head-wrap > a > svg {
  width: auto;
  height: 100%;
}
.header .container .m-head-wrap > a > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: black;
}
.header .container .m-head-wrap .m-menu-open {
  width: 30px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .container .m-head-wrap .m-menu-open > svg {
  width: 100%;
  height: auto;
}

@media (max-width: 1620px) {
  .header .container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .header {
    height: 100px;
    background: white;
  }
  .header .container .h-logo > span {
    font-size: 20px;
    color: #38059E;
  }
  .header .container .h-global-nav {
    grid-gap: 50px;
  }
  .header .container .h-global-nav > a {
    font-size: 16px;
  }
  .header .container .h-global-nav > a .lang-wrap > svg {
    height: 20px;
  }
  .header .container .h-global-nav > a .lang-wrap > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  .header .container .h-logo > span {
    font-size: 16px;
  }
  .header .container .h-global-nav {
    display: none;
  }
  .header .container .m-head-wrap {
    display: flex;
  }
  .header .container .m-head-wrap > a > span {
    font-size: 16px;
  }
}
.footer {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.footer .container {
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .container .left {
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.footer .container .left .f-logo {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.footer .container .left .f-logo > span {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.footer .container .left .copyrights {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.footer .container .left .copyrights > a, .footer .container .left .copyrights > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .container .right {
  display: flex;
  flex-direction: row;
  grid-gap: 100px;
}
.footer .container .right > ul {
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.footer .container .right > ul > li {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.footer .container .right > ul > li > strong {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .container .right > ul > li > span {
  font-size: 18px;
  line-height: 1;
  color: white;
}

@media (max-width: 1620px) {
  .footer .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    grid-gap: 30px;
  }
  .footer .container .left {
    grid-gap: 20px;
  }
  .footer .container .left .f-logo {
    flex-direction: row;
  }
  .footer .container .left .f-logo > span {
    font-size: 24px;
  }
  .footer .container .right > ul > li > strong {
    font-size: 16px;
  }
  .footer .container .right > ul > li > span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .container .right {
    justify-content: space-between;
    grid-gap: unset;
  }
}
.gotoUp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #7D0B98;
  z-index: 50;
}

@media (max-width: 768px) {
  .gotoUp {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=common.css.map */