/*---BASE---*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
}

/* ol, ul {
	list-style: none;
} */
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: sans-serif;
  line-height: 1;
}

img {
  max-width: 100%;
}

body, body button, body input, body textarea {
  font-family: "Roboto Slab", serif;
}

body.zh, body.zh button, body.zh input, body.zh textarea {
  font-family: "Noto Sans SC", sans-serif;
}

/*---LAYOUTS---*/
body.noScroll {
  overflow-y: hidden;
}

.wrapper {
  padding: 0 25px;
  max-width: 1465px;
  margin: 0 auto;
}

.app {
  position: relative;
}

main {
  display: flex;
  justify-content: flex-end;
  min-height: 100vh;
}

main .side {
  width: 945px;
  background: rgba(27, 31, 32, 0.5);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  padding: 110px 0 70px 64px;
}

main .side .content {
  width: 551px;
  display: flex;
  flex-direction: column;
}

main .side .content .main-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 130%;
  color: #fff;
}

main .side .content .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  color: #FFFFFF;
}

main .side .content .main-title span,
main .side .content .title span {
  color: #82DBE8;
}

main .side .content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.01em;
  color: #CFD7DA;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.button {
  text-decoration: unset;
  padding: 18.5px 58px;
  border: 2px solid #82DBE8;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.3s;
}

form .step {
  width: 100%;
}

form .step:not(.active) {
  display: none;
}

form .form-row input[type=checkbox] {
  display: none;
}

form .step .form-row.radio-container {
  margin-top: 24px;
}

form .step .form-row .radio-label {
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 20px;
}

form .step .form-row .radio-wrap {
  display: flex;
  flex-direction: column;
}

form .step .form-row .radio-wrap input {
  display: none;
}

form .step .form-row .radio-wrap label {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #CFD7DA;
  display: flex;
  width: fit-content;
}

form .step .form-row .radio-wrap label::before {
  content: "";
  min-width: 22px;
  width: 22px;
  height: 22px;
  outline: 1px solid #5D696D;
  border: 5px solid transparent;
  background: transparent;
  border-radius: 100%;
  box-sizing: border-box;
  margin-right: 10px;
  cursor: pointer;
}

form .step .form-row .radio-wrap input:checked + label::before {
  outline: 1px solid #82DBE8;
  background: #82DBE8;
  border: 5px solid #131719;
}

form .form-row .checkbox-wrap label {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #CFD7DA;
  display: flex;
  align-items: center;
  width: fit-content;
}

