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

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

.hero-section {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  min-height: 1024px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #000;
  background-image: url('../images/PhoneBG-2.png');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: repeat;
  background-attachment: scroll;
  opacity: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-textblock {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 110%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-title {
  font-family: Americantext, sans-serif;
  color: #fff;
  font-size: 150px;
  line-height: 180px;
  font-weight: 500;
  text-shadow: 8px 8px 20px #000;
}

.hero-subtitle {
  padding-top: 30px;
  padding-bottom: 40px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 4px 4px 6px #000;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.action-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  max-width: 260px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: transparent;
  background-image: url('../images/hero-btn.png');
  background-position: 0% 50%;
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.action-btn:hover {
  background-image: url('../images/hero-btn.png');
  background-position: 0% 50%;
  background-size: 100%;
  -webkit-filter: brightness(106%);
  filter: brightness(106%);
}

.nav-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  margin-left: 40px;
  padding-right: 40px;
  padding-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1px;
  margin-left: 1px;
  padding-top: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  background-image: url('../images/Homestead-8.JPG');
  background-position: 0px 0px;
  background-size: cover;
  background-attachment: fixed;
}

.nav-link {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link:hover {
  box-shadow: inset 0 -5px 0 0 #968b2f;
  color: #968b2f;
}

.nav-link.w--current {
  box-shadow: inset 0 -5px 0 0 #968b2f;
  color: #968b2f;
}

.social-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.right-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.left-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-logo {
  position: relative;
  top: 0px;
}

.fog-container {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
}

.fog-img {
  width: 50%;
  opacity: 0.53;
}

.div-block {
  position: relative;
  width: 50%;
}

.image {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  max-width: 506px;
}

.line {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  opacity: 0.1;
}

.video-section {
  position: relative;
  overflow: visible;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url('../images/Kali.jpg');
  background-position: 100% 0%;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.body {
  background-color: #f9f4f4;
  cursor: auto;
}

.transtowhite-btm {
  position: absolute;
  bottom: 0px;
  z-index: 4;
  width: 100%;
  height: 75px;
  background-image: url('../images/trans-to-white.png');
  background-position: 50% 100%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.section-title {
  position: relative;
  max-height: 140px;
  padding-left: 40px;
  float: none;
  font-family: Futura, sans-serif;
  color: #0b0c0e;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title.white-text {
  color: #fff;
}

.what-is-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  background-color: #fff;
}

.div-block-2 {
  width: 1071.09375px;
  padding: 60px 80px;
}

.div-block-3 {
  position: relative;
  width: 50%;
}

.video-img {
  position: absolute;
  top: -60px;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-height: 380px;
  max-width: 700px;
  padding: 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-top: 5px solid #968b2f;
  border-bottom: 5px solid #968b2f;
  background-color: #9e9696;
}

.paragraph {
  padding-bottom: 60px;
  border-bottom: 1px none rgba(0, 0, 0, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.paragraph.btm-line {
  border-bottom-style: solid;
}

.image-2 {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 1;
}

.homestread-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 400px;
  background-image: url('../images/homestread-bg.jpg');
  background-position: 0% 100%;
  background-size: auto;
  background-repeat: no-repeat;
}

.div-block-4 {
  position: relative;
  width: 50%;
}

.title-decoration {
  width: 10px;
  height: 30px;
  background-color: #968b2f;
}

.tabs-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tabs-menu.left-tabs {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.home-tab {
  min-height: 300px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.tab-link {
  padding: 18px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  color: rgba(51, 51, 51, 0.6);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.tab-link:hover {
  color: #0b0c0e;
}

.tab-link.w--current {
  background-color: transparent;
  box-shadow: inset 0 5px 0 0 #968b2f, inset 0 -5px 0 0 #968b2f;
  color: #0b0c0e;
}

.columns {
  display: block;
}

.homestread-tabs-desktop {
  padding-top: 40px;
}

.homestread-slider-mobiles {
  display: none;
}

.wilderness-section {
  padding-top: 220px;
  padding-bottom: 220px;
  background-color: #060606;
  background-image: url('../images/wilderness-bg.jpg');
  background-position: 100% 0%;
  background-size: auto;
  background-repeat: no-repeat;
}

.wilderness-paragraph {
  margin-top: 40px;
  margin-left: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.wilderness-paragraph.btm-line {
  margin-top: 40px;
  margin-left: 40px;
  border-bottom-style: solid;
  color: #fff;
}

.crafting-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
}

.paragraph-margin {
  margin-top: 40px;
  margin-left: 40px;
  padding-bottom: 60px;
  border-bottom: 1px none rgba(0, 0, 0, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.paragraph-margin.btm-line {
  border-bottom-style: solid;
}

.crafting-character {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 220px;
}

.image-3 {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  max-width: 50%;
}

.roadmap-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f9f4f4;
  background-image: url('../images/logo-bg.svg');
  background-position: 100% -50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.roadmap-li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #fff;
}

.li-number-block {
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.li-nimber {
  font-family: Futura, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.paragraph-copy {
  margin-bottom: 0px;
  padding-left: 20px;
  border-bottom: 1px none rgba(0, 0, 0, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #0b0c0e;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.paragraph-copy.btm-line {
  border-bottom-style: solid;
}

.roadmap-tab {
  min-height: 500px;
  padding-top: 60px;
  padding-bottom: 70px;
}

.footer-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #060606;
}

.footer-nav-link {
  display: inline-block;
  padding: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav-link:hover {
  color: #968b2f;
}

.footer-nav-link.w--current {
  color: #968b2f;
}

.link {
  display: inline-block;
}

.footer-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  clear: both;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.copyright {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: hsla(0, 0%, 100%, 0.4);
}

.legal-link {
  padding-left: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: hsla(0, 0%, 100%, 0.4);
  font-weight: 500;
  text-decoration: underline;
}

.footer-bottom-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  clear: both;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.social-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about-herosection {
  padding-bottom: 360px;
  background-color: #060606;
  background-image: url('../images/about-bg.jpg');
  background-position: 50% 100%;
  background-size: auto;
  background-repeat: no-repeat;
}

.title-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-title {
  margin-top: 0px;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.paragraph-copy {
  padding-bottom: 60px;
  border-bottom: 1px none rgba(0, 0, 0, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.paragraph-copy.btm-line {
  border-bottom-style: solid;
}

.mint-form-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
}

.play-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 3px;
  border-color: #968b2f;
}

.transline-btm {
  position: absolute;
  bottom: 0px;
  z-index: 4;
  width: 100%;
  height: 30px;
  background-image: url('../images/trans-to-black.png');
  background-position: 50% 100%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.transline-top {
  position: absolute;
  top: 0px;
  z-index: 4;
  width: 100%;
  height: 30px;
  background-image: url('../images/trans-to-black-top.png');
  background-position: 50% 0%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.hero-paragraph {
  max-width: 50%;
  padding-bottom: 60px;
  border-bottom: 1px none rgba(0, 0, 0, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  text-shadow: 1px 1px 6px #000;
}

.hero-paragraph.btm-line {
  border-bottom-style: solid;
}

.roadmap-p {
  padding-right: 20px;
  padding-left: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #0b0c0e;
  font-size: 16px;
  line-height: 24px;
}

.video-modal-section {
  position: fixed;
  top: 0px;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.close-btn {
  padding: 18px;
}

.lightbox-link {
  width: 100%;
}

.mint-form {
  width: 100%;
  padding: 60px 140px;
  border-radius: 20px;
}

.supply {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f9f4f4;
  background-image: url('../images/logo-bg.svg');
  background-position: 50% 50%;
  background-size: 80%;
  background-repeat: no-repeat;
}

.form {
  display: none;
}

.mint-button {
  width: 100%;
  height: 50px;
  margin-left: 0px;
  padding-right: 100px;
  padding-left: 100px;
  border-radius: 12px;
  background-color: #968b2f;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.mint-button:hover {
  background-color: #a59a3c;
  box-shadow: inset 0 0 0 4px #968b2f;
}

.link-2 {
  color: #0b0c0e;
}

.add-wallet {
  display: inline-block;
  padding: 14px 20px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  background-color: #f2f2f2;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  color: #0b0c0e;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
}

.add-wallet:hover {
  background-color: #e0e0e0;
}

.btn-p {
  padding-right: 10px;
  padding-left: 10px;
  float: left;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 16px;
  line-height: 24px;
}

.btn-icon {
  float: left;
}

.mint-input {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding-right: 16px;
  padding-left: 16px;
  border-style: none none solid;
  border-width: 0px 0px 1px;
  border-color: #000 #000 rgba(0, 0, 0, 0.15);
  font-family: Futura, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.supply-number {
  padding-right: 0px;
  padding-left: 0px;
  border: 0px solid #000;
  background-color: transparent;
  font-family: Futura, sans-serif;
  color: #968b2f;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
}

.suuply-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.team-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 220px;
}

.section-title-centered {
  position: relative;
  max-height: 140px;
  padding-left: 40px;
  float: none;
  font-family: Futura, sans-serif;
  color: #0b0c0e;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.section-title-centered.white-text {
  color: #fff;
}

.team-grid {
  margin-top: 100px;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  justify-items: stretch;
  grid-column-gap: 141px;
  grid-row-gap: 141px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.member-block {
  padding-bottom: 20px;
  border-bottom: 2px solid #968b2f;
}

.image-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.member-decrition {
  min-height: 158px;
  padding: 30px;
  background-color: #161616;
}

.employee-photo {
  width: 100%;
}

.employee-name {
  margin-bottom: 10px;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
}

.employee-description {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
}

.mint-section {
  background-color: #060606;
  background-image: url('../images/mint-bg.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.inventory {
  position: absolute;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
}

.items-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 220px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.crafting-item {
  height: 180px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.inventory-wrapper {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  height: 220px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #322f2c;
  background-image: url('../images/blueprint-bg.jpg');
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat-x;
}

.hint {
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: rgba(0, 0, 0, 0.5);
}

.hint.hint-box {
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 16px;
}

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

.discord-section {
  position: relative;
  display: block;
  padding-top: 140px;
  padding-bottom: 140px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #060606;
  background-image: url('../images/discord-bg.jpg');
  background-position: 50% 0%;
  background-size: auto;
  background-repeat: repeat-x;
}

.subtitle-p {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
}

.discord-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-style: solid;
  border-width: 3px;
  border-color: #968b2f;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Futura, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
}

.discord-button:hover {
  background-color: rgba(150, 139, 47, 0.2);
}

.lefticon-text {
  margin-left: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.email {
  float: right;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  text-decoration: none;
}

.mint-title-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.mint-paragraph {
  max-width: 60%;
  padding-bottom: 0px;
  border-bottom: 1px none rgba(0, 0, 0, 0.1);
  opacity: 1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #aaa;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
}

.mint-paragraph.btm-line {
  border-bottom-style: solid;
}

.mint-paragraph.white-text {
  color: #fff;
}

.link-3 {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
}

.body-2 {
  display: block;
  overflow: visible;
  background-image: url('../images/about-bg.jpg');
  background-position: 0px 0px;
  background-size: auto;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
  -o-object-fit: fill;
  object-fit: fill;
}

.container-2 {
  display: block;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  text-align: center;
}

.image-5 {
  display: block;
  text-align: center;
}

.heading {
  display: block;
  margin-top: 5%;
  margin-bottom: 0%;
  background-color: #000;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  color: #c5c5c5;
  text-align: center;
}

.paragraph-2 {
  position: static;
  margin-top: 3%;
  margin-bottom: 0px;
  float: none;
  background-color: #968b2f;
  font-family: Bitter, serif;
  color: #e0e0e0;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  text-transform: none;
  text-shadow: 0 1px 6px #000;
}

.image-6 {
  display: inline-block;
  margin-bottom: 5%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px;
  background-size: auto;
  text-align: center;
}

.homestead-container {
  max-width: 90%;
  text-align: center;
}

.character-image-container {
  max-width: 75%;
  text-align: center;
}

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

.image-7 {
  clear: none;
}

.image-8 {
  font-weight: 400;
}

.grid {
  display: -ms-grid;
  display: grid;
  padding-right: 1%;
  padding-left: 1%;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-areas: "Area";
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 16px auto;
  grid-template-rows: auto auto;
}

.image-9 {
  overflow: visible;
  -o-object-fit: fill;
  object-fit: fill;
}

.paragraph-3 {
  margin: 5% auto;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.79);
  font-family: Bitter, serif;
  color: #ccc;
  font-size: 22px;
  -o-object-fit: fill;
  object-fit: fill;
}

.character-image {
  padding-top: 2%;
  padding-bottom: 2%;
  background-color: #000;
  background-clip: padding-box;
  -webkit-text-fill-color: inherit;
}

.div-block-5 {
  margin-top: 2px;
  margin-bottom: 2%;
}

.image-12 {
  display: block;
}

.image-13 {
  display: block;
}

.image-14 {
  display: block;
}

.image-15 {
  display: block;
}

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

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.image-16 {
  margin-top: -52px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 0px 0px 0px 40px;
}

.image-17 {
  font-weight: 400;
}

.image-18 {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .hero-container {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero-textblock {
    z-index: 2;
    width: 100%;
    padding-bottom: 495px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 140px;
    line-height: 160px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    text-shadow: 14px 14px 20px rgba(0, 0, 0, 0.5);
  }

  .action-btn {
    width: 260px;
    max-width: 100%;
  }

  .nav-container {
    margin-left: 0px;
    padding-right: 0px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-bottom-style: none;
  }

  .navbar {
    position: static;
    margin-left: 0px;
    padding-top: 19px;
    padding-bottom: 23px;
  }

  .nav-link {
    position: static;
    max-width: 300px;
    padding-left: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    font-size: 18px;
    line-height: 22px;
  }

  .nav-link:hover {
    box-shadow: none;
    color: #fff;
  }

  .nav-link.w--current {
    box-shadow: inset 6px 0 0 0 #968b2f;
  }

  .right-nav {
    display: none;
  }

  .div-block {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .image {
    left: 50%;
    top: auto;
    right: 0%;
    bottom: 0%;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }

  .nav-menu {
    position: fixed;
    z-index: 8888;
    width: 100%;
    padding-top: 140px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    background-color: #322f2c;
  }

  .menu-button {
    position: fixed;
    z-index: 99999;
    padding: 12px;
    background-color: rgba(24, 11, 11, 0.8);
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  .menu-button.w--open {
    z-index: 9999;
    padding: 12px;
    background-color: #968b2f;
  }

  .lottie-animation {
    width: 40px;
    height: 40px;
  }

  .video-section {
    background-position: 50% 0%;
  }

  .transtowhite-btm {
    z-index: 1;
  }

  .section-title {
    font-size: 50px;
    line-height: 56px;
  }

  .what-is-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .div-block-3 {
    width: 100%;
  }

  .video-img {
    position: relative;
    top: 0px;
    z-index: 1;
  }

  .homestread-section {
    padding-bottom: 400px;
    background-position: 30% 100%;
    background-size: 280%;
  }

  .div-block-4 {
    width: 100%;
  }

  .homestread-tabs-desktop {
    display: none;
  }

  .homestread-slider-mobiles {
    display: block;
    height: 100%;
    margin-top: 40px;
    background-color: transparent;
  }

  .slider-arrow {
    left: auto;
    top: 24px;
    right: 0%;
    bottom: auto;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 2px;
    border-color: #968b2f;
  }

  .slider-arrow.left-arrow {
    right: 60px;
  }

  .slider-nav {
    left: 0%;
    top: 30px;
    right: auto;
    bottom: auto;
  }

  .slide {
    padding-top: 124px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .mask {
    min-height: 400px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .subtitle {
    font-family: Futura, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
  }

  .wilderness-section {
    padding-top: 500px;
    padding-bottom: 80px;
    background-position: 80% 0%;
    background-size: 180%;
  }

  .crafting-section {
    padding-bottom: 400px;
  }

  .image-3 {
    bottom: -150px;
    max-width: 600px;
  }

  .hidden-mobiles {
    display: none;
  }

  .paragraph-copy {
    color: #0b0c0e;
  }

  .footer-section {
    padding-bottom: 140px;
  }

  .footer-nav-link {
    position: static;
    max-width: 100%;
    padding-left: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
    font-size: 18px;
    line-height: 22px;
  }

  .footer-nav-link:hover {
    box-shadow: none;
    color: #fff;
  }

  .footer-nav-link.w--current {
    box-shadow: none;
  }

  .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .footer-top-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .social-block {
    padding-bottom: 40px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .footer-nav-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .homestread-slide {
    padding-top: 124px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .about-herosection {
    padding-bottom: 100px;
    background-size: 150%;
  }

  .title-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page-title {
    margin-bottom: 40px;
  }

  .mint-form-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .transline-btm {
    z-index: 1;
  }

  .transline-top {
    z-index: 1;
  }

  .hero-paragraph {
    max-width: 100%;
  }

  .mint-form {
    display: block;
    padding: 40px;
  }

  .form {
    padding-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .mint-button {
    width: 100%;
    margin-left: 0px;
  }

  .mint-input {
    margin-bottom: 20px;
  }

  .supply-number {
    margin-bottom: 0px;
  }

  .title-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .team-section {
    padding-bottom: 140px;
  }

  .section-title-centered {
    font-size: 50px;
    line-height: 56px;
  }

  .team-grid {
    grid-column-gap: 42px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .mint-section {
    padding-bottom: 100px;
  }

  .mint {
    display: block;
  }

  .email {
    margin-top: 60px;
    float: right;
  }

  .mint-title-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .mint-paragraph {
    max-width: 100%;
  }

  .image-16 {
    margin-top: 0px;
    padding-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
  }

  .hero-container {
    padding-right: 26px;
    padding-left: 26px;
  }

  .hero-title {
    font-size: 100px;
    line-height: 112px;
    text-align: center;
    text-shadow: 8px 8px 20px rgba(0, 0, 0, 0.5);
  }

  .navbar {
    margin-right: 26px;
    margin-left: 26px;
  }

  .nav-logo.w--current {
    width: 80px;
  }

  .fog-container {
    overflow: hidden;
  }

  .video-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-title {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 40px;
    line-height: 46px;
    text-align: center;
  }

  .div-block-3 {
    padding: 0px;
  }

  .video-img {
    max-height: 300px;
  }

  .paragraph {
    padding-bottom: 40px;
  }

  .homestread-section {
    padding-bottom: 300px;
    background-position: 30% 100%;
    background-size: 250%;
  }

  .div-block-4 {
    padding: 40px;
  }

  .slide {
    padding-right: 40px;
    padding-left: 40px;
  }

  .wilderness-paragraph {
    margin-left: 0px;
    padding-bottom: 40px;
  }

  .paragraph-margin {
    margin-left: 0px;
    padding-bottom: 40px;
  }

  .image-3 {
    bottom: -80px;
    max-width: 500px;
  }

  .paragraph-copy {
    padding-bottom: 40px;
  }

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

  .homestread-slide {
    padding-right: 40px;
    padding-left: 40px;
  }

  .page-title {
    font-size: 50px;
    line-height: 60px;
    text-align: center;
  }

  .paragraph-copy {
    padding-bottom: 40px;
  }

  .mint-form-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .hero-paragraph {
    padding-bottom: 40px;
  }

  .supply {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .supply-number {
    margin-bottom: 0px;
  }

  .team-section {
    padding-bottom: 100px;
  }

  .section-title-centered {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 40px;
    line-height: 46px;
    text-align: center;
  }

  .team-grid {
    grid-column-gap: 19px;
  }

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

  .items-block {
    display: none;
  }

  .inventory-wrapper {
    display: block;
  }

  .hint.hint-box {
    font-size: 14px;
  }

  .subtitle-p {
    font-size: 24px;
    line-height: 30px;
  }

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

  .mint-paragraph {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    max-height: 900px;
    border-radius: 0px;
    background-size: cover;
    background-repeat: repeat;
    background-attachment: scroll;
  }

  .hero-container {
    margin-top: 104px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .hero-title {
    font-size: 64px;
    line-height: 100px;
    white-space: normal;
  }

  .hero-subtitle {
    padding-top: 10px;
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
  }

  .action-btn {
    width: 100%;
  }

  .navbar {
    margin-right: 0px;
    margin-left: 0px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .nav-logo.w--current {
    width: 90px;
  }

  .nav-menu {
    position: fixed;
  }

  .menu-button.w--open {
    background-color: #968b2f;
  }

  .video-section {
    background-position: 0% 0%;
    background-size: 600px 400px;
  }

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

  .section-title {
    font-size: 34px;
    line-height: 40px;
  }

  .what-is-block {
    margin-top: 60px;
    background-color: transparent;
  }

  .video-img {
    max-height: 200px;
    padding: 14px;
  }

  .paragraph {
    font-size: 15px;
  }

  .homestread-section {
    padding-bottom: 260px;
  }

  .div-block-4 {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .slide {
    padding-top: 120px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .mask {
    min-height: 400px;
  }

  .wilderness-section {
    padding-top: 300px;
  }

  .wilderness-paragraph {
    font-size: 15px;
  }

  .crafting-section {
    padding-bottom: 300px;
  }

  .paragraph-margin {
    font-size: 15px;
  }

  .crafting-character {
    height: 150px;
  }

  .image-3 {
    left: -37%;
    bottom: -100px;
    max-width: 440px;
  }

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

  .footer-section {
    padding-bottom: 100px;
  }

  .footer-nav-link {
    padding-left: 0px;
  }

  .copyright {
    margin-top: 40px;
  }

  .legal-link {
    display: inline-block;
    padding: 10px 20px 10px 0px;
  }

  .footer-bottom-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .homestread-slide {
    padding-top: 120px;
    padding-right: 10px;
    padding-left: 10px;
  }

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

  .page-title {
    font-size: 40px;
    line-height: 50px;
  }

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

  .hero-paragraph {
    font-size: 15px;
  }

  .mint-form {
    padding: 40px 20px;
  }

  .add-wallet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .supply-number {
    margin-bottom: 0px;
    font-size: 40px;
    line-height: 50px;
  }

  .section-title-centered {
    font-size: 34px;
    line-height: 40px;
  }

  .team-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .mint-section {
    padding-bottom: 0px;
  }

  .inventory-wrapper {
    height: 150px;
  }

  .hint.hint-box {
    margin-bottom: 20px;
  }

  .subtitle-p {
    font-size: 20px;
  }

  .email {
    float: left;
  }

  .mint-title-block {
    padding-top: 60px;
    padding-bottom: 0px;
  }

  .mint-paragraph {
    font-size: 15px;
  }

  .paragraph-2 {
    font-size: 15px;
  }

  .image-6 {
    background-color: #0b0c0e;
    background-image: none;
    background-clip: padding-box;
    -webkit-text-fill-color: inherit;
  }

  .homestead-container {
    max-width: 95%;
  }

  .character-image-container {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .paragraph-3 {
    font-size: 90%;
  }

  .image-10.character-image {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .image-10.character-image-copy {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .image-11 {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .character-image {
    margin-top: 0px;
    padding-top: 5%;
    padding-bottom: 5%;
    border-radius: 0px;
    background-clip: padding-box;
    -webkit-text-fill-color: inherit;
  }

  .image-16 {
    margin-top: -132px;
  }

  .image-18 {
    margin-top: 0px;
  }
}

#w-node-_8b87e2b0-3a87-9010-b006-a146cf9034b6-caffc4e1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

#w-node-_93fdcbeb-c5ce-d6be-4383-b818bc824396-caffc4e1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

@font-face {
  font-family: 'Americantext';
  src: url('../fonts/AmericanText.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('../fonts/FuturaPTDemi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('../fonts/FuturaPTBook.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('../fonts/FuturaPTHeavy.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}