/* Font Faces */
@font-face {
  font-family: CheeseBurger;
  src: local(CheeseBurger), url(/assets/fonts/CHEESEBU.TTF) format("truetype"),
    url(/assets/fonts/CHEESEBU.TTF) format("opentype");
  font-weight: 300 !important;

  font-display: block;
}
@font-face {
  font-family: CheeseBurger;
  src: local(CheeseBurger), url(/assets/fonts/CHEESEBU.TTF) format("truetype");
  font-weight: 300 !important;
  font-display: block;
}
/* Global Styles */
* {
  font-family: CheeseBurger, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 10px;
  --black: #000;
  --white: #fff;
  --trns1: 0.25s;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--white);
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

.CheeseBurger {
  font-family: CheeseBurger;
}

.lilitaone {
  font-family: CheeseBurger;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: var(--trns1);
}

button {
  cursor: pointer;
  outline: 0;
  border: 0;
  transition: var(--trns1);
}

#loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5vw;
}

/* Header */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 10000000;
}

.header-content {
  height: 6.5vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.header-mob-icons {
  display: none;
  align-items: center;
  position: relative;
  z-index: 1;
}

.header-mob-icons img {
  margin: 0 0 0 5vw;
  width: 7.5vw;
}

.clear {
  display: none;
}

.header-mob {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5vw;
  display: none;
  padding: 20vw 5vw 5vw 5vw;
}

.header-mob a {
  margin: 0 0 5vw 0;
  font-size: 4vw;
  color: var(--black);
}

.header-mob main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-left a {
  margin: 0 1.5vw 0 0;
}

.header-left a img {
  width: 4.5vw;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-right > * {
  margin: 0 0 0 1.5vw;
}

.header-right a {
  font-size: 2.15vw;
  letter-spacing: 1px;
  color: var(--black);
  -webkit-text-stroke: 0.15px #fff;
}

.header-right a:hover {
  opacity: 0.75;
}

.mint-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.65vw 1.35vw;
  background-image: url(/assets/img/layer-1/svg/Button.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  font-size: 1.35vw;
}

.mint-btn:hover {
  transform: scale(1.05);
}

/* Layer-1 */
.layer-1 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 5000;
}

.layer-1-bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  /* opacity: 0.8; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.l1-tree {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 105%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: -100px;
  left: -200px;
  z-index: 60;
}

.mountain-right {
  width: 40%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 8;
}

.mountain-left {
  width: 50%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: -100px;
  left: -100px;
  z-index: 7;
}

.rainbow {
  width: 25%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(35%, -15%);
  z-index: 6;
}
.btn-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 500px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 300px;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 5;
  transform-origin: center;
}
.btn-flex button {
  background-color: green;
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  cursor: pointer !important;
  font-size: 30px;
}
.l1-sun {
  width: 50%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 5;
  transform-origin: center;
}

.cloud-1 {
  width: 10%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 5%;
  left: -10%;
  z-index: 5;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

.container2 {
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -69px !important;
}
.flower1 {
  position: absolute;
  top: 0%;
  right: 0%;
}
.flower2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.avatar {
  width: 150px;
  height: 150px;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

.avatar img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0%;
  right: 0%;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 50px, 0);
  }
}
.ball {
  transform: translatey(0px);
  animation: float 3s ease-in-out infinite;
}
.ball {
  transform: translatey(0px);
  animation: float 3s ease-in-out infinite;
}
#drag-container,
#spin-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  /* margin: auto;
  left: 50%;
  transform: translateX(-50%); */
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-10deg);
  transform: rotateX(-10deg);
}

#drag-container img,
#drag-container video {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: auto;
  line-height: 200px;
  font-size: 50px;
  text-align: center;
  margin: 0 20px;
  -webkit-box-reflect: below 10px
    linear-gradient(transparent, transparent, #0005);
}

#drag-container img:hover,
#drag-container video:hover {
  -webkit-box-shadow: 0 0 15px #fffd;
  box-shadow: 0 0 15px #fffd;
  -webkit-box-reflect: below 10px
    linear-gradient(transparent, transparent, #0007);
}

#drag-container p {
  font-family: Serif;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateX(90deg);
  transform: translate(-50%, -50%) rotateX(90deg);
  color: #fff;
}

#ground {
  width: 900px;
  height: 900px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateX(90deg);
  transform: translate(-50%, -50%) rotateX(90deg);
  background: -webkit-radial-gradient(
    center center,
    farthest-side,
    #9993,
    transparent
  );
}
#bgvid {
  object-fit: cover;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
