@charset "UTF-8";
@import url("fonts.css");
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-green-gradient: linear-gradient(91deg, #b9fe65 0.77%, #a9ff41 97.52%);
  --color-green: #b9fe65;
  --color-gray: #f5f5f5;
  --policy-gray: --policy-gray;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: unset;
  outline: unset;
  text-decoration: unset;
  color: unset;
  background: unset;
}

h1,
h2,
.hform,
h1 span,
h2 span,
.hform span {
  font-family: "Helvetica Neue Condensed Bold", system-ui, sans-serif;
}

html,
button,
input,
textarea {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

header,
main,
footer {
  width: 100vw;
}

section {
  width: 100%;
  scroll-margin-top: 70px;
}

a {
  cursor: pointer;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 50px 160px 100px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .container {
    padding: 70px 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 50px 24px;
  }
}

header {
  width: 100%;
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 99999;
  height: 70px;
}
header .container {
  padding: 0 24px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .container .logo {
  height: 19px;
}
header .container .mobile-menu-wrapper {
  display: none;
}
header .container .mobile-menu-wrapper .burger {
  position: fixed;
  top: 10px;
  left: 160px;
  width: 40px;
  height: 40px;
  z-index: 8;
  cursor: pointer;
  display: block;
  transition: opacity 0.3s ease;
}
header .container .mobile-menu-wrapper .burger:hover {
  opacity: 0.8;
}
header .container .mobile-menu-wrapper .mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 9;
}
header .container .mobile-menu-wrapper .mobile-nav .nav_item {
  color: #ffffff;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header .container .mobile-menu-wrapper .mobile-nav .nav_item:after {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  width: 0%;
  background: linear-gradient(91deg, #b9fe65 0.77%, #a9ff41 97.52%);
  bottom: -5px;
  transition: 0.7s ease;
}
header .container .mobile-menu-wrapper .mobile-nav .nav_item.active:after, header .container .mobile-menu-wrapper .mobile-nav .nav_item:hover:after {
  width: 100%;
  transition: 0.7s ease;
}
header .container .mobile-menu-wrapper .mobile-nav .WeChatBtn {
  display: none;
}
header .container .mobile-menu-wrapper .mobile-nav .cross {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease;
}
header .container .mobile-menu-wrapper .mobile-nav .cross:hover {
  opacity: 0.8;
}
header .container .mobile-menu-wrapper .mobile-nav.open {
  right: 0;
}
header .container .mobile-menu-wrapper .mobile-nav.open .cross {
  display: block;
}
header .container .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
header .container .nav .nav_item {
  padding: 10px;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
header .container .nav .nav_item:after {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  width: 0%;
  background: linear-gradient(91deg, #b9fe65 0.77%, #a9ff41 97.52%);
  bottom: -5px;
  transition: 0.7s ease;
}
header .container .nav .nav_item.active:after, header .container .nav .nav_item:hover:after {
  width: 100%;
  transition: 0.7s ease;
}
header .container .WeChatBtn {
  height: 41px;
  width: 159px;
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease, background-color 0.3s ease;
}
header .container .WeChatBtn:hover {
  color: #000000;
  background-color: #ffffff;
  transition: 0.7s ease;
}
@media (max-width: 1024px) {
  header .container .mobile-menu-wrapper {
    display: block;
  }
  header .container .nav {
    display: none;
  }
}
@media (max-width: 575px) {
  header .container .WeChatBtn {
    display: none;
  }
  header .container .mobile-menu-wrapper .burger {
    left: auto;
    right: 24px;
  }
  header .container .mobile-menu-wrapper .mobile-nav .WeChatBtn {
    display: flex;
  }
}

.breadcrumbs {
  font-size: 16px;
  color: #7c7c7c;
  padding-bottom: 33px;
}

h1 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.34px;
  color: #000000;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  h1 {
    padding-bottom: 20px;
  }
}

.title,
.text,
.subtext,
.block {
  width: 100%;
}

.text,
.subtext,
li {
  font-size: 16px;
  font-weight: 400;
  color: #7c7c7c;
  line-height: 120%;
}

.block {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block .title {
  font-size: 20px;
  font-weight: 700;
}
.block ol {
  padding-left: 20px;
}

.custom-list {
  list-style-type: none;
}
.custom-list li {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-list .list-title {
  position: relative;
  margin-left: 20px;
}
.custom-list .list-title::before {
  content: "•";
  color: #7c7c7c;
  position: absolute;
  left: -15px;
}
.custom-list .list-text {
  color: #7c7c7c;
}

footer {
  background: #000000;
}
footer .container {
  padding: 40px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer .container .left,
footer .container .right {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
}
footer .container .left {
  width: min(386px, 100%);
}
footer .container .left .info {
  width: 100%;
  line-height: 120%;
}
footer .container .left .legal p {
  opacity: 0.7;
  transition: 0.7s ease;
}
footer .container .left .legal p:hover {
  opacity: 1;
  color: #b9fe65;
}
footer .container .left .legal .agree {
  margin-bottom: 8px;
}
footer .container .right {
  width: min(295px, 100%);
  justify-content: space-between;
}
footer .container .right p {
  text-align: right;
}
footer .container .right button {
  width: min(295px, 100%);
  height: 40px;
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  transition: 0.7s ease;
}
footer .container .right button:hover {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  footer .container .right p {
    text-align: left;
  }
}

/*# sourceMappingURL=styles.css.map */
