@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@font-face {
  font-family: AvenirNextUL;
  src: url("./font/AvenirNextUltraLight.ttf");
}
@font-face {
  font-family: AvenirNextHeavy;
  src: url("./font/AvenirNextHeavy.ttf");
}
@font-face {
  font-family: AvenirNextRegular;
  src: url("./font/AvenirNextRegular.ttf");
}
@font-face {
  font-family: AvenirNextBold;
  src: url("./font/AvenirNextBold.ttf");
}
body {
  font-family: "AvenirNextRegular", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1 {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 50px;
  }
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  height: 80px;
  z-index: 999;
  font-family: "Cinzel", serif;
}
nav .logo {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  height: 80px;
  padding: 14px;
}
nav .logo img {
  height: 100%;
}
nav .menu {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  height: 80px;
}
@media screen and (max-width: 768px) {
  nav .menu {
    opacity: 0;
    transition: 0.5s ease;
    position: absolute;
    right: 0;
    top: 0;
    flex-direction: column;
    background: black;
    align-items: flex-end;
    height: 100dvh;
    gap: 20px;
    width: 0;
    padding: 0;
  }
  nav .menu .menuItem {
    opacity: 0;
    width: 0;
  }
  nav .menu.active {
    padding: 20px;
    padding-top: 100px;
    opacity: 1;
    width: 100%;
  }
  nav .menu.active .menuItem {
    opacity: 1;
    width: auto;
    transition: 0.5s opacity 500ms;
  }
}
nav .hamburger {
  display: none;
  height: 20px;
  width: 30px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 9999;
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  nav .hamburger {
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
  }
}
nav .hamburger span {
  height: 2px;
  width: 100%;
  background-color: #f0f7ff;
  transition: 0.3s ease;
}
nav .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 6px);
}
nav .hamburger.active span:nth-child(2) {
  opacity: 0;
}
nav .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -4px);
}

.menuItem {
  height: 100%;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .menuItem {
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .menuItem.menuItemMobile {
    display: none;
  }
}
.menuItem a {
  text-decoration: none;
  color: white;
  position: relative;
}
.menuItem a:before {
  position: absolute;
  bottom: -6px;
  content: "";
  width: 100%;
  background-color: #ffffa1;
  border-radius: 6px;
  height: 3px;
  transform: scale(0);
  transition: 0.2s ease;
}
.menuItem a:hover:before {
  transform: scale(1);
}
.menuItem.active a:before {
  transform: scale(1);
}
.menuItem.menuSodaClub {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  gap: 6px;
}
.menuItem.menuSodaClub a {
  background: linear-gradient(90deg, rgb(170, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menuItem.menuSodaClub i {
  color: white;
}
.menuItem.menuMyImmortals {
  height: 100%;
  margin-left: 2vw;
}
.menuItem.menuMyImmortals a {
  color: #fff39d;
}
.menuItem.menuMyImmortals img {
  height: 100%;
  padding: 6px;
}
@media screen and (max-width: 768px) {
  .menuItem.menuMyImmortals {
    height: auto;
  }
  .menuItem.menuMyImmortals img {
    display: none;
  }
}

.landing {
  height: 100dvh;
  width: 100%;
  position: relative;
  margin-bottom: -140px;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.landing.index {
  background: url("./img/landing_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .landing.index {
    background-position: center;
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .landing .landingLogo {
    max-width: 75%;
  }
}
.landing .landingLogo img {
  width: 600px;
  max-width: 100%;
  margin-bottom: 140px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .landing .landingLogo img {
    margin: 0;
  }
}

footer {
  height: 140px;
  width: 100%;
  position: relative;
  bottom: 0;
  background: linear-gradient(transparent, rgba(50, 41, 49, 0.6509803922));
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  align-items: flex-end;
  padding: 20px 60px;
  z-index: 999;
}
footer a {
  text-decoration: none;
  color: white;
}
footer .vision {
  justify-self: flex-start;
}
footer .bottomMenu {
  width: 100%;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  gap: 80px;
}
footer .bottomMenu a {
  font-family: "AvenirNextUL";
}
@media screen and (max-width: 768px) {
  footer {
    display: none;
  }
}

#vision {
  display: grid;
  grid-template-columns: 9fr 4fr;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #vision {
    grid-template-columns: 1fr;
  }
}
#vision .visionText {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  padding: 80px;
  padding-left: 160px;
  justify-content: center;
  color: #f0f7ff;
  gap: 20px;
}
#vision .visionText h1 {
  font-family: "AvenirNextHeavy";
  margin: 0;
  line-height: 1;
}
#vision .visionText p {
  font-family: "AvenirNextRegular";
  margin: 0;
}
@media screen and (max-width: 768px) {
  #vision .visionText {
    z-index: 2;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  #vision .visionText > div {
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    flex-direction: column;
  }
}
#vision .visionFace {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#vision .visionFace img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #vision .visionFace {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0%;
  }
  #vision .visionFace img {
    margin-left: 50%;
  }
}

