.m-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.2s all ease-in-out;
  overflow: hidden;
  z-index: 651;
}
.m-menu.on {
  max-height: 100vh;
}
.m-menu .top {
  width: 100%;
  height: 70px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.m-menu .top .m-menu-close {
  width: 45px;
  height: 45px;
}
.m-menu .top .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.m-menu .content {
  width: 100%;
  flex: 1 1 auto;
}
.m-menu .content .m-global-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .content .m-global-nav .depth1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .content .m-global-nav .depth1 > p {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  cursor: pointer;
}
.m-menu .content .m-global-nav .depth1 > p > span {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #3D3D3D;
  cursor: pointer;
}
.m-menu .content .m-global-nav .depth1 > p > svg {
  width: auto;
  height: 100%;
  transform: rotate(0);
  fill: #3D3D3D;
  transition: 0.2s all ease-in-out;
}
.m-menu .content .m-global-nav .depth1 .depth2 {
  width: 100%;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.4s all ease-in-out;
}
.m-menu .content .m-global-nav .depth1 .depth2 > a {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #3D3D3D;
  opacity: 0;
  transition: 0.2s all ease-in-out;
}
.m-menu .content .m-global-nav .depth1.on > p > svg {
  transform: rotate(90deg);
}
.m-menu .content .m-global-nav .depth1.on .depth2 {
  max-height: 250px;
}
.m-menu .content .m-global-nav .depth1.on .depth2 > a {
  opacity: 1;
}

@media (max-width: 768px) {
  .m-menu .top {
    height: 50px;
  }
  .m-menu .top .m-menu-close {
    width: 35px;
    height: 35px;
  }
  .m-menu .content .m-global-nav .depth1 > p {
    padding: 12px 25px;
  }
  .m-menu .content .m-global-nav .depth1 > p > span {
    font-size: 25px;
  }
  .m-menu .content .m-global-nav .depth1 .depth2 > a {
    padding: 12px 25px;
    font-size: 16px;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid white;
  z-index: 500;
  transition: 0.2s all ease-in-out;
}
.header:hover, .header.active {
  background: black;
}
.header .container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container .h-logo {
  display: block;
  width: auto;
  height: 70%;
}
.header .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .container .buy-contact {
  position: absolute;
  left: 200px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 55%;
  display: block;
}
.header .container .buy-contact > img {
  width: auto;
  height: 100%;
}
.header .container .h-global-nav {
  height: 100%;
  display: flex;
}
.header .container .h-global-nav .depth1 {
  position: relative;
  height: 100%;
}
.header .container .h-global-nav .depth1 > a {
  position: relative;
  height: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: white;
  border-bottom: 0px solid white;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .depth1 > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: white;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .depth1:hover > a {
  font-weight: 600;
}
.header .container .h-global-nav .depth1:hover > a::after {
  height: 3px;
}
.header .container .m-menu-open {
  position: relative;
  display: none;
  width: 45px;
  height: 45px;
}
.header .container .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: white;
}

@media (max-width: 1620px) {
  .header .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header {
    height: 70px;
  }
  .header .container .buy-contact {
    left: 150px;
  }
  .header .container .h-global-nav {
    display: none;
  }
  .header .container .m-menu-open {
    display: block;
  }
}
@media (max-width: 768px) {
  .header {
    height: 50px;
  }
  .header .container .buy-contact {
    left: 114px;
  }
  .header .container .m-menu-open {
    width: 35px;
    height: 35px;
  }
}
.footer {
  position: relative;
  width: 100%;
  padding: 65px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.footer .container {
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  grid-gap: 150px;
}
.footer .container .left {
  height: -moz-fit-content;
  height: fit-content;
  flex: 0 0 auto;
}
.footer .container .left .f-logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
}
.footer .container .left .f-logo > img {
  width: auto;
  height: 100%;
}
.footer .container .right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  grid-gap: 120px;
}
.footer .container .right .f-global-nav {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 55px;
}
.footer .container .right .f-global-nav > a {
  font-size: 18px;
  line-height: 1;
  color: white;
}
.footer .container .right .f-info-list {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 28px 10px;
}
.footer .container .right .f-info-list .f-info-item {
  flex: 0 0 auto;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  border-right: 1px solid white;
}
.footer .container .right .f-info-list .copyright {
  flex: 1 1 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
}
.footer .scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.3);
}
.footer .scroll-top > svg {
  width: 70%;
  height: 70%;
  fill: #ccc;
}

@media (max-width: 1620px) {
  .footer .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .footer {
    padding: 30px 0;
  }
  .footer .container {
    flex-direction: column;
    grid-gap: 30px;
  }
  .footer .container .right {
    grid-gap: 30px;
  }
}
@media (max-width: 1024px) {
  .footer .container .right .f-global-nav {
    grid-gap: 30px;
  }
  .footer .container .right .f-global-nav > a {
    font-size: 16px;
  }
  .footer .container .right .f-info-list {
    grid-gap: 12px 10px;
  }
}
@media (max-width: 640px) {
  .footer .container .left .f-logo {
    height: 45px;
  }
  .footer .container .right .f-global-nav {
    grid-gap: 16px;
    flex-wrap: wrap;
  }
  .footer .container .right .f-global-nav > a {
    font-size: 12px;
  }
  .footer .container .right .f-info-list {
    grid-gap: 10px;
  }
  .footer .container .right .f-info-list .f-info-item {
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */