:root {
  --black: #0f0f0f;
  --white: white;
  --light-grey: #929292;
  --grey: #323232;
  --soft-grey: silver;
  --back-grey: #f7f9fa;
  --dark-grey: #151616;
  --blue: #2081e2;
  --dark-blue: #0259b1;
  --silver: #dfdfdf;
  --background-blue: #070d2f;
  --background-pink: #e994d7;
  --gradient-blue: #1f425f;
  --gradient-pink: #ee3f7b80;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--black);
  color: var(--white);
  letter-spacing: -.2px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.25em;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4em;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  color: var(--light-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

h6 {
  color: var(--light-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 20px;
}

li {
  opacity: .9;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 400;
  display: block;
}

em {
  letter-spacing: -.5px;
  font-family: Noto Serif, sans-serif;
  font-style: italic;
}

blockquote {
  border-left: 5px solid var(--grey);
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.4em;
}

figcaption {
  text-align: center;
  margin-top: 16px;
}

.wrapper {
  width: 100%;
  min-height: 80vh;
}

.section {
  z-index: 0;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.section.large {
  padding-top: 130px;
  padding-bottom: 130px;
  overflow: hidden;
}

.section.hero {
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex;
  overflow: hidden;
}

.section.hero-gradient {
  background-image: radial-gradient(circle at 0%, #25b57254, #0000 65%);
  justify-content: center;
  align-items: flex-end;
  height: 105vh;
  margin-top: -120px;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  overflow: hidden;
}

.section.grey {
  background-color: var(--grey);
  color: #b2b2b2;
}

.button {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 32px;
  flex: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  transition: border-color .2s, color .2s, background-color .2s;
}

.button:hover {
  background-color: var(--soft-grey);
}

.button:active {
  background-color: #a7c902;
  transform: translate(0, 3px);
  box-shadow: 0 0 #20202000;
}

.button.no-margin {
  margin-left: 0;
  margin-right: 0;
}

.button.outline {
  box-shadow: inset 0 0 0 1px var(--back-grey);
  color: var(--back-grey);
  background-color: #0000;
}

.button.outline:hover {
  background-color: var(--white);
  color: var(--black);
}

.button.outline:active {
  background-color: #cff800;
  box-shadow: inset 0 0 0 2px #cff800;
}

.button.grey {
  background-color: var(--grey);
  box-shadow: none;
  color: var(--soft-grey);
}

.button.grey:hover {
  background-color: var(--light-grey);
  color: var(--white);
}

.button.grey:active {
  background-color: var(--soft-grey);
  color: var(--dark-grey);
}

.button.opensea {
  background-color: var(--blue);
  color: var(--white);
  background-image: url('../images/Unbenannt-1.png');
  background-position: 26px 46%;
  background-repeat: no-repeat;
  background-size: 22px;
  padding-left: 58px;
}

.button.opensea:hover {
  background-color: var(--dark-blue);
}

.spacer {
  background-color: var(--silver);
  height: 48px;
}

.spacer._64 {
  background-color: #0000;
  width: 64px;
  height: 64px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._48 {
  background-color: #0000;
  border-radius: 6px;
  width: 48px;
}

.spacer._128 {
  background-color: #0000;
  width: 128px;
  height: 128px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._96 {
  background-color: #5eb2f400;
  width: 96px;
  height: 96px;
}

.spacer._32 {
  background-color: #0000;
  height: 32px;
}

.spacer._16 {
  background-color: #0000;
  flex: none;
  width: 16px;
  height: 16px;
}

.text-box {
  max-width: 650px;
  position: relative;
}

.text-box._550px {
  max-width: 550px;
}

.text-box._500px {
  max-width: 500px;
}

.text-box.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-box.center-align {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-box._450px {
  max-width: 450px;
}

.text-box._400px {
  max-width: 400px;
}

.text-box._320px {
  max-width: 320px;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-top {
  align-items: flex-start;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
}

.color-block {
  background-color: var(--black);
  border: 1px solid #000;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.light-blue {
  background-color: #cff800;
  border-style: none;
}

.color-block.grey {
  background-color: var(--grey);
}

.color-block.light-grey {
  background-color: var(--light-grey);
}

.color-block.dark-grey {
  background-color: var(--dark-grey);
}

.color-block.back-grey {
  border: 1px solid var(--silver);
  background-color: var(--back-grey);
}

.color-block.soft-grey {
  background-color: var(--soft-grey);
}

.color-block.silver {
  background-color: var(--silver);
}

.color-block.white {
  border: 1px solid var(--silver);
  background-color: #fff;
}

.color-block.hard-blue {
  background-color: #003b77;
}

.color-block.dark-blue {
  background-color: var(--dark-blue);
}

.color-block.blue {
  background-color: var(--blue);
}

.color-block.light-blue {
  background-color: #9dcbf8;
}

.color-block.soft-blue {
  background-color: #dfeeff;
}

.color-block.faint-blue {
  background-color: #f1f8ff;
}

.white {
  color: #fff;
  font-weight: 300;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-4 {
  width: 33.33%;
}

.column.desk-9 {
  width: 75%;
}

.ds-block {
  margin-bottom: 32px;
  font-size: 18px;
}

.horizontal-line {
  background-color: var(--silver);
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.rich-text {
  text-align: left;
}

.rich-text img {
  border-radius: 5px;
}

.rich-text h4, .rich-text h3 {
  margin-top: 24px;
}

.nav-content {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 24px;
  display: flex;
  position: relative;
}

.nav-cta-button-container {
  align-items: center;
  display: flex;
}

.menu-button.w--open {
  color: #096ad033;
  background-color: #fff;
}

.nav-bar {
  z-index: 200;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0f0f0f33;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
}

.logo-div {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  display: block;
}

.nav-logo {
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .75;
}

.footer-logo {
  margin-bottom: 20px;
  display: block;
}

.footer-link {
  color: var(--light-grey);
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  opacity: 1;
  color: var(--white);
}

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

.footer-links-container {
  flex-direction: column;
  display: flex;
}

.footer {
  z-index: 0;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.paragraph {
  font-size: 18px;
}

.paragraph.small {
  opacity: .75;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.large {
  font-size: 20px;
  line-height: 1.4em;
}

.paragraph.large.grey {
  color: var(--soft-grey);
}

.paragraph.medium {
  font-size: 16px;
}

.paragraph.biggger {
  font-size: 22px;
  font-weight: 600;
}

.paragraph.center {
  text-align: center;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.nav-menu {
  text-align: center;
  flex: 1;
  padding-right: 12px;
}

.ds-menu-brand {
  width: 140px;
  margin-bottom: 50px;
  margin-left: 30px;
}

.ds-menu {
  width: 100%;
}

.ds-menu-link {
  width: 100%;
  color: var(--white);
  border-left: 4px solid #0000;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
}

.ds-menu-link:hover {
  color: #9dcbf8;
}

.ds-menu-link.w--current {
  color: var(--white);
  background-color: #ffffff0d;
  padding-right: 0;
  font-weight: 500;
}

.ds-nav {
  background-color: #070d2f;
  background-image: radial-gradient(circle at 0 80%, #1f425f, #070d2f);
  width: 240px;
  padding-top: 40px;
  position: fixed;
  inset: 0% auto 0% 0%;
  overflow: auto;
}

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 24px;
}

.radio-button {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: var(--grey);
  background-color: var(--back-grey);
}

.form-error {
  background-color: var(--grey);
  border-radius: 6px;
  padding: 16px;
}

.form {
  margin-bottom: 8px;
}

.form-checkbox {
  margin-bottom: 16px;
  padding-left: 24px;
}

.check-box {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  border-color: var(--grey);
  background-color: var(--grey);
  background-position: 50%;
  background-size: 16px;
}

.ds-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.form-success {
  background-color: var(--dark-grey);
  border-radius: 4px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.ds-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.header {
  background-color: var(--dark-grey);
}

.ds-title {
  color: var(--soft-grey);
  margin-bottom: 8px;
}

.ds-section-header {
  margin-bottom: 50px;
}

.text-input {
  border: 1px solid var(--grey);
  background-color: var(--dark-grey);
  height: 48px;
  color: var(--white);
  border-radius: 6px;
  margin-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  line-height: 1.4px;
  transition: border-color .2s;
}

.text-input:focus {
  border-color: var(--light-grey);
}

.text-input::placeholder {
  color: var(--grey);
}

.text-area {
  border: 1px solid var(--grey);
  background-color: var(--dark-grey);
  min-height: 120px;
  color: var(--back-grey);
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 16px;
  font-size: 15px;
  transition: background-color .2s;
}

.text-area:focus {
  border-color: var(--light-grey);
}

.text-area::placeholder {
  color: var(--grey);
}

.tabs-menu {
  justify-content: center;
  width: 100%;
  margin-bottom: 48px;
  display: flex;
}

.vertical-tab {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tab-link {
  border-bottom: 2px solid var(--grey);
  opacity: .5;
  color: var(--white);
  text-align: center;
  background-color: #0000;
  flex: 0 auto;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 20px;
  font-size: 18px;
  transition: opacity .2s, border-color .2s, color .2s;
}

.tab-link:hover {
  border-bottom-color: var(--grey);
  opacity: .7;
}

.tab-link.w--current {
  border-bottom-color: var(--back-grey);
  opacity: 1;
  color: var(--white);
  background-color: #0000;
  font-weight: 600;
}

.question {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  display: flex;
}

.question.wrap {
  flex-flow: column;
}

.answer {
  max-width: 700px;
  display: block;
  overflow: hidden;
}

.question-container {
  border-bottom: 1px solid var(--soft-grey);
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  padding-top: 24px;
  padding-bottom: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.question-container.nft {
  display: none;
}

.question-arrow-icon {
  width: 24px;
  margin-top: 4px;
  margin-left: 24px;
  margin-right: 0;
}

.ds-description {
  max-width: 400px;
  color: var(--light-grey);
}

.questions {
  border-radius: 4px;
  width: 100%;
}

.nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 50px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.error-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.logo {
  width: 185px;
  display: block;
}

.nav-link {
  opacity: .5;
  color: var(--white);
  cursor: pointer;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .2s, opacity .2s, color .2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:active {
  color: var(--dark-blue);
}

.nav-link.w--current {
  opacity: 1;
  color: var(--white);
}

.nav-link.button {
  background-color: var(--white);
  opacity: 1;
  color: var(--black);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 32px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow .2s, background-color .2s, transform .2s, color .2s;
}

.nav-link.button:hover {
  background-color: var(--soft-grey);
}

.nav-link.button:active {
  box-shadow: 0 0 0 0 var(--silver);
  background-color: #003b77;
  transform: translate(0, 2px);
}

.form-dropdown {
  border: 1px solid var(--grey);
  background-color: var(--dark-grey);
  width: 100%;
  height: 48px;
  color: var(--light-grey);
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: 15px;
  position: relative;
}

.form-dropdown:focus {
  border-color: var(--light-grey);
  color: var(--back-grey);
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.field-block {
  z-index: 1;
  border: 1px solid #0000;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 50px;
  min-height: 20px;
  margin-bottom: 8px;
  display: flex;
}

.error {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-header {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.footer-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.ds-module {
  background-color: var(--silver);
  border-radius: 8px;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

._1-2-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-1-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.heading {
  font-weight: 600;
  display: block;
}

.heading.h1 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.2em;
}

.heading.l {
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 1.2em;
}

.heading.l.center {
  text-align: center;
}

.heading.m {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.4em;
}

.heading.s {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1.4em;
}

.heading.xxs {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.heading.xl {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 90px;
  font-weight: 600;
  line-height: 1em;
}

.heading.xs {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 400;
  line-height: 1em;
}

.heading.l-copy {
  margin-bottom: 40px;
  font-size: 46px;
  line-height: 1.2em;
}

.heading.l-copy.center {
  text-align: center;
}

.error2 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.licenses-grid {
  grid-column-gap: 96px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.utility-page-wrap {
  background-color: var(--black);
  background-image: radial-gradient(circle at 0 20%, #2081e261, #0000);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 20px;
  display: flex;
}

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

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  display: flex;
}

.visible-spacer {
  background-color: var(--silver);
  border-radius: 12px;
  margin-bottom: 24px;
  display: inline-block;
}

.field-split {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.questions-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

._3-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._4-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.terms-card {
  z-index: 2;
  background-color: var(--dark-grey);
  border-radius: 24px;
  max-width: 800px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 64px 48px;
  position: relative;
}

._2-grid {
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

._2-grid._2-on-mobile {
  align-items: start;
}

.error-5 {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.nav-social-links {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 20px 20px;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-right: 16px;
  display: flex;
}

.social-link-block {
  transition: opacity .2s, color .2s;
}

.social-link-block:hover {
  opacity: .6;
}

.social-icon {
  width: 20px;
  height: 20px;
}

.underline-link {
  border-bottom: 1px solid var(--grey);
  color: var(--light-grey);
  transition: border-color .2s, color .2s;
}

.underline-link:hover {
  border-bottom-color: var(--silver);
  color: var(--back-grey);
}

.attribute-block {
  text-align: left;
  border: 1px solid #5a3e48;
  border-radius: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  width: 100%;
  padding: 10px 24px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.creator-info-grid {
  grid-column-gap: 128px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.creator-info-grid.align {
  flex-flow: column;
  display: flex;
}

.footer-grid {
  grid-column-gap: 80px;
  grid-row-gap: 64px;
  grid-template-columns: 1fr 320px;
  justify-items: start;
}

.footer-social-link-block {
  background-color: var(--dark-grey);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: background-color .2s, color .2s;
  display: flex;
}

.footer-social-link-block:hover {
  background-color: var(--grey);
}

.footer-main-box {
  flex-direction: column;
  align-items: flex-start;
  max-width: 450px;
  display: flex;
}

.footer-social-links {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-right: 16px;
  display: grid;
}

.blue-squircle-card {
  background-color: var(--background-blue);
  background-image: linear-gradient(82deg, var(--background-pink), #ee3f7b36);
  border-radius: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 350px 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding: 80px 64px 80px 400px;
  display: flex;
  position: relative;
}

.hero-crystal-image {
  width: 750px;
  display: block;
  position: absolute;
  inset: -400px -200px auto auto;
}

.about-crystal-image {
  width: 30%;
  max-width: 80%;
  display: block;
  position: absolute;
  inset: auto auto 0% 0%;
}

.pink-squircle-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--blue);
  color: #3f2a31;
  background-image: linear-gradient(#ecd8ea80 8%, #ee3f7b00);
  border-radius: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 400px;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.attributes-crystal-image {
  width: 60%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.creator-social-links {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 20px 20px 20px 20px;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.white-squircle-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  width: 100%;
  color: var(--grey);
  border-radius: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 280px;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 80px;
  display: grid;
  position: relative;
}

.roadmap-crystal-div {
  height: 100%;
  position: absolute;
  inset: 55px -50px auto auto;
}

.roadmap-step-block {
  grid-template-rows: auto;
  grid-template-columns: 28px 1fr;
  max-width: 420px;
}

.roadmap-step-icon {
  margin-top: 4px;
}

.roadmap-steps-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
}

.roadmap-crystal-image {
  width: 900px;
  position: relative;
  inset: 295px 0% 0% auto;
}

._3-crystal-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.hero-crystal-text {
  position: absolute;
  top: -150px;
  right: 30px;
}

.attribute-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cta-grid {
  grid-column-gap: 96px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.cta-grey-box {
  background-color: var(--grey);
  color: var(--silver);
  border-radius: 32px;
  padding: 64px;
  position: relative;
}

.cta-nft-card-images {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 120%;
  display: block;
  position: relative;
}

.nft-preview-image {
  border-radius: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.nft-preview-image.format {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 0%;
}

.cta-nft-2 {
  width: 260px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.cta-nft-1 {
  width: 260px;
  position: relative;
}

.features-grid {
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.about-crystal-image-mobile {
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
}

.nft-card-image {
  margin-left: auto;
  margin-right: auto;
}

.contact-crystal-image {
  position: absolute;
  top: 50px;
  left: auto;
  right: -120px;
}

.loader-wrapper {
  z-index: 5000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0;
}

.loader {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.loader-logo {
  z-index: 1;
  margin-bottom: 32px;
  position: relative;
}

.loader-height-box {
  z-index: 0;
  background-color: var(--dark-grey);
  width: 100%;
  height: 10%;
  display: block;
  position: absolute;
  bottom: 0;
}

.loader-icon {
  z-index: 1;
  position: relative;
}

.banner-section {
  z-index: 200;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--white);
  background-color: #323232b3;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.banner-container {
  flex: 1;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  display: flex;
}

.banner-link {
  color: var(--blue);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
  line-height: 1.3em;
  text-decoration: none;
  display: inline;
}

.banner-link:hover {
  color: var(--dark-blue);
}

.loader-logo-copy {
  z-index: 1;
  max-width: 20%;
  margin-bottom: 32px;
  position: relative;
}

.color-gallery-wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 14px 0;
  display: flex;
}

.color-gallery-main {
  flex: 0 auto;
  width: 100%;
  max-width: 1440px;
  display: block;
  position: relative;
  overflow: hidden;
}

.color_gallery-photos {
  width: 100%;
  height: 900px;
  max-height: none;
  overflow: visible;
}

.color_gallery-list {
  width: 100%;
  height: 100%;
  position: static;
}

.color_gallery-item {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: visible;
}

.color-nav-wrapper {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 115px;
}

.wg-selector-highlight {
  background-color: #4049ff;
  width: 100%;
  height: 100%;
}

.wg-selector-highlight.h2 {
  transform: translate(-100%);
}

.wg-selector-highlight.h1, .wg-selector-highlight.h3 {
  background-color: #4049ff;
}

.wg-selector-highlight.h4 {
  transform: translate(-100%);
}

.wg-code {
  display: none;
}

.wg-selector-highlight-wrapper {
  width: 100%;
  height: 2px;
  margin-top: .25rem;
  overflow: hidden;
}

.wg-element {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 25vh;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.wg-element:hover {
  background-color: #fbf9fd;
}

.wg-element-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.wg-selector-1 {
  color: #000;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: relative;
}

.wg-selector-1:hover {
  color: #4049ff;
}

.wg-selector-1.w--current {
  cursor: default;
}

.wg-selector-1.s2 {
  opacity: .5;
}

.wg-selector-text-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
}

.wg-flag-ico {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.wg-flag {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 16px;
  margin-right: 10px;
  display: flex;
}

.text-block {
  color: var(--white);
}

.text-block-2 {
  color: var(--silver);
}

.attributes-crystal-image-copy {
  inset: auto 0% -9% auto;
  width: 60%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image {
  width: 80%;
  position: absolute;
  inset: auto -3% -5% auto;
}

.image-2 {
  display: none;
}

.attributes-crystal-image-copy {
  width: 60%;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.paragraph-copy {
  text-transform: none;
  font-size: 20px;
  font-style: italic;
  text-decoration: none;
}

.paragraph-copy.small {
  opacity: .75;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph-copy.large {
  font-size: 20px;
  line-height: 1.4em;
}

.paragraph-copy.large.grey {
  color: var(--soft-grey);
}

.paragraph-copy.medium {
  font-size: 16px;
}

.paragraph-copy.j {
  margin-bottom: 0;
  font-size: 18px;
}

.image-3 {
  max-width: 8%;
  display: block;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: -.75rem -.75rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-prefs_title {
  color: #021a69;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_text {
  color: #021a69;
  font-size: .75rem;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_label {
  color: #4353ff;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.fs-cc-banner_button {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border: 2px solid #0000;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--blue);
  color: var(--blue);
  background-color: #f5f5f5;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 1rem;
  height: 1rem;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.fs-cc-banner_text {
  color: #616161;
  margin-right: 1.5rem;
}

.fs-cc-banner_text-link {
  color: var(--blue);
  border: 1px #25b572;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .625rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  min-height: 100px;
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-prefs_button {
  background-color: #4353ff;
  border: 2px solid #4353ff;
  border-radius: 999rem;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #fff;
  border-color: #4353ff;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.section-2 {
  z-index: 2;
  background-color: var(--black);
  padding: 6rem 2rem;
  position: relative;
}

.container-2 {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.project-grid-masonry {
  column-count: 2;
  column-rule-style: none;
  column-rule-width: 0px;
  direction: ltr;
  column-gap: 30px;
}

.project-grid-item {
  margin-bottom: 30px;
}

.empty-state {
  color: #a6a6a6;
  text-align: center;
  background-color: #0000;
}

.section-3 {
  z-index: 2;
  background-color: var(--black);
  padding: 6rem 2rem;
  position: relative;
}

.section-3-copy {
  z-index: 2;
  background-color: var(--black);
  padding: 0 2rem 3.5rem;
  position: relative;
}

.lightbox-link {
  opacity: 1;
  border-radius: 0;
}

.image-4 {
  border-radius: 10px;
}

.div-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block._16 {
  margin-bottom: 16px;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list.bottom {
  grid-column-gap: 28px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.collection-list-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.link-block {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  font-size: 20px;
  display: flex;
}

.text-block-3 {
  font-size: 28px;
}

@media screen and (min-width: 1280px) {
  .text-box._550px {
    max-width: 650px;
  }

  .heading.xl {
    font-size: 110px;
  }

  .heading.xs {
    font-size: 60px;
  }

  .banner-container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 991px) {
  .button {
    position: relative;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .column {
    width: 50%;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  .menu-icon {
    color: #096ad0;
  }

  .nav-content {
    margin-left: 16px;
  }

  .menu-button.w--open {
    color: #096ad0;
    background-color: #0000;
  }

  .logo-div {
    flex: 0 auto;
  }

  .nav-logo {
    flex: 1;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .ds-menu-brand {
    margin-bottom: 20px;
  }

  .ds-menu {
    z-index: 500;
    border-bottom: 1px solid var(--silver);
    background-color: #fff;
    padding-top: 17px;
    padding-bottom: 17px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .nav-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .logo {
    width: 175px;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link.button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._1-2-grid, ._2-1-grid {
    margin-left: 0;
  }

  .error2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .licenses-grid {
    grid-column-gap: 40px;
    margin-left: 0;
  }

  .ds-body {
    flex-direction: column;
    display: flex;
  }

  .ds-menu-button {
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    background-color: #bbe600;
    border-radius: 40px;
  }

  ._3-grid, ._4-grid {
    grid-template-columns: 1fr 1fr;
  }

  .terms-card {
    padding-top: 64px;
  }

  .error-5 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .creator-info-grid {
    grid-column-gap: 64px;
  }

  .blue-squircle-card {
    grid-template-columns: 1fr;
    padding: 64px 48px 64px 300px;
  }

  .hero-crystal-image {
    width: 550px;
    top: -450px;
    right: -80px;
  }

  .about-crystal-image {
    width: 240px;
  }

  .pink-squircle-card {
    grid-template-columns: 1fr 300px;
    padding: 48px;
  }

  .attributes-crystal-image {
    width: 320px;
  }

  .white-squircle-card {
    grid-template-columns: 1fr 320px;
    padding: 64px 48px;
  }

  .roadmap-crystal-div {
    top: -46px;
    right: -21px;
  }

  .roadmap-crystal-image {
    width: 350px;
  }

  .hero-crystal-text {
    width: 180px;
  }

  .cta-grid {
    grid-column-gap: 48px;
  }

  .cta-grey-box {
    padding: 40px;
  }

  .cta-nft-2, .cta-nft-1, .about-crystal-image-mobile {
    width: 240px;
  }

  .contact-crystal-image {
    display: none;
  }

  .banner-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .banner-container {
    text-align: center;
  }

  .color_gallery-photos {
    height: 310px;
  }

  .color_gallery-list {
    overflow: hidden;
  }

  .color-nav-wrapper {
    flex-direction: row;
    justify-content: center;
    margin: 55px 0;
    position: relative;
    left: 0%;
  }

  .color-nav {
    display: flex;
  }

  .wg-element {
    width: 50%;
  }

  .attributes-crystal-image-copy {
    width: 320px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .section-2 {
    background-color: #fff;
    padding: 3rem 1rem;
  }

  .project-grid-masonry {
    column-count: 2;
  }

  .section-3, .section-3-copy {
    background-color: #fff;
    padding: 3rem 1rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.large {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section.hero-gradient {
    padding-bottom: 40px;
  }

  .spacer {
    height: 32px;
  }

  .spacer._64 {
    height: 48px;
  }

  .spacer._48 {
    width: 32px;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .column.desk-4, .column.desk-9 {
    width: 100%;
  }

  .nav-content {
    z-index: 2;
    background-color: var(--dark-grey);
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    position: absolute;
    overflow: auto;
  }

  .nav-cta-button-container {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    margin-right: -12px;
    padding: 16px;
  }

  .nav-bar {
    border: 1px #000;
  }

  .logo-div {
    margin-right: auto;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .paragraph {
    font-size: 16px;
  }

  .paragraph.large {
    font-size: 18px;
  }

  .nav-menu {
    text-align: center;
    padding-right: 0;
  }

  .ds-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-menu {
    background-color: #fff;
    padding: 16px 24px 24px;
  }

  .ds-content {
    margin-left: 0;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .tab-link {
    width: auto;
  }

  .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .logo {
    max-width: 90%;
  }

  .nav-link {
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
  }

  .nav-link:hover {
    transform: none;
  }

  .field-block {
    min-height: auto;
  }

  .footer-container {
    flex-direction: column;
  }

  .ds-colour-block {
    width: 25%;
  }

  ._1-2-grid, ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .heading.h1 {
    font-size: 35px;
  }

  .heading.l {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .heading.m {
    font-size: 24px;
  }

  .heading.s {
    font-size: 20px;
  }

  .heading.xl, .heading.xs {
    font-size: 50px;
  }

  .heading.l-copy {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .licenses-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  ._3-grid {
    grid-template-columns: 1fr;
  }

  .terms-card {
    padding-top: 48px;
    padding-left: 48px;
    padding-right: 48px;
  }

  ._2-grid {
    grid-template-columns: 1fr;
  }

  ._2-grid._2-on-mobile {
    grid-template-columns: 1fr 1fr;
  }

  .error-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-social-links {
    width: 100px;
    margin: 12px auto;
    display: none;
  }

  .social-icon {
    width: 24px;
    height: 24px;
  }

  .attribute-block {
    width: 100%;
  }

  .creator-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .footer-social-links {
    margin-right: 0;
  }

  .blue-squircle-card {
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 200px;
    padding-left: 48px;
  }

  .hero-crystal-image {
    width: 500px;
  }

  .about-crystal-image {
    display: none;
  }

  .pink-squircle-card {
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 256px;
  }

  .attributes-crystal-image {
    width: 300px;
    display: none;
    top: -100px;
  }

  .creator-social-links {
    width: 100px;
  }

  .white-squircle-card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 48px 32px 164px;
  }

  .roadmap-crystal-div {
    height: auto;
    inset: auto -25px -80px auto;
  }

  .roadmap-crystal-image {
    width: 220px;
    position: static;
  }

  ._3-crystal-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-nft-card-images {
    display: none;
  }

  .nft-preview-image {
    margin-left: 0;
    margin-right: 0;
  }

  .about-crystal-image-mobile {
    width: 360px;
    max-width: 80%;
    display: block;
    inset: auto 0% 0% auto;
  }

  .creator-image {
    width: 320px;
  }

  .nft-card-image {
    margin-left: 0;
    margin-right: 0;
  }

  .banner-section {
    text-align: left;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-container {
    text-align: left;
  }

  .banner {
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .wg-element {
    width: 100%;
  }

  .attributes-crystal-image-copy {
    width: 300px;
    top: -100px;
  }

  .image {
    width: 50%;
  }

  .attributes-crystal-image-copy {
    width: 300px;
    display: none;
    top: -100px;
  }

  .paragraph-copy {
    font-size: 16px;
  }

  .paragraph-copy.large {
    font-size: 18px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }

  .section-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .project-grid-masonry {
    column-count: 1;
  }

  .section-3, .section-3-copy {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero-gradient {
    background-image: radial-gradient(circle at 20% 40%, #20e28494, #0000 65%);
    background-position: 0 0;
    background-size: auto;
    margin-top: -130px;
    padding-bottom: 30px;
  }

  .button {
    font-size: 16px;
  }

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

  .color-block {
    margin-bottom: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .menu-button {
    flex: 0 auto;
  }

  .ds-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-input, .text-area {
    width: 100%;
  }

  .answer {
    padding-left: 0;
  }

  .question-container {
    padding: 20px 20px 8px;
  }

  .question-arrow-icon {
    margin-left: 16px;
  }

  .nav-container {
    height: 64px;
    padding: 2px 20px;
  }

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

  .heading.xs, .heading.l-copy {
    font-size: 30px;
  }

  .error2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .field-split {
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
  }

  ._4-grid {
    grid-template-columns: 1fr;
  }

  .terms-card {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .error-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .attribute-block {
    font-size: 18px;
  }

  .creator-info-grid {
    grid-row-gap: 24px;
  }

  .blue-squircle-card {
    border-radius: 24px;
    padding-top: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-crystal-image {
    width: 400px;
    max-width: none;
    top: -405px;
  }

  .pink-squircle-card {
    border-radius: 24px;
    justify-items: center;
    padding: 28px 24px 280px;
  }

  .attributes-crystal-image {
    width: 250px;
    display: none;
    top: -50px;
  }

  .white-squircle-card {
    border-radius: 24px;
  }

  .roadmap-crystal-div {
    bottom: -60px;
    right: 0;
  }

  .roadmap-crystal-image {
    width: 240px;
  }

  ._3-crystal-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hero-crystal-text {
    width: 160px;
    top: -250px;
    right: 20px;
  }

  .features-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .about-crystal-image-mobile {
    width: 85%;
    max-width: 85%;
  }

  .creator-image {
    width: 100%;
  }

  .nft-card-image {
    max-width: 80%;
  }

  .loader-wrapper {
    display: none;
  }

  .banner-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner {
    text-align: left;
    justify-content: space-between;
  }

  .banner-link {
    flex: 0 auto;
    width: 100%;
  }

  .loader-logo-copy {
    max-width: 55%;
  }

  .color-nav-wrapper {
    margin: 40px 0;
  }

  .wg-element {
    height: 25vh;
  }

  .attributes-crystal-image-copy {
    width: 250px;
    position: absolute;
    inset: -50px 0% 0%;
  }

  .image {
    width: 70%;
    position: absolute;
    inset: auto 0% -6% auto;
  }

  .image-2 {
    width: 90%;
    display: none;
    position: absolute;
    inset: auto 0% 0%;
  }

  .attributes-crystal-image-copy {
    width: 300px;
    display: block;
    position: absolute;
    inset: auto auto -22px;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }

  .section-2 {
    padding: 1rem 1em;
  }

  .container-2 {
    width: 100%;
  }

  .section-3 {
    padding: 1rem 1em;
  }

  .section-3-copy {
    background-color: var(--black);
    padding: 1rem 1em;
  }

  .collection-list.bottom {
    grid-template-columns: 1fr;
  }

  .text-block-3 {
    font-size: 15px;
  }
}

#w-node-_1a700ac1-51c5-d994-21de-a73c47c5f273-e16b4b98, #w-node-cfbdf0fd-b333-cc4c-a99f-fdb4c5ac76b1-c06b4b88, #w-node-e5eb3f94-7222-06c3-bbb0-4173c7373f33-c06b4b88, #w-node-e5eb3f94-7222-06c3-bbb0-4173c7373f34-c06b4b88, #w-node-_43446e55-6d0f-a0f5-48ac-23760682f285-c06b4b88, #w-node-e8f6c5b3-dbff-fca1-dc53-5a7757499318-c06b4b88, #w-node-_4af38b53-dacf-bacf-b02e-b2c87fa31cc6-c06b4b88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-c5654a67-12b1-479f-db87-277295a55cb7-cf3fcb86 {
    order: 9999;
  }

  #w-node-be77ec89-8fc5-5e83-bcf8-c7a54b5b8683-c06b4b88, #w-node-e371b1f1-f069-738e-655e-6833e6a5c0fe-c06b4b88 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4eadc708-f91c-0e51-116c-ffcdd56f3681-956b4b96 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d87838cf-f054-48b6-7ebc-7a729bbbe8ab-c06b4b88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-be77ec89-8fc5-5e83-bcf8-c7a54b5b8683-c06b4b88, #w-node-e371b1f1-f069-738e-655e-6833e6a5c0fe-c06b4b88 {
    justify-self: center;
  }
}