#collection {
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#collection video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.buyaboxHeader {
  width: 100%;
}
.buyaboxHeader img {
  width: 100%;
}

#buyaboxContainer {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  #buyaboxContainer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

#buyabox {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  max-width: 90%;
  margin: 0 auto;
  padding: 50px 0;
  gap: 40px;
}
#buyabox #buyaboxFilter {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
#buyabox #buyaboxFilter .filters {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
}
#buyabox #buyaboxFilter .filters .filter {
  padding: 20px 6px;
  border-bottom: 1px solid black;
  position: relative;
  transition: 0.3s ease;
}
#buyabox #buyaboxFilter .filters .filter:hover {
  cursor: pointer;
}
#buyabox #buyaboxFilter .filters .filter:after {
  content: "+";
  position: absolute;
  right: 20px;
}
#buyabox #buyaboxFilter .filters .filter:before {
  width: 100%;
  background: linear-gradient(90deg, transparent 20%, rgba(255, 255, 166, 0.7));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  transform: scaleX(0);
  transform-origin: right;
}
#buyabox #buyaboxFilter .filters .filter.active:before {
  transform: scaleX(1);
}
#buyabox #buyaboxFilter .filters .filter.active:after {
  content: "-";
  font-size: 1.9em;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #buyabox #buyaboxFilter {
    gap: 0;
  }
  #buyabox #filterHeading {
    background-color: #dfe2e3;
    padding: 20px;
    border-radius: 4px;
    margin: 0;
    font-size: 1.2em;
    top: 0;
    width: 100%;
    position: relative;
    cursor: pointer;
  }
  #buyabox #filterHeading:after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
  }
  #buyabox #filterHeading.active:after {
    content: "⌄";
    top: 50%;
    transform: translateY(-50%);
  }
  #buyabox .filters {
    height: 0%;
    transform-origin: top;
    top: -5px;
    position: absolute;
    width: 100%;
  }
  #buyabox .filters .filter {
    border: 0;
    border-bottom: 0 !important;
    height: 0;
    padding: 0 20px !important;
    opacity: 0;
    transition: unset;
    background-color: #dfe2e3;
  }
  #buyabox .filters.active {
    height: 100%;
  }
  #buyabox .filters.active .filter {
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    padding: 20px 20px !important;
    height: 100%;
    opacity: 1;
    min-height: 60px;
    align-items: center;
    transition: opacity 0.3s ease 200ms;
  }
}
#buyabox h1,
#buyabox h2,
#buyabox h3,
#buyabox h4,
#buyabox h5 {
  font-weight: bold;
}

#boxesContainer {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 30px;
}
#boxesContainer .searchContainer {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  gap: 20px;
}
#boxesContainer .searchContainer input {
  width: 100%;
  padding: 6px 10px;
  background-color: #dfe2e3;
  border: none;
  border-radius: 4px;
  outline: 0;
  font-weight: bold;
}
#boxesContainer .searchContainer select {
  padding: 6px 10px;
  background-color: #dfe2e3;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}
#boxesContainer .boxFilterContainer {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
#boxesContainer .boxFilterContainer h5 {
  margin: 0;
}
#boxesContainer .boxFilterContainer .boxFilter {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  gap: 10px;
}
#boxesContainer .boxFilterContainer .boxFilter .filterItem {
  background-color: #dfe2e3;
  padding: 2px 10px;
  border-radius: 4px;
}
#boxesContainer .boxFilterContainer .boxFilter .filterItem:hover {
  cursor: pointer;
}
#boxesContainer .boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  #boxesContainer .boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
#boxesContainer .boxes .box {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
}
#boxesContainer .boxes .box img {
  width: 100%;
  border-radius: 20px;
}

#boxPage {
  padding: 130px 5vw;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
