.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 800;
}
.m-menu-background.active {
  display: block;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 2px solid black;
  z-index: 801;
  transition: 0.2s all ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .top {
  width: 100%;
  height: 50px;
  background: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.m-menu .top .m-menu-close {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.m-menu .top .m-menu-close > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
.m-menu .m-member-nav {
  width: 100%;
  padding: 5px;
  display: flex;
  height: 50px;
  flex-direction: row;
  grid-gap: 5px;
  border-bottom: 2px solid black;
  background: #f0f0f0;
}
.m-menu .m-member-nav > a {
  height: 100%;
  flex: 1 1 40%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.m-menu .m-member-nav > a:nth-of-type(1) {
  background: #000;
  color: white;
}
.m-menu .m-member-nav > a:nth-of-type(2) {
  background: white;
  color: black;
}
.m-menu .menu-wrap {
  width: 100%;
}
.m-menu .menu-wrap .m-global-nav {
  width: 100%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
}
.m-menu .menu-wrap .m-global-nav > a {
  width: 100%;
  padding: 14px 16px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: black;
  border-radius: 5px;
  background: #f0f0f0;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  z-index: 500;
  transition: 0.2s all ease-in-out;
}
.header:hover, .header.active {
  background: rgb(0, 0, 0);
}
.header .container {
  width: 100%;
  height: 100%;
  max-width: 1660px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container > a {
  display: block;
  height: 50%;
}
.header .container > a > img {
  width: auto;
  height: 100%;
}
.header .container .right {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 100px;
}
.header .container .right .h-global-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 50px;
}
.header .container .right .h-global-nav > a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
  transition: 0.2s all ease-in-out;
}
.header .container .right .h-global-nav > a:hover {
  color: #2B7FBB;
}
.header .container .right .h-member-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
}
.header .container .right .h-member-nav > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: white;
  transition: 0.2s all ease-in-out;
}
.header .container .right .h-member-nav > a:hover {
  color: #2B7FBB;
}
.header .container .m-menu-open {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.header .container .m-menu-open > svg {
  width: 100%;
  height: auto;
}

@media (max-width: 1660px) {
  .header .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header .container .right {
    grid-gap: 70px;
  }
  .header .container .right .h-global-nav {
    grid-gap: 30px;
  }
  .header .container .right .h-global-nav > a {
    font-size: 16px;
  }
  .header .container .right .h-member-nav {
    grid-gap: 16px;
  }
  .header .container .right .h-member-nav > a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  body {
    padding-top: 50px;
  }
  .header {
    height: 50px;
    background: black;
  }
  .header .container .right {
    display: none;
  }
  .header .container .m-menu-open {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.footer .top {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer .top .container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 100px;
}
.footer .top .container > ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-gap: 30px;
}
.footer .top .container > ul > li {
  flex: 0 1 45%;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.footer .top .container > ul > li > a {
  width: 100%;
  padding-bottom: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
}
.footer .top .container > ul > li > a > span {
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .top .container > ul > li > a > svg {
  width: auto;
  height: 25px;
}
.footer .top .container > ul > li > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: white;
  word-break: keep-all;
}
.footer .top .container .f-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 12px;
}
.footer .top .container .f-text > h1 {
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-align: center;
}
.footer .top .container .f-text > span {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  color: white;
  text-align: center;
}
.footer .top .container .f-text > span > br {
  display: none;
}
.footer .bot {
  width: 100%;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: rgba(0, 71, 193, 0.6666666667);
}
.footer .bot .container {
  position: relative;
  width: 100%;
  max-width: 1660px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .bot .container .left {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}
.footer .bot .container .left #f-logo {
  width: auto;
  height: 55px;
}
.footer .bot .container .left #f-logo > img {
  width: auto;
  height: 100%;
}
.footer .bot .container .left .f-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.footer .bot .container .left .f-socials > a {
  display: block;
  width: 50px;
  height: 50px;
}
.footer .bot .container .left .f-socials > a > img {
  width: 100%;
  height: auto;
}
.footer .bot .container .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.footer .bot .container .center .f-laws {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 50px;
}
.footer .bot .container .center .f-laws > a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .bot .container .center .f-infos {
  display: flex;
  flex-direction: column;
}
.footer .bot .container .center .f-infos > span {
  font-size: 18px;
  line-height: 1.6;
  color: #818181;
}
.footer .bot .container .center .f-infos .copyright {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1;
  color: #818181;
}
.footer .bot .container .right .f-global-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .bot .container .right .f-global-nav > a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
}

@media (max-width: 1660px) {
  .footer .top {
    padding: 50px 0;
  }
  .footer .top .container {
    grid-gap: 50px;
  }
  .footer .top .container > ul > li {
    grid-gap: 16px;
  }
  .footer .top .container > ul > li > a > span {
    font-size: 20px;
  }
  .footer .top .container > ul > li > a > svg {
    height: 22px;
  }
  .footer .top .container > ul > li > span {
    font-size: 16px;
  }
  .footer .top .container .f-text > h1 {
    font-size: 100px;
  }
  .footer .top .container .f-text > span {
    font-size: 24px;
  }
  .footer .bot {
    padding: 20px 0;
  }
  .footer .bot .container {
    padding: 0 16px;
  }
  .footer .bot .container .left {
    grid-gap: 20px;
  }
  .footer .bot .container .center {
    grid-gap: 30px;
  }
}
@media (max-width: 1280px) {
  .footer .top .container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .footer .top {
    padding: 30px 0;
  }
  .footer .top .container {
    grid-gap: 30px;
  }
  .footer .top .container > ul > li > a > span {
    font-size: 16px;
  }
  .footer .top .container > ul > li > a > svg {
    height: 18px;
  }
  .footer .top .container > ul > li > span {
    font-size: 14px;
  }
  .footer .top .container .f-text > h1 {
    font-size: 50px;
  }
  .footer .top .container .f-text > span {
    font-size: 20px;
  }
  .footer .bot .container .left #f-logo {
    height: 40px;
  }
  .footer .bot .container .left .f-socials > a {
    width: 35px;
    height: 35px;
  }
  .footer .bot .container .center {
    grid-gap: 20px;
  }
  .footer .bot .container .center .f-laws {
    grid-gap: 30px;
  }
  .footer .bot .container .center .f-laws > a {
    font-size: 14px;
  }
  .footer .bot .container .center .f-infos > span {
    font-size: 14px;
  }
  .footer .bot .container .center .f-infos .copyright {
    margin-top: 8px;
    font-size: 14px;
  }
  .footer .bot .container .right .f-global-nav > a {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .footer .top {
    padding: 16px 0;
  }
  .footer .top .container {
    grid-gap: 16px;
  }
  .footer .top .container > ul {
    flex-direction: column;
    grid-gap: 16px;
  }
  .footer .top .container .f-text {
    grid-gap: 10px;
  }
  .footer .top .container .f-text > h1 {
    font-size: 36px;
  }
  .footer .top .container .f-text > span {
    font-size: 16px;
  }
  .footer .bot .container {
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
  }
  .footer .bot .container .left {
    grid-gap: 14px;
    align-items: center;
  }
  .footer .bot .container .center {
    grid-gap: 14px;
  }
  .footer .bot .container .right .f-global-nav {
    grid-gap: 8px;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .footer .top .container .f-text > span > br {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */