body {
  padding-top: 120px;
}

@media (max-width: 1280px) {
  body {
    padding-top: 90px;
  }
}
.m-menu-outside {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 600;
  transition: 0.2s all ease-in-out;
}
.m-menu-outside.active {
  display: block;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 320px;
  background: #fafafa;
  z-index: 600;
  transition: 0.2s all ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .container {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
}
.m-menu .container .m-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.m-menu .container .m-top .m-menu-close {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.m-menu .container .m-top .m-menu-close > svg {
  width: 100%;
  height: 100%;
}
.m-menu .container .m-menu-global-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
}
.m-menu .container .m-menu-global-nav > a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #3D3D3D;
  background: transparent;
  border-radius: 5px;
  transition: 0.2s all ease-in-out;
}
.m-menu .container .m-menu-global-nav > a:hover {
  color: white;
  background: #d32279;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 6px -2px rgba(0, 0, 0, 0.3);
  z-index: 500;
}

.header-top {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: black;
}
.header-top .container {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header-top .container .h-mb-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.header-top .container .h-mb-nav > a {
  font-size: 14px;
  color: #aaa;
  line-height: 1;
}
.header-top .container .h-mb-nav .devide {
  position: relative;
  display: block;
  width: 1px;
  height: 12px;
  background: #aaa;
}

@media (max-width: 1600px) {
  .header-top .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header-top {
    height: 30px;
  }
  .header-top .container .h-mb-nav {
    grid-gap: 8px;
    font-size: 12px;
  }
}
.header-bottom {
  width: 100%;
  height: 75px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #d32279;
}
.header-bottom .container {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header-bottom .container .h-logo {
  width: auto;
  height: 70%;
}
.header-bottom .container .h-logo > img {
  height: 100%;
}
.header-bottom .container .h-global-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 80px;
}
.header-bottom .container .h-global-nav > a {
  font-size: 20px;
  line-height: 1;
  color: white;
}
.header-bottom .container .mobile-menu-wrap {
  display: none;
}

@media (max-width: 1600px) {
  .header-bottom .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header-bottom {
    height: 60px;
  }
  .header-bottom .container .h-global-nav {
    grid-gap: 40px;
  }
  .header-bottom .container .h-global-nav > a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .header-bottom .container .h-global-nav {
    display: none;
  }
  .header-bottom .container .mobile-menu-wrap {
    height: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 16px;
  }
  .header-bottom .container .mobile-menu-wrap .m-menu-open {
    width: auto;
    height: 100%;
  }
  .header-bottom .container .mobile-menu-wrap .m-menu-open > svg {
    height: 100%;
    width: auto;
    fill: white;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-top {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: black;
}
.footer-top .container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  grid-gap: 100px;
}
.footer-top .container .f-left {
  display: flex;
  flex-direction: column;
  grid-gap: 45px;
}
.footer-top .container .f-left .f-logo {
  width: auto;
  height: 60px;
}
.footer-top .container .f-left .f-logo > img {
  width: auto;
  height: 100%;
}
.footer-top .container .f-left .f-informations {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.footer-top .container .f-left .f-informations > li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #aaa;
}
.footer-top .container .f-left .f-policy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 8px;
}
.footer-top .container .f-left .f-policy-nav > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #aaa;
}
.footer-top .container .f-left .f-policy-nav .vetical-devide {
  display: block;
  width: 1px;
  height: 14px;
  background: #aaa;
}
.footer-top .container .f-right {
  flex: 0 0 50%;
}
.footer-top .container .f-right .f-services {
  width: 100%;
  display: flex;
  flex-direction: row;
  grid-gap: 40px;
}
.footer-top .container .f-right .f-services > li {
  padding-bottom: 30px;
  display: flex;
  flex: 1 1 40%;
  flex-direction: column;
  border-bottom: 1px solid #aaa;
}
.footer-top .container .f-right .f-services > li .name {
  position: relative;
  padding-top: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #aaa;
}
.footer-top .container .f-right .f-services > li .name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background: #aaa;
}
.footer-top .container .f-right .f-services > li > strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #ddd;
}
.footer-top .container .f-right .f-services > li > strong:not(:last-child) {
  margin-bottom: 15px;
}
.footer-top .container .f-right .f-services > li > p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}
.footer-top .container .f-right .f-services > li > span {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ddd;
}

@media (max-width: 1600px) {
  .footer-top .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .footer-top .container {
    grid-gap: 50px;
  }
}
@media (max-width: 1024px) {
  .footer-top {
    height: auto;
    padding: 30px 0;
  }
  .footer-top .container {
    flex-direction: column-reverse;
    align-items: center;
    grid-gap: 20px;
  }
  .footer-top .container .f-left {
    grid-gap: 25px;
    align-items: center;
  }
  .footer-top .container .f-left .f-informations {
    align-items: center;
  }
  .footer-top .container .f-right {
    width: 100%;
  }
  .footer-top .container .f-right .f-services > li {
    padding-bottom: 16px;
  }
  .footer-top .container .f-right .f-services > li .name {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer-top .container .f-right .f-services > li > strong {
    font-size: 30px;
  }
  .footer-top .container .f-right .f-services > li > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer-top .container .f-left .f-logo {
    height: 45px;
  }
  .footer-top .container .f-left .f-informations > li {
    font-size: 12px;
  }
  .footer-top .container .f-left .f-policy-nav > a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer-top .container .f-right .f-services {
    flex-direction: column;
    grid-gap: 20px;
  }
  .footer-top .container .f-right .f-services > li .name {
    font-size: 16px;
    padding-top: 6px;
    margin-bottom: 12px;
  }
  .footer-top .container .f-right .f-services > li .name::before {
    width: 20px;
  }
  .footer-top .container .f-right .f-services > li > strong {
    font-size: 24px;
  }
  .footer-top .container .f-right .f-services > li > strong:not(:last-child) {
    margin-bottom: 12px;
  }
  .footer-top .container .f-right .f-services > li > span {
    font-size: 14px;
  }
}
.footer-bottom {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #232323;
}
.footer-bottom .container {
  max-width: 1600px;
}
.footer-bottom .container .copyright {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #aaa;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    height: 35px;
  }
  .footer-bottom .container .copyright {
    font-size: 14px;
  }
}
.scroll-top-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  border: 1px solid #aaa;
  z-index: 200;
}
.scroll-top-btn > svg {
  width: auto;
  height: 50%;
}/*# sourceMappingURL=common.css.map */