#boxPage .buyABoxHeading {
  position: relative;
  font-family: "Cintezel";
  font-size: 1.6em;
}
#boxPage .buyABoxHeading:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, transparent, #bae042);
  border-radius: 2px;
}
#boxPage .boxPageInner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageInner {
    grid-template-columns: auto 1fr;
    width: 100%;
    gap: 20px;
  }
  #boxPage .boxPageInner .boxPageSubmits {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageImage {
    aspect-ratio: 1;
    height: 150px;
  }
}
#boxPage .boxPageImage img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageImage img {
    aspect-ratio: 1;
    border-radius: 14px;
  }
}
#boxPage .boxPageDesc {
  position: relative;
  width: 100%;
  gap: 30px;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#boxPage .boxPageDesc h3 {
  font-weight: 600;
  font-size: 2.4em;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageDesc h3 {
    font-size: 1.8em;
  }
}
#boxPage .boxPageDesc h4 {
  font-weight: 600;
  font-size: 1.8em;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageDesc h4 {
    font-size: 1.4em;
  }
}
#boxPage .boxPageDesc .boxPageHeadings {
  margin-bottom: 14px;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  font-family: "AvenirNextBold";
}
#boxPage .boxPageDesc .boxPageQuantity {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageDesc .boxPageQuantity {
    gap: 5px;
    font-size: 1.2em;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
#boxPage .boxPageDesc .boxPageQuantity .quantitiyHeading {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageDesc .boxPageQuantity .quantitiyHeading {
    font-weight: unset;
  }
}
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  background-color: #dfe2e3;
  border-radius: 4px;
}
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr .minus,
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr .plus {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 12px;
  background-color: #dfe2e3;
  border-radius: 4px;
  font-size: 0.9em;
}
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr .minus:hover,
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr .plus:hover {
  background-color: #dddddd;
}
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr input[type=number] {
  width: 3ch;
  text-align: center;
  border: 0;
  outline: 0;
  padding: 4px;
  background-color: #e3e3e3;
  font-size: 1.2em;
}
#boxPage .boxPageDesc .boxPageQuantity .boxPageIncr input[type=number]::-webkit-inner-spin-button, #boxPage .boxPageDesc .boxPageQuantity .boxPageIncr input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageDesc .boxPageQuantity .boxPageIncr input[type=number] {
    font-size: 1em;
  }
}
#boxPage .boxPageDesc .boxPageQuantity .sold {
  color: red;
}
#boxPage .boxPageDesc .magicEden {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.8em;
}
#boxPage #boxPageSubmitsMobile {
  display: none;
}
@media screen and (max-width: 768px) {
  #boxPage #boxPageSubmitsMobile {
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
  }
}
#boxPage .boxPageSubmits {
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 2px solid rgb(184, 184, 184);
  padding-top: 50px;
  width: 100%;
  font-family: "AvenirNextBold";
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageSubmits {
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    padding-top: 30px;
    margin-top: -20px;
  }
}
#boxPage .boxPageSubmits input[type=submit] {
  width: 100%;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.4s ease;
  position: relative;
  border: none;
  z-index: 2;
  background-color: unset;
}
#boxPage .boxPageSubmits .boxPageSubmit {
  position: relative;
  border: 2px solid black;
  background-color: white;
  border-radius: 100px;
  overflow: hidden;
}
#boxPage .boxPageSubmits .boxPageSubmit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff5a2, white);
  transition: 0.3s ease-in-out;
  border-radius: 100px;
  z-index: 1;
  pointer-events: none;
  transform: translateX(-100%);
}
#boxPage .boxPageSubmits .boxPageSubmit.submitBuy:before {
  background: linear-gradient(90deg, #bfe251, white);
}
#boxPage .boxPageSubmits .boxPageSubmit:hover:before {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #boxPage .boxPageSubmits {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #boxPage {
    padding: 110px 6vw 50px 6vw;
  }
  #boxPage .boxPageDesc {
    gap: 0px;
    justify-content: flex-start;
  }
  #boxPage span {
    display: none;
  }
}

#boxPageVideo {
  width: 100%;
  font-size: 0;
}
#boxPageVideo video {
  width: 100%;
}

#roadMap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  background: url("./img/roadmap.png");
  background-size: cover;
  background-position: top center;
  padding: 150px 0 0 0;
  flex-direction: column;
}
#roadMap .roadMapInner {
  width: 80%;
  margin: 0 auto;
}
#roadMap .roadMapInner h2 {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #roadMap .roadMapInner {
    width: 95%;
    padding-bottom: 30px;
  }
  #roadMap .roadMapInner h1 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#roadMap .roadMapInner .roadMapText {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffe1e1;
  padding: 30px 30px;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 50px;
}
#roadMap .roadMapInner .roadMapText .roadMapTextSection {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 5px;
}
#roadMap .roadMapInner .roadMapText .roadMapTextSection .textSectionGrid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 768px) {
  #roadMap .roadMapInner .roadMapText .roadMapTextSection .textSectionGrid {
    grid-template-columns: 1fr;
  }
}
#roadMap h1 {
  font-family: "Cinzel";
  color: #ffe1e1;
}

