:root {
  --black: #020e0e;
  --pale-turquoise: #bffff1;
  --medium-spring-green: #08fa99;
  --dark-slate-grey: #012626;
}

.body {
  background-color: var(--black);
  color: var(--pale-turquoise);
  font-family: Clashgrotesk, sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1;
}

.navbar {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar-container {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.nav-link {
  color: var(--pale-turquoise);
  letter-spacing: 1px;
  align-items: center;
  padding: .5vh 1vw;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--medium-spring-green);
}

.nav-link.contact-link {
  color: var(--pale-turquoise);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(191, 255, 241, .1);
  border-radius: 100em;
  margin-left: 2vw;
  padding: 1vh 2vw;
  font-size: 1.3vw;
  font-weight: 500;
  transition: background-color .3s;
}

.nav-link.contact-link:hover {
  background-color: var(--medium-spring-green);
  color: var(--dark-slate-grey);
}

.nav-link.last {
  margin-right: 15px;
}

.brand-logo {
  align-items: center;
}

.nav-menu {
  background-color: rgba(2, 14, 14, .7);
  border-radius: 100em;
  padding: 1vw 2vw;
  display: flex;
}

.logo-image {
  width: 10vw;
}

.hero-section {
  background-color: var(--black);
  background-image: linear-gradient(rgba(2, 14, 14, .75), rgba(2, 14, 14, .75)), url('../images/seed_hero_background_hd.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 20px;
  display: flex;
}

.container.hero {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container.cta {
  min-height: auto;
}

.hero-content-block {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  display: flex;
  position: relative;
}

.hero-title {
  color: var(--medium-spring-green);
  mix-blend-mode: exclusion;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Clashgrotesk, sans-serif;
  font-size: 6vw;
  font-weight: 400;
  line-height: 1.1;
}

.icon {
  opacity: .3;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

.nav-text-icon {
  text-decoration: none;
}

.footer-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.separator-line {
  background-color: var(--medium-spring-green);
  filter: blur(6px);
  width: 100%;
  height: 1px;
}

.footer-inner {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  border: 1px solid var(--medium-spring-green);
  background-image: linear-gradient(to right, var(--black), var(--medium-spring-green));
  border-radius: 100em;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 5vw;
  display: flex;
  position: relative;
}

.footer-left-content {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.footer-right-content {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero-description-text {
  opacity: 1;
  color: var(--pale-turquoise);
  margin-bottom: 40px;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.2;
}

.text-block {
  opacity: .5;
  color: var(--pale-turquoise);
  text-decoration: none;
}

.text-block:hover {
  opacity: .5;
}

.text-block.link:hover {
  opacity: 1;
}

.text-span-bold {
  opacity: 1;
  color: var(--medium-spring-green);
  font-weight: 600;
}

.hero-button {
  background-color: var(--pale-turquoise);
  color: var(--dark-slate-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 200px;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background-color .4s;
}

.hero-button:hover {
  background-image: linear-gradient(to right, var(--medium-spring-green), var(--pale-turquoise));
}

.section-title-block {
  margin-top: 100px;
  margin-bottom: 100px;
}

.heading {
  opacity: .4;
  color: var(--medium-spring-green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
}

.description-block {
  grid-column-gap: 40px;
  grid-row-gap: 100px;
  opacity: .8;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 90%;
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  display: grid;
}

.staking-description-right-block {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  border-top: 1px solid var(--medium-spring-green);
  border-right: 1px solid var(--medium-spring-green);
  border-bottom: 1px solid var(--medium-spring-green);
  border-top-right-radius: 100em;
  border-bottom-right-radius: 100em;
  flex-direction: column;
  align-items: flex-start;
  padding: 8vh 8vw;
  display: flex;
  position: relative;
}

.staking-description-right-block.step1 {
  background-image: url('../images/web3_illustration.webp');
  background-position: 50%;
  background-size: cover;
}

.staking-description-right-block.step3 {
  background-image: url('../images/stablecoin_usdt.webp');
  background-position: 50%;
  background-size: cover;
}

.description-text {
  color: var(--pale-turquoise);
  text-align: left;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.description-text.trading {
  text-align: center;
  width: 80%;
}

.background-transition {
  background-image: linear-gradient(to top, var(--black) 20%, rgba(1, 38, 38, 0));
  width: 100%;
  height: 200px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cta-block-content {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cta-heading {
  color: var(--black);
  font-family: Clashgrotesk, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.heading-2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.cta-button {
  border: 1px solid var(--medium-spring-green);
  background-color: var(--black);
  color: var(--medium-spring-green);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100em;
  padding: 2vh 3vw;
  font-family: Clashgrotesk, sans-serif;
  font-size: 2vw;
  font-weight: 500;
  transition: all .2s ease-in;
}

.cta-button:hover {
  transform: translate(0, -1vh);
}

.section {
  flex-direction: column;
  justify-content: space-between;
  padding: 25vh 5vw 10vh;
  display: flex;
  position: relative;
}

.section.ecoproject {
  display: block;
}

.section.hero {
  min-height: 100vh;
  padding-top: 20vh;
}

.section.cta {
  min-height: 90vh;
  padding-top: 25vh;
  padding-bottom: 10vh;
}

.section.staking {
  padding-top: 50vh;
}

.section.trading {
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 25vh;
  padding-left: 0;
  padding-right: 0;
}

.section.faq {
  padding-left: 0;
  padding-right: 0;
}

.rewards-disclaimer-block {
  opacity: .7;
  padding: 1vh 3vw;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.rewards-disclaimer-block.simulator {
  margin-top: 60px;
}

.description-block-vertical {
  grid-column-gap: 16px;
  grid-row-gap: 100px;
  opacity: .8;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  display: grid;
}

.description-subtext {
  color: var(--pale-turquoise);
  text-align: left;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.description-subtext.trading {
  opacity: .7;
  color: var(--pale-turquoise);
  text-align: center;
  margin-top: 0;
  margin-bottom: 100px;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.html-embed {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-image-overlay {
  z-index: 2;
  background-image: linear-gradient(to top, var(--black) 40%, rgba(1, 38, 38, 0));
  mix-blend-mode: normal;
  width: 100%;
  height: 300px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.illustration-caption-block {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--medium-spring-green);
  text-align: center;
  background-color: rgba(191, 255, 241, .4);
  border-radius: 10px;
  width: 25%;
  padding: 40px;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  position: absolute;
  top: 40%;
  bottom: auto;
  left: 2%;
  right: auto;
}

.illustration-caption-block-2 {
  background-color: rgba(191, 255, 241, .2);
  background-image: linear-gradient(to top, var(--black), rgba(1, 38, 38, 0) 37%), url('../images/seed_wallet_element.webp');
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--medium-spring-green);
  text-align: center;
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  border-radius: 10px;
  width: 25%;
  height: 250px;
  padding: 10px 0;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  position: absolute;
  top: auto;
  bottom: 30%;
  left: auto;
  right: 2%;
}

.plan-card-block {
  background-color: #08fa99;
  border-radius: 15px;
  padding: 40px 60px;
}

.card-title {
  color: var(--black);
  margin-bottom: 20px;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.text-block-4 {
  text-transform: uppercase;
}

.card-description {
  color: var(--black);
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-size: 1rem;
}

.card-number {
  color: var(--black);
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.text-span-2 {
  font-size: 1.5rem;
}

.plan-card-block-2 {
  background-color: var(--medium-spring-green);
  border-radius: 15px;
  padding: 40px 60px;
}

.card-button {
  font-weight: 400;
}

.card-button-button {
  background-color: var(--black);
  border-radius: 200px;
  padding: 10px 40px;
  font-size: 1.5rem;
}

.card-button-button:hover {
  box-shadow: 0 0 9px rgba(2, 14, 14, .7);
}

.description-text-rewards {
  color: var(--pale-turquoise);
  text-align: center;
  width: 50%;
  margin-bottom: 100px;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.heading-3 {
  color: var(--pale-turquoise);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.explaination-banner-block {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  background-color: var(--black);
  outline-color: var(--medium-spring-green);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
  grid-template-rows: auto;
  grid-template-columns: .5fr .75fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  justify-content: space-around;
  align-items: center;
  justify-items: center;
  width: 90%;
  padding: 60px 40px;
  display: grid;
}

.explaination-text-block {
  text-align: left;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.explaination-illustration-block {
  width: 80%;
}

.eco-grid-block {
  mix-blend-mode: screen;
  background-image: url('../images/costarica_santateresa.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  grid-template-columns: 1fr .75fr;
  align-items: flex-start;
  width: 100%;
  margin-top: 60px;
  padding: 100px 60px;
  display: flex;
  position: relative;
}

.eco-description-block {
  color: var(--pale-turquoise);
  background-color: rgba(2, 14, 14, .5);
  border-radius: 10px;
  width: 60%;
  padding: 40px 60px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.eco-title-block {
  background-color: var(--medium-spring-green);
  color: var(--black);
  margin-bottom: 20px;
  padding: 40px 10px 10px;
  font-size: 1.4rem;
  font-weight: 500;
}

.language-selector-block {
  color: var(--pale-turquoise);
  justify-content: space-around;
  align-self: center;
  align-items: center;
  margin-left: 2vw;
  display: flex;
}

.language-link {
  opacity: .5;
  color: var(--pale-turquoise);
  margin-right: 0;
  padding: .5vh .5vw;
  font-size: 1.2vw;
  text-decoration: none;
  transition: opacity .2s;
}

.language-link:hover {
  opacity: 1;
  color: var(--medium-spring-green);
}

.language-link.w--current {
  opacity: 1;
}

.language-link.active.w--current {
  padding: .5vh .5vw;
  font-size: 1.2vw;
  display: block;
}

.text-span-3, .text-span-4 {
  color: var(--medium-spring-green);
  font-weight: 600;
}

.calculate-block {
  border: 1px solid var(--medium-spring-green);
  color: var(--pale-turquoise);
  background-image: linear-gradient(rgba(2, 14, 14, .75), rgba(2, 14, 14, .75)), url('../images/Transaction.webp');
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 40px 20px;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  display: flex;
}

.text-block-5 {
  margin-left: 10px;
  margin-right: 0;
}

.estimate-result-amount {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--black);
  color: var(--black);
  text-align: left;
  width: 20%;
  margin-left: 1vw;
  margin-right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 2vw;
  font-weight: 400;
}

.estimate-amount-input {
  border-bottom: 2px solid var(--black);
  color: var(--black);
  text-align: right;
  background-color: rgba(0, 0, 0, 0);
  width: 30%;
  margin-left: 1vw;
  margin-right: 1vw;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 2vw;
}

.html-embed-2 {
  margin-bottom: 0;
}

.line-2 {
  justify-content: center;
  align-items: center;
}

.text-block-11 {
  display: block;
}

.content-block {
  color: rgba(191, 255, 241, .9);
  width: 80%;
  font-size: 1rem;
  line-height: 1.3;
}

.heading-4 {
  margin-bottom: 60px;
  font-size: 3rem;
  line-height: 1;
}

.heading-5 {
  color: var(--medium-spring-green);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.back-link {
  color: var(--medium-spring-green);
  margin-top: 20px;
}

.title-block {
  margin-top: 40px;
  margin-bottom: 60px;
}

.card-subtitle {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Clashgrotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.text-block-12 {
  opacity: .6;
  margin-top: 40px;
}

.navbar-inner {
  z-index: 2;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2vh 5vw;
  display: flex;
}

.hero-title-span {
  text-decoration: underline;
}

.hero-button-block {
  z-index: 2;
  background-color: var(--medium-spring-green);
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 15vw;
  height: 15vw;
  transition: all .4s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 5%;
  left: 5%;
  right: auto;
}

.hero-button-block:hover {
  box-shadow: 0 0 20px 5px rgba(191, 255, 241, .3);
}

.hero-button-rotate {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.arrow-down {
  width: 4vw;
}

.hero-background-video {
  opacity: .5;
  mix-blend-mode: lighten;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-marquee-title-block {
  border-top: 1px solid var(--medium-spring-green);
  border-bottom: 1px solid var(--medium-spring-green);
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 3vh;
  padding-bottom: 3vh;
  display: flex;
  position: absolute;
  top: 5vh;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.section-title-text {
  color: var(--pale-turquoise);
  text-transform: uppercase;
  flex: none;
  font-size: 6vw;
  font-style: italic;
  font-weight: 600;
}

.marquee-text-inner {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: visible;
}

.footer-title-section {
  font-size: 2.5vw;
  font-weight: 500;
}

.footer-link-text {
  color: var(--medium-spring-green);
  font-size: 1.3vw;
  font-weight: 400;
  text-decoration: none;
}

.footer-link-text:hover {
  text-decoration: underline;
}

.footer-social-media-block {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.footer-social-media-item-block {
  width: 3vw;
  position: relative;
}

.cta-title {
  text-align: center;
  font-size: 4.3vw;
  font-weight: 400;
  line-height: 1;
}

.section-staking-block {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  min-height: 30vh;
  margin-bottom: 15vh;
  display: grid;
}

.staking-description-left-block {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  border-top: 1px solid var(--medium-spring-green);
  border-bottom: 1px solid var(--medium-spring-green);
  border-left: 1px solid var(--medium-spring-green);
  background-color: var(--black);
  border-top-left-radius: 100em;
  border-bottom-left-radius: 100em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8vh 8vw;
  display: flex;
}

.staking-description-left-block.step2 {
  background-image: url('../images/staking_illustration.webp');
  background-position: 50% 0;
  background-size: cover;
}

.staking-description-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1;
}

.staking-description-text {
  font-size: 1.2vw;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.8vw;
  font-weight: 300;
}

.rewards-sticky-wrapper-block {
  grid-column-gap: 15em;
  grid-row-gap: 15em;
  flex-direction: column;
  align-items: center;
  margin-top: 10vh;
  display: flex;
  position: relative;
}

.rewards-step-card {
  border: 1px solid var(--pale-turquoise);
  background-color: var(--black);
  background-image: linear-gradient(to bottom, var(--black) 4%, var(--medium-spring-green) 53%, var(--medium-spring-green));
  border-radius: 3em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  height: 40vh;
  padding: 3vh 3vw;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 10vh;
  box-shadow: 0 0 10px 5px rgba(2, 14, 14, .23);
}

.card-number-block {
  position: absolute;
  top: 10%;
  bottom: auto;
  left: 10%;
  right: auto;
}

.card-number-text {
  color: var(--pale-turquoise);
  font-size: 2vw;
  font-weight: 300;
}

.card-description-block {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.card-description-text {
  color: var(--black);
  text-align: center;
  font-size: 2vw;
  line-height: 1.2;
}

.card-description-title {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  font-size: 3vw;
  font-weight: 500;
}

.card-description-subtitle {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  font-size: 2vw;
  font-weight: 400;
}

.card-description-amount {
  color: var(--black);
  text-align: center;
  font-size: 3vw;
  font-weight: 600;
}

.card-estimate-text {
  color: var(--black);
  text-align: center;
}

.card-estimation-block {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.estimation-text {
  color: var(--black);
  font-size: 2vw;
}

.estimation-first-line, .estimation-second-line {
  justify-content: center;
  align-items: center;
  display: flex;
}

.disclaimer-text {
  color: var(--pale-turquoise);
  text-align: center;
}

.trading-grid-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.trading-item-block {
  border-top: 1px solid var(--medium-spring-green);
  border-right: 1px solid var(--medium-spring-green);
  border-bottom: 1px solid var(--medium-spring-green);
}

.section-title {
  border-top: 1px solid var(--medium-spring-green);
  text-align: left;
  padding: 3vh 5vw;
}

.section-title.faq {
  background-color: var(--medium-spring-green);
}

.section-title-alt-text {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6vw;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
}

.section-title-alt-text.faq {
  color: var(--black);
}

.trading-item-caption-block {
  background-color: var(--medium-spring-green);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3vh 3vw;
  display: flex;
}

.item-caption-text {
  color: var(--black);
  font-size: 3vw;
  font-weight: 500;
}

.faq-accordion-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.faq-accordion-item {
  border-style: none none solid;
  border-top-width: 1px;
  border-top-color: #000;
  border-bottom-width: 1px;
  border-bottom-color: var(--medium-spring-green);
  background-color: var(--black);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 1vh 3vw;
  position: relative;
}

.faq-accordion-tab-button {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1vh;
  padding-bottom: 1vh;
  display: flex;
}

.accordion-number {
  justify-content: center;
  align-items: center;
  width: 15%;
  display: flex;
}

.accordion-number-text {
  color: var(--pale-turquoise);
  text-transform: uppercase;
  font-size: 1.5vw;
  font-weight: 300;
}

.accordion-header {
  color: var(--medium-spring-green);
  text-align: left;
  width: 85%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 3vw;
  font-weight: 500;
  line-height: 1;
  transition: font-size .2s;
}

.faq-accordion-pane {
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}

.faq-accordion-pane-content {
  justify-content: flex-start;
  margin-bottom: 1vh;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5vw;
  display: flex;
}

.accordion-text {
  color: var(--pale-turquoise);
  text-align: left;
  width: 100%;
  margin-bottom: 0;
  font-size: 1.2vw;
  font-weight: 300;
  line-height: 1.1;
}

.trading-image {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .hero-content-block {
    width: 60%;
  }

  .description-block {
    grid-template-rows: auto;
  }

  .hero-title-span {
    text-decoration: underline;
  }

  .section-staking-block {
    min-height: 55vh;
  }

  .rewards-sticky-wrapper-block {
    margin-top: 30vh;
  }

  .rewards-step-card {
    height: 70vh;
    padding: 5vh 5vw;
    top: 20vh;
  }

  .card-number-block {
    margin-bottom: 20vh;
  }
}

@media screen and (max-width: 991px) {
  .navbar-container {
    z-index: 2;
    justify-content: space-around;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .nav-link {
    justify-content: center;
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 4vw;
  }

  .nav-link.contact-link {
    margin-left: auto;
    margin-right: auto;
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 4vw;
  }

  .brand-logo {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    flex: 1;
    padding: 0;
    display: flex;
  }

  .nav-menu {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(2, 14, 14, .8);
    border-radius: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    margin-left: 0;
    padding: 15vh 10vw 0;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .menu-button {
    border: 2px solid var(--medium-spring-green);
    background-color: rgba(2, 14, 14, .4);
    border-radius: 200px;
    padding: 2vw;
    box-shadow: 0 0 15px 1px rgba(8, 250, 153, .25);
  }

  .menu-button:hover {
    background-color: rgba(191, 255, 241, .2);
  }

  .menu-button.w--open {
    z-index: 2;
    background-color: var(--medium-spring-green);
  }

  .logo-image {
    width: 20vw;
  }

  .hero-content-block {
    width: 100%;
  }

  .hero-title {
    font-size: 10vw;
  }

  .menu-icon, .menu-icon:hover, .menu-icon:active {
    color: var(--pale-turquoise);
  }

  .footer-inner {
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .hero-description-text {
    font-size: 2vw;
  }

  .description-block {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .staking-description-right-block {
    border-left: 1px solid var(--medium-spring-green);
    border-top-style: none;
    border-radius: 0 0 20em 20em;
  }

  .staking-description-right-block.step1 {
    border-left: 1px solid var(--medium-spring-green);
    border-top-style: none;
    border-radius: 0 0 20em 20em;
    padding-top: 12vh;
    padding-bottom: 12vh;
  }

  .staking-description-right-block.step3 {
    padding-top: 12vh;
    padding-bottom: 12vh;
  }

  .cta-block-content {
    border-radius: 10px;
    grid-template-columns: 1fr;
  }

  .cta-button {
    font-size: 3vw;
  }

  .description-block-vertical {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    width: 100%;
  }

  .description-subtext.trading {
    margin-top: 0;
    line-height: 1.2;
  }

  .illustration-caption-block {
    padding: 20px 10px;
    top: 10%;
  }

  .illustration-caption-block-2 {
    height: 150px;
    bottom: 50%;
  }

  .description-text-rewards {
    width: 70%;
  }

  .explaination-banner-block {
    grid-template-columns: 1fr;
  }

  .eco-description-block {
    width: 100%;
  }

  .language-selector-block {
    justify-content: space-around;
    margin-top: 5vh;
    margin-left: 0;
  }

  .language-link, .language-link.active.w--current {
    padding: 2vh 2vw;
    font-size: 4vw;
  }

  .calculate-block {
    width: 100%;
    font-size: 1.6rem;
  }

  .estimate-result-amount, .estimate-amount-input {
    font-size: 2.5vw;
  }

  .line-1, .line-2 {
    font-size: 1.2rem;
  }

  .navbar-inner {
    z-index: 2;
    position: relative;
  }

  .hero-button-block {
    display: none;
  }

  .section-staking-block {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    justify-items: stretch;
  }

  .staking-description-left-block {
    border-right: 1px solid var(--medium-spring-green);
    border-bottom-style: none;
    border-radius: 20em 20em 0 0;
  }

  .staking-description-left-block.step2 {
    padding-top: 12vh;
    padding-bottom: 12vh;
  }

  .staking-description-title {
    font-size: 5vw;
  }

  .staking-description-text {
    font-size: 2vw;
  }

  .rewards-step-card {
    width: 80%;
    height: 40vh;
  }

  .card-number-block {
    top: 5%;
    left: 5%;
  }

  .card-number-text, .card-description-text {
    font-size: 3vw;
  }

  .card-description-title {
    font-size: 4vw;
  }

  .card-description-amount {
    font-size: 3.5vw;
  }

  .card-estimate-text {
    font-size: 1.4vw;
  }

  .estimation-text {
    font-size: 2.5vw;
  }

  .disclaimer-text {
    font-size: 2vw;
  }

  .trading-grid-block {
    grid-template-columns: 1fr;
  }

  .trading-item-block {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
  }

  .faq-accordion-item {
    margin-bottom: 20px;
  }

  .accordion-number-text {
    font-size: 2vw;
  }

  .accordion-header {
    font-size: 4vw;
  }

  .faq-accordion-pane {
    width: 100%;
  }

  .accordion-text {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .navbar-container {
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    display: flex;
  }

  .nav-link.contact-link {
    margin-right: 0;
    display: flex;
  }

  .menu-button {
    padding: 20px;
  }

  .container {
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-description-text {
    font-size: 3vw;
  }

  .background-transition {
    display: none;
  }

  .cta-block-content {
    grid-column-gap: 7em;
    grid-row-gap: 7em;
  }

  .heading-2 {
    font-size: 1.7rem;
  }

  .cta-button {
    font-size: 4vw;
  }

  .background-image-overlay {
    height: 100px;
  }

  .illustration-caption-block {
    width: 35%;
    top: -25%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .illustration-caption-block-2 {
    width: 35%;
    top: -25%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .explaination-banner-block {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr;
  }

  .eco-description-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .calculate-block {
    font-size: 1.2rem;
  }

  .line-1 {
    text-align: left;
    font-size: .8rem;
  }

  .line-2 {
    font-size: .8rem;
  }

  .footer-title-section {
    font-size: 3vw;
  }

  .footer-link-text {
    font-size: 2vw;
  }

  .footer-social-media-item-block {
    width: 4vw;
  }

  .cta-title {
    font-size: 5vw;
  }

  .staking-description-title {
    font-size: 6vw;
  }

  .staking-description-text {
    font-size: 3vw;
  }

  .cta-subtitle {
    font-size: 2.5vw;
  }

  .rewards-step-card {
    width: 90%;
    height: 40vh;
  }

  .card-description-block {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
  }

  .card-estimate-text {
    font-size: 2vw;
  }

  .estimation-first-line {
    justify-content: space-around;
    width: 100%;
  }

  .estimation-second-line {
    justify-content: space-around;
  }

  .faq-accordion-tab-button {
    width: 90vw;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .accordion-number-text {
    font-size: 3vw;
  }

  .accordion-header {
    font-size: 5vw;
  }

  .accordion-text {
    font-size: 3vw;
  }
}

@media screen and (max-width: 479px) {
  .navbar-container {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link {
    margin-right: 0;
    font-size: 6vw;
  }

  .nav-link.contact-link {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 6vw;
  }

  .nav-link.contact-link:hover {
    color: var(--medium-spring-green);
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-link.last {
    margin-bottom: 0;
    margin-right: 0;
  }

  .brand-logo {
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-menu {
    padding-bottom: 0;
  }

  .logo-image {
    width: 30vw;
    display: block;
  }

  .container {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-title {
    margin-bottom: 40px;
    font-size: 3.4rem;
  }

  .footer-inner {
    grid-column-gap: 10em;
    grid-row-gap: 10em;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 1vh;
    padding-bottom: 1vh;
  }

  .footer-left-content {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    text-align: center;
    align-items: center;
  }

  .footer-right-content {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    text-align: center;
    order: -1;
    align-items: center;
  }

  .hero-description-text {
    font-size: 1rem;
  }

  .text-block.link {
    margin-right: 0;
  }

  .hero-button {
    font-size: 1rem;
  }

  .section-title-block {
    text-align: center;
    font-size: 1rem;
  }

  .heading {
    font-size: 1rem;
    line-height: 1.3;
  }

  .staking-description-right-block {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .description-text {
    font-size: 1.2rem;
  }

  .description-text.trading {
    width: 90%;
  }

  .cta-block-content {
    grid-column-gap: 10em;
    grid-row-gap: 10em;
    background-image: none;
  }

  .heading-2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .cta-button {
    padding-top: 1vh;
    padding-bottom: 1vh;
  }

  .rewards-disclaimer-block {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .description-subtext.trading {
    font-size: .9rem;
    line-height: 1.3;
  }

  .background-image-overlay {
    height: 50px;
  }

  .illustration-caption-block {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    font-size: 1rem;
    position: relative;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .illustration-caption-block-2 {
    background-color: rgba(191, 255, 241, 0);
    background-image: linear-gradient(to top, var(--black), rgba(1, 38, 38, 0) 37%), url('../images/seed_wallet_element.webp');
    background-position: 0 0, 50% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    top: 0%;
  }

  .plan-card-block, .plan-card-block-2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .description-text-rewards {
    width: 90%;
    font-size: 1.2rem;
  }

  .heading-3 {
    font-size: 2.2rem;
  }

  .explaination-banner-block {
    width: 100%;
  }

  .eco-grid-block {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .language-selector-block {
    margin-right: 0;
  }

  .language-link, .language-link.active.w--current {
    font-size: 6vw;
  }

  .calculate-block {
    background-image: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url('../images/Transaction.webp');
    background-position: 0 0, 50% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 0;
    font-size: 1.2rem;
  }

  .estimate-result-amount {
    align-items: center;
    width: 100%;
    font-size: 3.5vw;
    display: flex;
  }

  .estimate-amount-input {
    font-size: 3.5vw;
  }

  .html-embed-2 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .line-1 {
    text-align: center;
    flex-direction: column;
    font-size: 1rem;
  }

  .line-2 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    font-size: 1rem;
  }

  .text-block-9 {
    display: none;
  }

  .text-block-11 {
    display: block;
  }

  .title-block {
    text-align: center;
  }

  .card-subtitle {
    line-height: 1.2;
  }

  .section-title-text {
    font-size: 9vw;
  }

  .footer-title-section {
    font-size: 5vw;
  }

  .footer-link-text {
    font-size: 4vw;
  }

  .footer-social-media-block {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .footer-social-media-item-block {
    width: 9vw;
  }

  .cta-title {
    font-size: 7vw;
  }

  .staking-description-left-block {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .staking-description-title {
    font-size: 8vw;
  }

  .staking-description-text, .cta-subtitle, .card-number-text {
    font-size: 4vw;
  }

  .card-description-block {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .card-description-text {
    font-size: 4vw;
  }

  .card-description-title {
    font-size: 6vw;
  }

  .card-description-subtitle {
    font-size: 3vw;
  }

  .card-description-amount {
    font-size: 5vw;
  }

  .card-estimate-text {
    font-size: 3vw;
  }

  .card-estimation-block {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .estimation-text {
    font-size: 3.5vw;
  }

  .estimation-second-line {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    text-align: center;
    flex-direction: column;
  }

  .disclaimer-text {
    font-size: 3vw;
  }

  .section-title-alt-text {
    font-size: 8vw;
  }

  .item-caption-text {
    font-size: 5vw;
  }

  .faq-accordion-item {
    margin-bottom: 10px;
  }

  .faq-accordion-tab-button {
    padding-left: 10px;
  }

  .accordion-number {
    width: 15%;
    padding-right: 10px;
  }

  .accordion-header {
    padding-left: 15px;
  }

  .faq-accordion-pane-content {
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-_4d17a540-a665-26d0-3ad1-76aa4939ccc6-9712ab57, #w-node-cbca25cc-8d94-7436-f9c2-988293a84a6b-9712ab57, #w-node-efea9f92-c09f-992f-bcab-d1b7260b7ff8-9712ab57, #w-node-_1840ed9f-c337-b526-09a6-fa434f9bd189-9712ab57, #w-node-_69e9a25f-2046-42e4-7448-058c53b21523-9712ab57 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Clashgrotesk';
  src: url('../fonts/ClashGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk';
  src: url('../fonts/ClashGrotesk-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk';
  src: url('../fonts/ClashGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk';
  src: url('../fonts/ClashGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk';
  src: url('../fonts/ClashGrotesk-Extralight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk';
  src: url('../fonts/ClashGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}