html {
  margin-top: 0 !important;
}
.header-space {
  height: 85px;
}
#wpadminbar {
  display: none;
}
.hero_full {
  padding: 64px 0;
  width: 100%;
  height: 927px;
  background-color: var(--light-surface-neutral-0);
  margin: 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero_full__title_shadow {
  background: rgba(0, 0, 0, 0.6);
  filter: blur(100px);
  position: absolute;
  top: 24px;
  left: calc(50% - 404px);
  width: 808px;
  height: 188px;
}
.hero_full__shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.95%, #000 84.42%);
}
.hero_full__container {
  max-width: 1440px;
  padding: 0 120px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.hero_full__container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero_full__title {
  font-family: var(--title-font-family);
  font-size: 64px;
  font-weight: 800;
  line-height: 79px;
  letter-spacing: var(--letter-spacing);
  color: var(--light-text-neutral-0);
  filter: blur(0px);
}
.hero_full__description {
  font-family: var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: var(--letter-spacing);
  color: var(--light-text-neutral-300);
  filter: blur(0px);
}
.hero_full__button {
  background-color: var(--light-element-accent-300);
  text-decoration: none;
  height: 54px;
  padding: 16px 32px 16px 32px;
  border-radius: 100px;
  border: 1px;
  font-family: var(--default-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: var(--letter-spacing);
  text-align: center;
  color: var(--light-text-neutral-600);
  transition: 0.3s;
  filter: blur(0px);
}
.hero_full_open_account {
  height: 96px;
  background-color: var(--light-surface-neutral-0);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
  padding: 24px 16px;
}
.hero_full_open_account .hero_full__button--mobile {
  border-radius: 56px;
  border: 1px solid var(--light-element-accent-300);
  background: var(--light-element-accent-300);
  font-family: var(--default-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: var(--letter-spacing);
  padding: 24px 16px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.hero_full__disclaimer {
  font-family: var(--default-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: center;
  color: var(--light-text-neutral-300);
  filter: blur(0px);
}
@media (max-width: 767px) {
  .header-space {
    height: 84px;
  }
  .hero_full {
    padding: 96px 0 16px;
    background-size: cover;
    height: calc(100vh - 180px);
  }
  .hero_full__container {
    padding: 0 24px;
    width: 100%;
  }
  .hero_full__title {
    font-size: 48px;
    line-height: 53px;
    text-align: center;
  }
  .hero_full__description {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    width: 95%;
  }
  .hero_full__button {
    display: none;
  }
  .hero_full_open_account {
    display: flex;
    z-index: 20;
  }
}
@media (max-width: 375px) {
  .hero_full__title {
    font-size: 42px;
  }
}
@media (max-width: 320px) {
  .hero_full__title {
    font-size: 36px;
  }
}