#music-container {
  position: absolute;
  top: 0;
  left: 0;
}
.eye {
  width: 70px;
  position: absolute;
  z-index: 100000;
  right: 80px;
  top: 90px;
}
.tkt {
  width: 70px;
  position: absolute;
  z-index: 100000;
  right: 60%;
  top: 20px;
}
.ufo {
  width: 70px;
  position: absolute;
  z-index: 100000;
  left: 0;
  top: 200px;
}
.tongue {
  width: 70px;
  position: absolute;
  z-index: 100000;
  right: 35%;
  top: 400px;
}
.bottle {
  width: 90px;
  position: absolute;
  z-index: 100000;
  left: 30%;
  top: 580px;
}
.bottle2 {
  width: 90px;
  position: absolute;
  z-index: 100000;
  left: 2%;
  top: 580px;
}
.object {
  width: 70px;
  position: absolute;
  z-index: 100000;
  right: 30%;
  top: 700px;
}
.object2 {
  width: 70px;
  position: absolute;
  z-index: 100000;
  right: 2%;
  top: 700px;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes spinRevert {
  from {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  to {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes spinRevert {
  from {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  to {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}
.cloud-1.cloud-1-l3,
.cloud-4.cloud-1-l3,
.cloud-3.cloud-1-l3 {
  z-index: 2 !important;
}

.cloud-2 {
  width: 12.5%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 40%;
  left: 0%;
  z-index: 2;
}

.cloud-3 {
  width: 10%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 5%;
  left: 60%;
  z-index: 5;
}
.cloud-eye {
  width: 40%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 35%;
  right: 20%;
  z-index: 5;
}

.sb-logo {
  width: 65%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 40% !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
}

/* Layer-2 */
.layer-2 {
  width: 100%;
  height: 80vh;
  position: relative;
  z-index: 5001;
}

.layer-2-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  z-index: 2;
  transform: translate(0, -1px);
}

.layer-2-border-bottom {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.bros-3 {
  width: 27.5%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-40%, -50%);
  z-index: 13;
}

.bush-left {
  width: 15%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 10%;
  transform: translate(0, -65%);
  z-index: 10;
}

.bush-right {
  width: 13%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 5%;
  transform: translate(0, -72.5%);
  z-index: 10;
}

.grass-nft-box {
  width: 100%;
  height: 50vh;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.grass-nft-box img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 17.5vw;
  position: absolute;
  bottom: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
}

.grass-nft-1 {
  left: 50%;
  transform: translate(-285%, 0);
  z-index: 12;
}

.grass-nft-2 {
  left: 50%;
  transform: translate(-200%, 0);
  z-index: 13;
}

.grass-nft-3 {
  left: 50%;
  transform: translate(-115%, 0);
  z-index: 14;
}

.grass-nft-4 {
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 15;
}

.grass-nft-5 {
  left: 50%;
  transform: translate(30%, 0);
  z-index: 14;
}

.grass-nft-6 {
  left: 50%;
  transform: translate(115%, 0);
  z-index: 13;
}

.grass-nft-7 {
  left: 53.5%;
  transform: translate(100%, 0);
  z-index: 12;
}

/* Layer 3 */
.layer-3 {
  background-image: url(../assets/img/layer-1/svg/bg-layer.jpeg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
  position: relative;
}

.layer-3-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
  align-items: center;
  left: 50%;
  bottom: 0 !important;
  transform: translateX(-50%);
}

.layer-3-padding-bottom {
}

.layer-3-bg {
  width: 100%;
  height: max-content;
  position: relative;
}

.l3-tree {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}

.l3-sun {
  width: 25%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: -10%;
  left: -10%;
}
.layer-4-text-box {
  position: relative;
  left: 200px;
  padding: 0 10px 0 10px;
}
.layer-4-text-box p {
  font-size: 28px !important;
  letter-spacing: 1px;
}
.animated-nft {
  width: 520px;
  height: auto;

  z-index: 150;
}

.layer-4-text-box {
  width: 50%;
  right: 0;
  height: auto;
  position: relative;
}

.who-are-sb {
  width: 65%;
  height: auto;
}

.cloud-4 {
  width: 10%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  bottom: 15%;
  left: 50%;
  z-index: 4;
}

/* Layer 4 */
.layer-4 {
  width: 100%;
  position: relative;
  padding: 100px 0;
  background: url(../assets/img/layer-4/svg/roadmapbg.jpeg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.layer-4-bg {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 4;
}

.fence-1 {
  width: 15vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 0;
  right: 25%;
  transform: rotate(14deg);
  z-index: 3;
  display: none;
}

.fence-2 {
  display: none;
  width: 15vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 0;
  right: -5%;
  transform: rotate(-2.5deg);
  z-index: 3;
}

.layer-3-bg-in-layer-4 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 7%;
  left: 0;
  z-index: 2;
  transform: translate(0, -1px) rotate(180deg);
}
.roadmap-body {
  position: absolute;
  top: 0%;
  height: 100%;
}
.roadmap-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 5;
  margin-top: 0px;
}

.road-box {
  width: 1000px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 20px;
  left: 50%;
  padding-bottom: 200px !important;
  transform: translateX(-50%);
}

.road {
  width: 100%;
  height: auto;
}

.road-back {
  width: 1000px;
  /* padding-bottom: 300px; */

  opacity: 0;
}

/* .road-box span {
  width: 100%;
  height: 0.4vw;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -1px;
  display: flex;
  backdrop-filter: blur(100px);
} */
.roadmap-cloud {
  width: 40%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;

  margin-bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.roadmap-text-box {
  width: 500px;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-text-box div h3 {
  font-size: 35px;
  color: var(--black);
  margin: 0 0 1vw 0;
}

.roadmap-text-box div p {
  font-size: 16px;
  color: var(--black);
}

.roadmap-text-box-1 {
  width: 1000px;
  display: flex;
  top: 90px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.roadmap-text-box-1 div {
  position: relative;
  right: -100px;
}

.roadmap-text-box-2 {
  width: 1000px;
  display: flex;
  top: 80px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
.roadmap-text-box-2 div {
  position: relative;
}

.roadmap-text-box-3 {
  width: 1000px;
  display: flex;
  top: 180px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.roadmap-text-box-3 div {
  position: relative;
  width: 100%;
  right: 0;
  top: -50px;
  left: 220px;
}

.roadmap-text-box-4 {
  width: 1000px;
  display: flex;
  top: 160px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
.roadmap-text-box-4 div {
  position: relative;

  width: 100%;
}
.roadmap-text-box-5 {
  width: 1000px;
  display: flex;
  top: 320px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.roadmap-text-box-5 div {
  position: relative;
  left: 120px;
  width: 100%;
}
@media screen and (max-width: 350px) {
  .island5 {
    width: 200px;
    position: relative;
    margin-top: 90px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
  .roadmap-text-box-5 {
    width: 1300px;
    display: flex;
    top: 500px !important;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
  .roadmap-text-box-5 div {
    position: relative;
    left: 120px;
    width: 100%;
  }
}
.palm-tree-left {
  width: 250px;

  height: auto;
  position: absolute;
  top: 0;
  left: 250px !important;
  z-index: 7;
}

.palm-tree-right {
  width: 30%;
  height: auto;
  display: none;
  position: absolute;
  top: 27.5%;
  transform: rotateY(180deg);
  right: -100px;
  z-index: 7;
}

.island {
  width: 300px;
  position: absolute;
  top: 90px;
  left: 180px;
  height: auto;
}
.island2 {
  width: 200px;
  position: absolute;
  top: -10px;
  right: 180px;
  height: auto;
}
.island3 {
  width: 200px;
  position: absolute;
  top: -60px;
  left: 60px;
  height: auto;
}
.island4 {
  width: 260px;
  position: absolute;
  top: 20px;
  left: 180px;
  height: auto;
}
.island5 {
  width: 350px;
  position: absolute;
  top: -70px;
  left: -30px;
  height: auto;
}
.merch {
  width: 200px;
  position: absolute;
  left: 0;
  height: auto;
}

.charity-icon {
  width: 200px;
  height: auto;
}

.birds {
  width: 15vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 15%;
  right: 10%;
  z-index: 10;
}

.bird-1 {
  width: 8.5vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 40%;
  left: 5%;
  z-index: 10;
}

.bird-2 {
  width: 8.5vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 65%;
  right: 5%;
  z-index: 10;
}

#purple-bush {
  width: 35vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  bottom: -10%;
  left: 0;
  position: absolute;
}

/* Layer 5 */
.layer-5 {
  width: 100%;
  position: relative;
  background: url(../assets/img/layer-1/svg/bg-layer.jpeg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;

  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 0;
}

.layer-5-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#vr-bros {
  width: 30vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: -5.5%;
  right: 15%;
  z-index: 1;
}
#slider-title {
  width: 50vw;
  height: auto;
  margin-top: 100px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.container {
  position: relative;
  margin: 80px 0;
  height: 100%;
  width: 60%;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.slider-img {
  width: 100%;
  height: auto;
}
.card {
  display: flex;
  height: auto;
  width: 400px;
  background-color: #17141d;
  border-radius: 10px;
  box-shadow: -1rem 0 3rem #000;
  /*   margin-left: -50px; */
  transition: 0.4s ease-out;
  position: relative;
  left: 0px;
}

.card:not(:first-child) {
  margin-left: -50px;
}

.card:hover {
  transform: translateY(-30px);
  transition: 0.4s ease-out;
}

.card:hover ~ .card {
  position: relative;
  left: 50px;
  transition: 0.4s ease-out;
}

.title {
  color: white;
  font-weight: 300;
  position: absolute;
  left: 20px;
  top: 15px;
}

.bar {
  position: absolute;
  top: 100px;
  left: 20px;
  height: 5px;
  width: 150px;
}

.emptybar {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}

.filledbar {
  position: absolute;
  top: 0px;
  z-index: 3;
  width: 0px;
  height: 100%;
  background: rgb(0, 154, 217);
  background: linear-gradient(
    90deg,
    rgba(0, 154, 217, 1) 0%,
    rgba(217, 147, 0, 1) 65%,
    rgba(255, 186, 0, 1) 100%
  );
  transition: 0.6s ease-out;
}

.card:hover .filledbar {
  width: 120px;
  transition: 0.4s ease-out;
}

.circle {
  position: absolute;
  top: 150px;
  left: calc(50% - 60px);
}

.stroke {
  stroke: white;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: 0.6s ease-out;
}

svg {
  fill: #17141d;
  stroke-width: 2px;
}

.card:hover .stroke {
  stroke-dashoffset: 100;
  transition: 0.6s ease-out;
}
#team-text {
  width: 50vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;
  top: 0;
  z-index: 15;
  margin: 0 0 0 0;
}

#team-container {
  width: 100%;
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 3.5vw; */
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;

  position: relative;
  z-index: 10;
}

.team-box {
  position: relative;
  top: -100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-box img {
  position: relative;
}
.team-box main {
  background-color: rgba(0, 0, 0, 0.501);
  padding: 130px 0 50px 0;
  border-radius: 20px;
  top: -30px;
  z-index: 100;
  width: 350px !important;
  height: 100%;
  position: relative;
  z-index: 10;
}
.team-title {
  font-size: 20px !important;
}
.team-box > img {
  margin: 0 0 1.5vw 0;
}

.roundHex {
  position: relative;
  margin: 0 auto;
  background: transparent;
  border-radius: 10px;
  width: 300px;
  height: 377.12px; /* width * 0.866 */
  box-sizing: border-box;
  transition: all 1s;
  border: 10px solid transparent;
  border-top-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  border-right-color: white;
  border-left-color: white;
}
.hex {
  display: block;
  margin: 0 auto;
  top: 120px;
  position: relative;
  width: 250px;
  height: 300px; /* width * 0.866 */
  box-sizing: border-box;
  /* -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
  z-index: 1000;

  /* clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);

  -moz-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
}
.hex-background {
  position: absolute;
  top: 2px; /* equal to border thickness */
  left: 2px; /* equal to border thickness */
  width: 100%;
  height: 250px !important;
  z-index: 100000;
  height: 177.12px; /* width * 0.866 */
  /* -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
  /* -moz-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
}
.hex img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
  border-radius: 50%;
  /* -moz-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
}

.roundHex:before,
.roundHex:after {
  content: "";
  border: inherit;
  position: absolute;
  top: -10px;
  left: -10px;
  background: inherit;
  border-radius: inherit;
  height: 100%;
  width: 100%;
}
.roundHex:before {
  transform: rotate(60deg);
}
.roundHex:after {
  transform: rotate(-60deg);
}
#team-container main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.team-head {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.75vw 0;
}

.team-head img {
  width: 2vw;
  margin: 0 0 0 1vw;
  display: flex;
}

#team-container h3 {
  font-size: 2.8vw;
  letter-spacing: 2px;
  color: var(--white);
  font-family: CheeseBurger;
}

#team-container h4 {
  font-size: 1.2vw;
  letter-spacing: 2px;
  color: rgb(255, 244, 97);
  background-color: rgba(161, 60, 255, 0.582);
  border-radius: 10px;
  text-align: center;
  padding: 3%;
  font-family: CheeseBurger;
}

#team-container p {
  font-size: 1.2vw;
  letter-spacing: 1px;
  color: var(--white);
  margin: 5%;
  font-family: CheeseBurger;
  text-align: center;
}

.team-box > img {
  width: 7.5vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#night-moon-box {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}

.moon {
  width: 20vw;
  height: 20vw;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(0, -50%);
  z-index: 5;
  overflow: hidden;
  overflow: hidden;
}

.moon img {
  width: 100%;
}

.moon-cloud-1 {
  width: 45vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 50%;
  left: 15%;
  z-index: 10;
}

.moon-cloud-2 {
  width: 25vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9;
}

.moon-cloud-3 {
  width: 30vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 4;
}

.moon-cloud-4 {
  width: 20vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: 10%;
  left: 0;
  position: absolute;
  z-index: 3;
}

.moon-cloud-5 {
  width: 25vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: 75%;
  left: -100%;
  position: absolute;
  z-index: 9;
}

.moon-cloud-6 {
  width: 10vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: -50%;
  left: -50%;
  position: absolute;
  z-index: 9;
}
.faq-section {
  width: 100%;
  height: 100%;
  background-image: url(../assets/img/layer-5/svg/Violet\ gif.gif);
  background-size: cover;
  background-position: center;
}
/* FAQ */
#faq {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 60px 0;

  top: 0;
  z-index: 10000000 !important;
}

#faq-text {
  width: 50vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;
  z-index: 4;
}

.faq-box {
  width: 75%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.75vw;
}

.faq-q {
  width: 100%;
  padding: 1.5vw;
  background-color: #260244;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-q h6 {
  font-size: 1.8vw;
  letter-spacing: 2px;

  color: var(--white);
  width: 90%;
}

.faq-q img {
  width: 2vw;
  transform: rotate(0);
  transition: 0.4s;
}

.faq-a {
  width: 100%;
  padding: 1.5vw;
  background-color: #fff;
}
.faq-q:active {
}
.rotate {
  transform: rotate(-180deg) !important;
}

.faq-a p {
  font-size: 1.3vw;
  /* letter-spacing: 2px; */
  color: var(--black);
}

.faq-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 1.5vw;
  margin: 5vw 0 0 0;
  z-index: 5;
  position: relative;
}

.buildings {
}
body {
  background-color: #260244;
}
.footer {
  width: 100%;
  /* margin-top: 100px; */
  z-index: 1000;
  background-color: #260244;
  padding: 10vw 5vw 2.5vw 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.sleeping {
  width: 12.5vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: 0;
  left: 5vw;
  transform: translate(0, -50%);
  position: absolute;
}

.footer-content {
  z-index: 1000;
  width: 100%;
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content;
  grid-gap: 5vw; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.footer-left span img {
  width: 2.5vw;
}

.footer-logo {
  width: 25vw;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-content p {
  font-size: 1.25vw;
  color: var(--white);
  margin: 2.5vw 0;
}

.footer-content span {
  display: flex;
  align-items: center;
}

.footer-content span a {
  margin: 0 1.5vw 0 0;
}

.footer i {
  font-style: normal;
  font-size: 1.15vw;
  color: #fff;
  margin: 5vw 0 0 0;
  display: flex;
  opacity: 0.75;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-right a {
  display: flex;
  width: 50%;
  font-size: 1.25vw;
  color: var(--white);
  margin: 0 0 1.5vw 0;
}

.footer-right a:hover {
  opacity: 0.75;
}

.footer-content > * {
  width: 50%;
}

.mob {
  display: none;
}
header {
}
.header-right a {
  color: white;
}

@media screen and (max-width: 1000px) {
  .displayObj {
    display: none !important;
  }
  .bottle {
    width: 70px;
    position: absolute;
    z-index: 100000;
    left: 30%;
    top: 80%;
  }
  .roadmap-body {
    position: relative;
    top: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .layer-4 {
    margin: 9px 0 0 0;
    padding: 200px 0 500px 0;
  }
  .layer-4-text-box p {
    font-size: 20px !important;
  }
  .layer-4-text-box {
    left: 0;
  }
  .layer-3-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .layer-1-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;

    transform: translateX(-50%);
    z-index: 2;
  }
  .eye {
    width: 50px;
    right: -0;
  }
  .ufo {
    width: 50px;
  }
  #ground {
    width: 900px;
    height: 100px;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotateX(90deg);
    transform: translate(-50%, -50%) rotateX(90deg);
    background: -webkit-radial-gradient(
      center center,
      farthest-side,
      #9993,
      transparent
    );
  }

  #drag-container,
  #spin-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    height: 600px;
    /* margin: auto;
  left: 50%;
  transform: translateX(-50%); */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(-10deg);
    transform: rotateX(-10deg);
  }
  #drag-container img,
  #drag-container video {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: auto;
    line-height: 200px;
    font-size: 50px;
    text-align: center;
    margin: 0 20px;
    -webkit-box-reflect: below 10px
      linear-gradient(transparent, transparent, #0005);
  }
  .roadmap-cloud {
    width: 85%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    position: absolute;
    top: 100px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
  }
  .layer-3-bg-in-layer-4 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 17%;
    left: 0;
    z-index: 2;
    transform: translate(0, -1px) rotate(180deg);
  }
  .buildings {
    display: none;
  }
  .btn-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 220px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 5;
    transform-origin: center;
  }
  .btn-flex button {
    background-color: green;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer !important;
    font-size: 20px;
  }
  .header-right a,
  .layer-4-text-box p,
  .faq-q h6,
  .faq-q,
  .mint-btn {
    font-size: 1.65vw;
  }

  .layer-2 {
    width: 100%;
    height: 50vh;
    position: relative;
    z-index: 5001;
  }

  .layer-3 {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .bros-3 {
    max-height: 60%;
  }

  .mountain-right {
    width: 60%;
  }

  .mountain-left {
    width: 70%;
  }

  .l1-sun {
    width: 60%;
  }

  .rainbow {
    width: 30%;
  }

  .sb-logo {
    width: 65%;
    margin-top: 0%;
    margin-bottom: 60px;
  }

  .bush-left {
    width: 25%;
  }

  .bush-right {
    width: 25%;
  }

  .bros-3 {
    width: 40%;
  }

  .layer-4-text-box {
    width: 45%;
  }

  .who-are-sb {
    margin-top: 100px;
  }

  #team-container h3 {
    font-size: 2.5vw;
  }

  .team-head img {
    width: 2.5vw;
  }

  #team-container h4 {
    font-size: 1.3vw;
    border-radius: 10px;
    text-align: center;
    padding: 3%;
  }

  #vr-bros {
    width: 40vw;
    top: -2.5%;
    left: auto;
    right: auto;
  }

  .roadmap-text-box .CheeseBurger {
    font-size: 12px;
  }

  #team-container p,
  .footer i,
  .footer-content p,
  .roadmap-text-box p,
  .footer-right a,
  .faq-a p {
    font-size: 1.5vw;
  }

  #team-container,
  .faq-box {
    padding: 0 5vw;
    width: 100%;
    border-radius: 0.75vw;
  }

  .roadmap-text-box {
    width: 100%;
  }

  .roadmap-text-box p {
    font-size: 10px;
  }

  .charity-icon {
    right: -75%;
  }

  .faq-q img {
    width: 2.75vw;
  }

  .faq-box {
    width: 75%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.75vw;
  }

  .roadmap-text-box {
    position: absolute;
    left: 50%;

    transform: translateX(-50%);
  }

  .roadmap-text-box div h3 {
    font-size: 20px;
    color: var(--black);
    margin: 0 0 1vw 0;
  }

  .roadmap-text-box div p {
    font-size: 16px;
    color: var(--black);
  }

  .roadmap-text-box-1 {
    width: 90%;
    display: flex;
    top: 0px;
    padding-right: 40px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
  }
  .roadmap-text-box-1 div {
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .roadmap-text-box-2 {
    width: 90%;
    padding-right: 40px;
    display: flex;

    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    left: 50%;
    margin-top: 30px;
    transform: translateX(-50%);
  }
  .roadmap-text-box-2 div {
    width: 90%;
    position: relative;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .roadmap-text-box-3 {
    width: 90%;
    display: flex;
    margin-top: 30px;
    padding-right: 40px;
    top: 20px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
  }
  .roadmap-text-box-3 div {
    width: 90%;
    position: relative;
    left: 50%;
    margin-top: 80px;
    transform: translateX(-50%);
  }

  .roadmap-text-box-4 {
    width: 90%;
    padding-right: 40px;
    display: flex;
    top: 10px;
    justify-content: space-between;
    margin-top: 0px;
    align-items: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
  }
  .roadmap-text-box-4 div {
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .roadmap-text-box-5 {
    width: 90%;
    padding-right: 40px;
    display: flex;
    margin-top: 60px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
  }
  .roadmap-text-box-5 div {
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 1200px;
  }
  .palm-tree-left {
    width: 150px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 100px !important;
    z-index: 7;
  }

  .palm-tree-right {
    width: 30%;
    height: auto;
    position: absolute;
    top: 27.5%;
    transform: rotateY(180deg);
    right: -100px;
    z-index: 7;
  }

  .island {
    width: 200px;
    position: relative;
    top: 10px;
    left: 48%;
    transform: translateX(-50%);
    height: auto;
  }
  .island2 {
    width: 170px;
    position: relative;
    top: 38px;
    left: 48%;
    transform: translateX(-50%);
    height: auto;
  }
  .island3 {
    width: 170px;
    position: relative;
    left: 48%;
    top: -15px;
    transform: translateX(-50%);
    height: auto;
  }
  .island4 {
    width: 200px;
    position: relative;

    left: 48%;
    transform: translateX(-50%);
    height: auto;
  }

  .island5 {
    width: 200px;
    position: relative;
    margin-top: 80px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
  .road-box {
    display: none !important;
  }
  .road {
    display: none !important;
  }
  .road-back {
    display: none !important;
  }

  .animated-nft {
    width: 650px;
    height: auto;
    z-index: 150;
    bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .fence-1,
  .fence-2,
  .cloud-1.cloud-1-l3 {
    display: none;
  }

  .palm-tree-right,
  .palm-tree-left {
    display: none;
  }

  .roadmap-track {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .roadmap-text-box-5 {
    top: 480px;
  }
}
@media screen and (max-width: 900px) {
  .fence-1,
  .fence-2,
  .cloud-1.cloud-1-l3 {
    display: none;
  }

  .palm-tree-right,
  .palm-tree-left {
    display: none;
  }

  .roadmap-track {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .roadmap-text-box-1 {
    position: relative;

    top: unset;
    height: unset;
  }

  .roadmap-text-box-2 {
    position: relative;

    top: unset;
    height: unset;
  }

  .roadmap-text-box-3 {
    top: unset;
    position: relative;
    height: unset;
  }

  .roadmap-text-box-4 {
    position: relative;

    top: unset;
    height: unset;
  }

  /* .bird-1,
.bird-2,
.birds {
    opacity: 0.5;
  } */

  #vr-bros {
    width: 50vw;
    top: -4%;
    left: auto;
    right: auto;
  }

  /* .charity-icon {
    width: 20vw;
    margin: 5vw 0 0 0;
    left: 70%;
    opacity: 0.75;
    bottom: 0 !important;
  } */

  /* .merch {
    width: 17.5vw;
    margin: 5vw 0 0 0;
    left: 70%;
    opacity: 0.75;
    bottom: -10% !important;
  } */

  .sb-logo {
    width: 65%;
  }

  .mountain-right {
    width: 50%;
  }

  .mountain-left {
    width: 65%;
  }

  .rainbow {
    width: 30%;
  }

  .bros-3 {
    width: 32.5%;
  }

  .l1-sun {
    width: 42.5%;
  }

  .bush-right {
    width: 30%;
  }

  .bush-left {
    width: 17.5%;
  }

  .header-left a img {
    width: 3.5vw;
  }

  .header-left a {
    margin: 0 2.5vw 0 0;
  }

  .header-right a,
  .layer-4-text-box p,
  .faq-q,
  .faq-q h6,
  .mint-btn {
    font-size: 2.25vw;
  }

  #team-container p,
  .footer i,
  .footer-content p,
  .roadmap-text-box p,
  .footer-right a,
  .faq-a p {
    font-size: 2.25vw;
  }

  .grass-nft-box img {
    height: 22.5vw;
  }

  .header-content {
    height: 10vw;
  }

  .animated-nft {
    width: 300px;
    bottom: 140px;
  }

  .l3-sun {
    width: 30%;
  }

  .fence-1 {
    width: 20vw;
  }

  #team-text {
    width: 85%;
    margin: 0 0 15vw 0;
  }
  .layer-5 {
    padding: 15vw 0;
  }

  .team-box {
    align-items: center !important;
  }

  #team-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 5vw;
  }

  .team-box:nth-child(1),
  .team-box:nth-child(2),
  .team-box:nth-child(3),
  .team-box:nth-child(4),
  .team-box:nth-child(5),
  .team-box:nth-child(6),
  .team-box:nth-child(7) {
    width: 100%;
  }

  .team-box:nth-child(1) img,
  .team-box:nth-child(2) img,
  .team-box:nth-child(3) img {
    order: 1;
  }

  .team-box:nth-child(1) main,
  .team-box:nth-child(2) main,
  .team-box:nth-child(3) main {
    order: 2;
  }

  .team-box {
    align-items: flex-start;
  }

  .team-box > img {
    width: 15vw;
    margin: 0 0 2.5vw 0 !important;
  }

  #team-container h3 {
    font-size: 4vw;
  }

  .team-head img {
    width: 4vw;
    margin: 0 0 0 2.5vw;
    align-items: center;
  }

  .team-head {
    margin: 0 0 1.5vw 0;
  }
  .team-head .h3 {
    color: red;
  }

  .faq-container {
    margin: 7.5vw 0 0 0;
    grid-gap: 5vw;
  }

  .sleeping {
    width: 20vw;
  }

  .footer {
    padding: 15vw 5vw 5vw 5vw;
  }

  .moon {
    width: 30vw;
    height: 30vw;
  }

  .moon-cloud-1 {
    width: 55vw;
    top: 55%;
  }

  .moon-cloud-2 {
    width: 35vw;
    top: 52.5%;
  }

  .moon-cloud-3 {
    width: 50vw;
    top: 45%;
  }

  .moon-cloud-5 {
    width: 32.5vw;
  }

  .faq-q img {
    width: 3.25vw;
  }

  .layer-5 {
    padding: 200px 0 100px 0;
    /* margin: -20vh 0 0 0; */
  }

  #purple-bush {
    width: 65vw;
    bottom: -20%;
    display: none;
  }
}
@media screen and (max-width: 750px) {
  /* .small-bros {
    display: none;
  }

  .mob {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vw;
    text-align: center;
  } */

  .layer-1 {
    width: 100%;
    height: 60vh;
  }

  .fence-1,
  .fence-2,
  .cloud-1.cloud-1-l3,
  .l1-tree,
  .l3-tree {
    display: none;
  }

  .layer-2 {
    width: 100%;
    height: 40vh;
    position: relative;
    z-index: 5001;
  }

  .layer-2-bg {
    max-height: 100%;
  }

  #team-container h4 {
    font-size: 3vw;
    border-radius: 10px;
    text-align: center;
    padding: 3%;
  }

  .layer-5 {
    margin: -10vh 0 0 0;
  }

  .roadmap-text-box h3 {
    font-size: 6.5vw;
  }

  #vr-bros {
    width: 50vw;
    top: -4%;
    left: auto;
    right: auto;
  }

  #team-container {
    grid-template-columns: 1fr;
  }

  .team-box {
    flex-direction: row;
  }

  .team-box > img {
    margin: 0 3.5vw 0 0 !important;
  }

  .layer-5 {
    padding: 25vw 0;
  }

  .sleeping {
    width: 25vw;
  }
}
@media screen and (max-width: 600px) {
  #team-container p,
  .footer i,
  .footer-content p,
  .roadmap-text-box p,
  .faq-q,
  .footer-right a,
  .header-right a,
  .layer-4-text-box p,
  .faq-q,
  .faq-q h6,
  .mint-btn,
  .faq-a p {
    font-size: 4vw;
  }

  .fence-1,
  .fence-2,
  .cloud-1,
  .l1-tree,
  .rainbow,
  .bush-left,
  .bush-right,
  .l3-sun,
  .cloud-1.cloud-1-l3,
  .cloud-3.cloud-1-l3 {
    display: none;
  }

  .grass-nft-box {
    display: none;
  }

  /* .l1-sun {
    height: 80%;
  } */

  .layer-2-border-bottom {
    display: none;
  }

  .team-box {
    flex-direction: column;
  }

  .bird-1,
  .birds,
  .bird-2 {
    display: none;
  }

  #vr-bros {
    display: none;
  }

  #vr-bros {
    width: 50vw;
    top: -2%;
    left: auto;
    right: auto;
  }

  #team-container h4 {
    font-size: 3vw;
    border-radius: 10px;
    text-align: center;
    padding: 3%;
  }

  .team-box > img {
    margin: 0 0 3.5vw 0 !important;
  }

  .moon-cloud-4 {
    width: 50%;
  }

  .moon-cloud-3 {
    display: none;
  }

  .footer-left {
    width: 75%;
  }

  .footer-right {
    width: 35%;
  }

  .footer-right a {
    width: 100%;
    font-size: 4vw;
    margin: 0 0 2.5vw 0;
  }

  .footer-logo {
    width: 40vw;
  }

  .footer-content span a {
    margin: 0 2.5vw 0 0;
  }

  .footer-left span img {
    width: 6.5vw;
  }

  .footer-content p {
    margin: 5vw 0;
  }

  .footer i {
    margin: 7.5vw 0 0 0;
  }

  .footer {
    padding: 20vw 5vw 10vw 5vw;
  }

  .faq-q,
  .faq-a {
    padding: 3.5vw 5vw;
  }

  .faq-q img {
    width: 6.5vw;
  }

  #faq-text {
    width: 85%;
  }

  .faq-container {
    margin: 10vw 0 0 0;
    grid-gap: 5vw;
  }

  #night-moon-box {
    height: 50vh;
  }

  #team-container h3 {
    font-size: 6.5vw;
  }

  .team-head img {
    width: 7.5vw;
    margin: 0 0 0 3.5vw;
  }

  .mint-btn {
    padding: 2.5vw 7.5vw;
  }

  .team-box > img {
    width: 30vw;
  }

  #team-text {
    height: auto;

    width: 85%;
    margin: 0 0 10vh 0;
  }

  .header-right {
    display: none;
  }

  .header-left a img {
    width: 7.5vw;
  }

  .header-left a {
    margin: 0 5vw 0 0;
  }

  .header-content {
    height: unset;
    padding: 5vw 0;
  }

  .layer-1 {
    height: 50vh;
  }

  .layer-2 {
    height: 35vh;
  }

  .bros-3 {
    width: 50%;
  }

  .mountain-left {
    width: 75%;
    top: 68%;
  }

  .mountain-right {
    width: 60%;
    top: 59%;
  }

  .l1-sun {
    width: 50%;
  }

  .rainbow {
    width: 35%;
  }

  .sb-logo {
    width: 75%;
  }

  .layer-3 {
    height: unset;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .layer-3-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .layer-4 {
    margin: 0px 0 0 0;
  }

  .l3-tree {
    display: none;
  }

  .layer-4-text-box {
    width: 100%;
    padding: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .animated-nft {
    width: 280px;
    position: relative;
    bottom: 0px;
  }

  .l3-sun {
    width: 40%;
  }

  .cloud-2 {
    width: 20%;
  }

  .who-are-sb {
    position: relative;
  }

  .cloud-3,
  .cloud-1 {
    width: 15%;
  }

  .header-mob-icons {
    display: flex;
  }
} /*# sourceMappingURL=main.css.map */
@media screen and (width: 768px) {
  .faq-section {
    margin-top: 200px;
  }
  /* .island5 {
    width: 200px;
    position: relative;
    margin-top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  } */
  .roadmap-text-box-5 div {
    top: 1050px;
  }
  .who-are-sb {
    position: relative;
    left: 50%;
    /* left: 0; */
    transform: translateX(-50%);
  }
}