form .form-row .checkbox-wrap label::before {
  content: "";
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-position: center;
  background-color: #82DBE8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

form .form-row .checkbox-wrap input:checked + label::before {
  background-image: url("../img/svg/check.svg");
  background-repeat: no-repeat;
}

form .form-row .error {
  margin: -4px 0;
  align-items: center;
}

form .form-row .error:not(.active) {
  display: none;
}

form .form-row .error {
  display: flex;
}

form .form-row.error .error {
  display: flex;
}

form .form-row .error p {
  margin-left: 4px;
  color: #EB5757;
  line-height: 120%;
}

.button.primary,
.button.secondary:hover {
  background: #82DBE8;
  color: #0F1517;
}

form button[disabled] {
  color: #5D696D !important;
  border-color: #5D696D !important;
  background: transparent !important;
  cursor: default !important;
}

.button.secondary,
.button.primary:hover {
  background: transparent;
  color: #82DBE8;
}

.button.disabled,
.button.disabled:hover {
  background: transparent;
  color: #5D696D;
  border-color: #5D696D;
  cursor: not-allowed;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.form-row label {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #CFD7DA;
}

.form-row input,
.form-row textarea {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #a5a5a5;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 18.5px 28px;
  width: 100%;
  background: transparent;
  outline: unset;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #a5a5a5;
}

.form-row textarea {
  resize: none;
  height: 100px;
  transition: 0.3s;
  overflow: hidden;
}

.form-row textarea.active {
  height: 90px;
  min-height: 90px;
}

@media (max-width: 1280px) {
  main .side {
    width: 700px;
  }
}
@media (max-width: 769px) {
  main .side {
    width: 100%;
    padding: 16px;
    backdrop-filter: blur(3.5px);
  }

  main {
    padding: 148px 15px 190px 15px;
  }

  main .side .content .main-title,
main .side .content .title {
    font-size: 24px;
  }

  main .side .content p {
    font-size: 14px;
  }

  form {
    gap: 16px;
  }

  form button {
    padding: 13.5px 58px;
    width: 100%;
  }

  .form-row {
    gap: 8px;
  }

  .form-row label {
    font-size: 14px;
  }

  .form-row input,
.form-row textarea {
    font-size: 14px;
    padding: 14.5px 28px;
  }

  form .step .form-row.radio-container {
    margin-top: 20px;
  }

  form .step .form-row .radio-label {
    margin-bottom: 12px;
  }

  form .form-row .error {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  main {
    padding: 106px 15px 190px 15px;
  }
}
/*---HEADER---*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 999;
}

header .wrapper {
  max-width: unset;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo-wrap {
  padding-left: calc((100vw - 1465px) / 2);
}

header .logo-wrap a {
  margin-left: 25px;
}

header .wrapper nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 64px;
  width: 945px;
  padding-right: 25px;
  position: relative;
  padding-left: 64px;
}

header .wrapper nav::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 36px;
  background: #82DBE8;
  border-radius: 0 6px 6px 0;
}

header .wrapper nav a {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  text-decoration: unset;
  text-transform: uppercase;
  transition: 0.2s;
}

body.zh header .wrapper nav a {
  font-weight: 700;
}

header .wrapper nav a.mob {
  display: none;
}

header .wrapper nav a.active,
header .wrapper nav a:hover {
  color: #82DBE8;
}

header .button-nav {
  display: none;
}

@media (max-width: 1280px) {
  header .wrapper nav {
    gap: 48px;
    width: 700px;
    padding-right: 25px;
    padding-left: 48px;
  }
}
@media (max-width: 940px) {
  header .wrapper nav::after {
    display: none;
  }

  header .wrapper nav {
    gap: 24px;
    width: auto;
    padding-right: 25px;
    padding-left: 24px;
  }
}
@media (max-width: 769px) {
  header {
    padding: 20px 15px;
  }

  header .logo-wrap a {
    margin: unset;
  }

  header .logo-wrap {
    padding: unset;
  }

  header .button-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: 0.2s;
    background: #82DBE8;
    backdrop-filter: blur(2.5px);
    border-radius: 5px;
    cursor: pointer;
  }

  header .button-nav::after {
    content: "";
    width: 28px;
    height: 28px;
    background: url("../img/svg/menu.svg");
  }

  header .button-nav.active {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
  }

  header .button-nav.active::after {
    background: url("../img/svg/close.svg");
  }

  header .menu .items {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #0F1517;
    z-index: -1;
    padding-top: 222px;
    flex-direction: column;
    visibility: hidden;
  }

  header .menu .button-nav.active + .items {
    visibility: visible;
  }

  header .wrapper nav a.mob {
    display: inline;
  }

  header .wrapper nav a.desc {
    display: none;
  }

  header .wrapper nav {
    gap: 36px;
  }

  header .wrapper nav a {
    transition: unset;
  }
}
@media (max-width: 480px) {
  header .logo-wrap img {
    width: 103px;
    height: 40px;
  }
}
/*---MODULES---*/
/*---FOOTER---*/
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

footer .footer-content {
  display: flex;
  justify-content: center;
  padding: 22.5px 0;
  gap: 45px;
}

footer .footer-content > * {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  text-decoration: unset;
  position: relative;
  font-family: "Noto Sans SC", sans-serif;
}

footer .footer-content a {
  transition: 0.2s;
}

footer .footer-content a:hover {
  color: #82DBE8;
}

footer .footer-content .translate-button {
  color: #82DBE8;
  cursor: pointer;
}

body.zh footer .footer-content .translate-button {
  font-family: "Roboto Slab", serif;
}

footer .footer-content > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

footer .footer-content .reg {
  padding-left: 25px;
}

footer .footer-content .reg::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/gongan.png");
}

@media (max-width: 940px) {
  footer .footer-content {
    gap: 21px;
  }

  footer .footer-content > *:not(:last-child)::after {
    right: -10px;
  }
}
@media (max-width: 769px) {
  footer {
    background: #000;
  }

  footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
  }

  footer .footer-content > * {
    font-weight: 500;
    font-size: 14px;
  }

  footer .footer-content .reg::before {
    width: 16px;
    height: 16px;
    background-size: cover;
  }

  footer .footer-content .reg {
    padding-left: 21px;
  }

  footer .footer-content > *:not(:last-child)::after {
    display: none;
  }
}
/*---OTHER_PAGES---*/