#protocol {
  background-color: black;
  min-height: 100vh;
}
#protocol .protocolInner {
  width: 80%;
  margin: 0 auto;
}
#protocol .protocolInner h2 {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #protocol .protocolInner {
    width: 95%;
    padding-bottom: 30px;
  }
  #protocol .protocolInner h1 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#protocol .protocolHeading {
  width: 100%;
  padding-top: 80px;
}
#protocol .protocolHeading img {
  width: 100%;
}
#protocol .protocolText {
  color: #ffe1e1;
  padding: 30px 30px;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#protocol .protocolText .protocolTextSection {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 15px;
}
#protocol .protocolText .protocolTextSection .textSectionGrid {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 10px;
}

#theProject {
  width: 100%;
  background-color: black;
}
#theProject .theProjectHeading {
  width: 100%;
}
#theProject .theProjectHeading img {
  width: 100%;
}
#theProject .theProjectInner {
  width: 80%;
  margin: 0 auto;
}
#theProject .theProjectInner h2 {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #theProject .theProjectInner {
    width: 95%;
    padding-bottom: 30px;
  }
  #theProject .theProjectInner h1 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#theProject .theProjectText {
  color: black;
  padding: 30px 30px;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.2em;
}
#theProject .theProjectText .theProjectTextSection {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 15px;
}
#theProject .theProjectText .theProjectTextSection .textSectionGrid {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 10px;
}
#theProject .theProjectText .theProjectTextSection .textSectionGrid ul {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  margin: 30px auto;
  font-size: 1.6em;
}
@media screen and (max-width: 768px) {
  #theProject .theProjectText .theProjectTextSection .textSectionGrid ul {
    width: 95%;
  }
}
#theProject .theProjectText .theProjectTextSection .textSectionGrid ul li {
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  align-items: center;
  gap: 10px;
}

#theProject.projectBg {
  background: url("./img/projectBg.png");
  background-size: cover;
  margin-top: 80px;
}

.sodaClubHeader {
  width: 100%;
}
.sodaClubHeader img {
  width: 100%;
}

.sodaClubMemership {
  width: 100%;
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 6fr 1fr;
  color: white;
}
.sodaClubMemership img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sodaClubMemership .sodaClubMemershipText {
  padding: 40px 10px;
  font-size: 1.2em;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sodaClubMemership {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }
  .sodaClubMemership .sodaClubMemershipImg {
    display: none;
  }
}

#theProject.sovaCoin {
  color: #f3d3d4;
  font-size: 1.2em;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #theProject.sovaCoin {
    padding: 30px 0;
  }
}
#theProject.sovaCoin .theProjectInner {
  background: url("./img/sovaTransparentLogo.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
  position: relative;
}
@media screen and (max-width: 768px) {
  #theProject.sovaCoin .theProjectInner {
    background-size: 100% auto;
    background-position: 200px;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: darken;
  }
}
#theProject.sovaCoin .theProjectHeading {
  color: #feddde;
  padding: 0;
  margin-bottom: 40px;
}
#theProject.sovaCoin .theProjectHeading h2 {
  font-weight: normal;
  font-size: 6em;
  font-family: "Cinzel";
  margin: 0;
}
@media screen and (max-width: 768px) {
  #theProject.sovaCoin .theProjectHeading h2 {
    text-align: center;
    font-size: 3.6em;
  }
}
#theProject.sovaCoin .theProjectHeading h3 {
  font-weight: bold;
  font-size: 2.1em;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  #theProject.sovaCoin .theProjectHeading h3 {
    text-align: center;
    font-size: 1.3em;
    margin-top: -5px;
  }
}
#theProject.sovaCoin .theProjectText {
  color: #feddde;
}
#theProject.sovaCoin .theProjectText .theProjectTextSection {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #theProject.sovaCoin .theProjectText .theProjectTextSection {
    grid-template-columns: 1fr;
  }
}
#theProject.sovaCoin .theProjectText .theProjectTextSection .textSectionGrid {
  gap: 30px;
}

.silcrow {
  width: 100%;
  background-color: black;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.silcrow img {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .silcrow img {
    width: 200%;
  }
}/*# sourceMappingURL=style.css.map */