:root {
  color-scheme: dark;
}

body {
    --banner-text-color: rgb(255, 255, 255);
    /* Color of text in the banner */
    --text-normal: rgb(56, 56,56);
    /* Normal text color */
    --accent-color: #000000;
    /* Accent color */
    --accent-color-hover: yellow;
    /* Accent color on hover */
    --navbar-background: rgba(23, 19, 26, 0.397);
    /* Background color of the navbar */
    --background-color-begin: rgb(223, 223, 223);
    /* Gradient background color start */
    --background-color-end: rgb(207, 207, 207);
    /* Gradient background color end */
    --transistion-duration: 0.2s;
    /* Transition duration for normal effects */
    --transistion-duration-fast: 0.1s;
    /* Transition duration for fast effects */
    --showcase-card-background: rgb(235, 235, 235);
    /* Background color of showcase card */
    text-shadow: 2px 2px 15px rgb(114, 114, 114);
    /* Text shadow for normal mode */
}

/* Styling for dark mode */
body.dark-mode {
    --banner-text-color: rgb(255, 255, 255);
    /* Color of text in the banner */
    --background-color-begin: rgb(24, 27, 27);
    /* Gradient background color start */
    --background-color-end: rgb(42, 45, 46);
    /* Gradient background color end */
    --showcase-card-background: rgb(74, 79, 83);
    /* Background color of showcase card */
    --text-normal: rgb(253, 253, 253);
    /* Normal text color */
    text-shadow: 2px 2px 15px rgb(0, 0, 0);
    /* Text shadow for dark mode */
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  height: 100%;
  background-image: url('/Images/leafgood.png');
  background-repeat: repeat;
  overflow-x: hidden;
  overflow-y: overlay;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#falling-images-container {
  position: absolute;

  border: black thick solid;
  pointer-events: none;
}



.page {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max(80px, 10vw) 1fr;
  min-width: 100vw;
  width: 100%;
  max-height: calc(100vw * 0.52);
  min-height: calc(100vw * 0.52);

}

.one {
  grid-template-rows: max(40px, 5vw) 1fr;
}

header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3vw;
  font-family: Poppins Bold;
}


.nav-list {
  margin-left: 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2%;
  font-family: Poppins Regular;
  z-index: 99999;
  width: 95%;
  height: 66px;
  background-color: rgba(22, 22, 22, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list-item:not(.logo):hover{
  color: yellow;
  cursor: pointer;
}

.nav-list-item{
color: white;
font-size: 21px;
text-decoration: none;
font-family: 'Noto Sans', sans-serif;
margin-right: 30px;
}

@font-face {
  font-family: myFirstFont;
  src: url(/fonts/noto\ sans.css);
}


.logo {
  margin-right: auto;
}

.logo img {
  height: 3rem;
  width: auto;
}


#topBtn {
  display: none; 
  position: fixed; 
  bottom: 3.5vh;
  right: 2vw;
  z-index: 99;
  border: none; 
  outline: none; 
  background-color: white; 
  color: black; 
  cursor: pointer;
  padding: 2vh 2vw;
  border-radius: 1vw;
  font-size: 1vw;
}


.one-main {
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.one-main-body {
  display: flex;
  align-items: center;
  width: 90vw;
  aspect-ratio: 16/9;
  flex-direction: row;
}

.one-main-text {
  display: flex;
  justify-content: start;
  flex-direction: column;
  height: 100%;
}


.one-main-text span {
  color: white;
  font-size: 5vw;
  text-align: left;
  font-family: Poppins Bold;
}

.one-main-text p {
  font-size:  1vw;
  text-align: left;
  color: grey;
  font-family: Poppins Regular;
  text-transform: lowercase;
}

.one-main-image {
  display: grid;
  place-items: center;
  width: 78%;
  height: 100%;
  grid-template-columns: 1fr;
}

.one-main-image div {
 grid-row-start: 1;
 grid-column-start: 1;
}

.fade3 {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.6868759141;
  width: 32vw;
  border-radius: 15vw;
  transform: translate(0vw, -2vw);
  background-image: linear-gradient(135deg, rgba(75,0,130, 0.1), rgba(255,225,53, 0.15));
}


.fade2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90%;
  width: 90%;
  border-radius: 14vw;
  background-image: linear-gradient(135deg, rgba(75,0,130, 0.5), rgba(255,225,53, 0.17));
}

.fade1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90%;
  width: 90%;
  border-radius: 13vw;
  background-image: linear-gradient(135deg, rgba(75,0,130, 0.7), rgba(255,225,53, 0.19));
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90%;
  width: 90%;
  border-radius: 12vw;
  background-image: linear-gradient(135deg, rgba(75,0,130, 1), rgba(255,225,53, 1));
}



.quantumcheats {
  grid-row-start: 1;
  grid-column-start: 1;
  z-index: 10;
}

.quantumcheats img {
  height: auto;
  width: 30vw;
}

.hamburger {
  position: relative;
  display: none;
  cursor: pointer;
  background: none;
  appearance: none;
  outline: none;
  border: none;
  z-index: 99999;
  margin-right: 45%;
}


.hamburger .bar, .hamburger:after, .hamburger:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: transform ease-in-out 400ms, opacity ease-in-out 100ms;
  z-index: 9999;
}

.hamburger.is-active .bar {
  opacity: 0;
} 

.hamburger.is-active:before {
  transform: translate(0px, 6px) rotate(-45deg) ;
}

.hamburger.is-active:after {
  transform: translate(0px, -10px) rotate(45deg) ;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  bottom: 10px;
  width: 100%;
  min-height: 100vh;
  margin-top: 65px;
  display: block;
  z-index: 30 !important;
  background-color:#171717;
  padding: 20px 0;
  transition: ease-in-out 500ms;
}

.mobile-nav.is-active {
 left: 0;
 z-index: 30 !important;
}

.mobile-nav a {
  display: none;
  width: 50vw;
  max-width: 200px;
  margin: 0 auto 5vh;
  text-align: center;
  padding: 12px 16px;
  border: thin solid rgba(255, 225, 53, .1);
  border-radius: 10px;
  background-color: #171717;
  color: white;
  text-decoration: none;
  font-size: 5vw;
  z-index: 90;
  font-family: Poppins Bold;
}

.mobile-nav a:hover {
  background-color: black;
}


body.is-active {
  overflow-y: hidden;
}




.cssbuttons-io-button {
 aspect-ratio: 4/1.3;
 background: gold;
 color: white;
 font-family: Poppins Regular;
 padding:  0.35vh 0.35vw;
 padding-left: 1vw;
 font-size: 1.5vw;
 text-align: center;
 border-radius: 1vw;
 border: none;
 display: flex;
 align-items: center;
 box-shadow: inset 0 0 1.6em -0.6em gold;
 overflow: hidden;
 position: relative;
  margin-top: 4vw;
 padding-right: 3vw;
  width: 13vw;
}



.cssbuttons-io-button .icon {
 background: white;
 position: absolute;
 display: flex;
 align-items: center;
 justify-content: center;
 height: calc(100% - 1vw);;
 width: 20%;
 border-radius: 0.8vw;
 box-shadow: 0.1em 0.1em 0.6em 0.2em gold;
 right: 0.5vw;
 transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
 width: calc(100% - 1vw);
}

.cssbuttons-io-button .icon svg {
 height: auto;
 width: 2vw;
 transition: transform 0.3s;
 color: black;
}

.cssbuttons-io-button:hover .icon svg {
 transform: translateX(.5vw);
}

.cssbuttons-io-button:active .icon {
 transform: scale(0.95);
}



.two-main {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}


.two-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/6;
  overflow: hidden;
}

.two-card-slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  width: 84vw;
  height: 50vw;
  place-items: center;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  border-radius: 1vw;
}


.two-card {
  aspect-ratio: 2/3;
  border-radius: 1vw;
  background-color: #171717;
  width: 17vw;
  margin: 0 2vw;
  max-height: 60vh;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  scroll-snap-align: center;
  border: thin solid rgba(255, 225, 53, .1);
}

.two-card-img {
  width: 85%;
  height: 50%;
  display: flex;
  justify-content: center;
}

.two-card-img img {
  color: white;
  padding: 0;
  margin: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  box-shadow: 0px 0px .5vw 0vw black;
  transition: ease-in-out all 250ms;
  /* in order: x offset, y offset, blur size, spread size, color */
}

.two-card-img img:hover {
  transform: scale(1.1) translateY(-2vw);
  box-shadow: 0px 0px 1vw 0vw #ffe135;
}

.two-card-info {
  color: white;
  border-top: #ffe135 solid thick;
  font-family: Poppins Regular;
  font-size: 1vw;
  padding-top: 5%;
  text-align: center;
  width: 85%;
  height: 20%;
  overflow-wrap: break-word;
}

.two-card-purchase{
  width: 85%;
  height: 10%;
  display: flex;
  justify-content: right;
}

.two-card-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  height: 100%;
  border-radius: 50%;
  transition: ease-in-out all 200ms;
}

.add-to-cart {
  aspect-ratio: 1/1;
  height: 100%;
  border-radius: 50%;
}



.two-card-cart:hover{
  background-color: #ffe135;
}

.two-card-cart:hover .hidden{
  display: inline;
  
}

.two-card-cart:hover .normal{
  display: none;
}

.two-card-cart img {
  pointer-events: none;
  height: 50%;
  width: 50%;
  transform: translate(-5%);
  background: none;
}

.show-cart li {
  display: flex;
}

.hidden {
  display: none;
}

.left-button {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-right: 1vw;
}

.left-button img{
  pointer-events:none;
  height: 70%;
  min-height: .4rem;
  min-width: .4rem;
  width: 70%;
  transition: ease-in-out all 200ms;
}

.right-button img{
  pointer-events:none;
  height: 70%;
  min-height: .4rem;
  min-width: .4rem;
  width: 70%;
transition: ease-in-out all 200ms;
}

.left-button button:hover img {
  transform: translate(-.4vw);
}

.right-button button:hover img {
  transform: translate(.4vw);
}



.right-button {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
}

.two-wrapper button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 3vw;
  height: 3vw;
  box-shadow: 0px 0px 1vw 0vw black;
  background-color: white;
  border-radius: 50%;
}

.three {
  max-height: calc(140vw * 0.52);
  min-height: calc(140vw * 0.52);
}

.three-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.three-main-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 84vw;
}


.three-main-body ul{
    margin-left: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  height: 90%;
  
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

.three-main-body span {
  font-size: 2vw;
  font-family: Poppins Bold;
  color: white;
}

.three-main-body p {
  font-size: 1.5vw;
  font-family: Poppins Regular;
  color: grey;
  text-align: left;
}

.three-main-body ul li span:before{
  font-family: Poppins Bold;
  color: #ffe135;
  position: relative;
  bottom: 1vw;

}

#zero-one:before{
  content: '01 ';
}

#zero-two:before{
  content: '02 ';
}

#zero-three:before{
  content: '03 ';
}

#zero-four:before{
  content: '04 ';
}





.three-main-body img {
  width: 35vw;
  height: auto;
}

.four-main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.four-main-body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/9;
  width: 84vw;
}

.four-list {
  display: flex;
  flex-direction: column;
  overflow-wrap: none;
  height: 60%;
  width: 30%;
  color: white;
  font-size: 1.5vw;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: Poppins Regular;
}

.four-list embed {
  height: auto;
  position: relative;
  width: 4vw;
  left: 1vw;
}

.four-image {
  width: 35%;
}

.four-list-item-one {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 33.3%;
  width: 100%;
}

.four-list-item-two {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 33.3%;
}


.four-main-body img {
  width: 40vw;
  height: auto;
}

.four-list-item-one:nth-child(1){
  transform: translate(1vw);
}

.four-list-item-one:nth-child(2){
  transform: translate(4vw, 4vw);
}


.four-list-item-one:nth-child(3){
  transform: translate(2vw, 3vw);
}



.four-list-item-two:nth-child(1){
  transform: translate(-8vw);
}

.four-list-item-two:nth-child(2){
  transform: translate(-4vw, 4vw);
}

.four-list-item-two:nth-child(3){
  transform: translate(-7vw, 3vw);
}

.five-main {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.five-container {
  grid-row-start: 1;
  grid-column-start: 1;
  width: 65vw;
  background-color: #232323;
  aspect-ratio: 16/9;
  border-radius: 1vw;
  border: thin solid rgba(255, 225, 53, .5);
}

.five-main-body {
  grid-row-start: 1;
  grid-column-start: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  z-index: 99;
  aspect-ratio: 16/9;
  width: 84vw;
}

.five-review-container {
  margin-top: 3vw;
  overflow-x: scroll;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: none;
  gap: 4.5vw;
  width: calc(100% + 1vw);

  scroll-snap-type: x mandatory;
}

.five-review-container::-webkit-scrollbar {
  display: none; /* change to "none" */
}


.review-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  scroll-snap-align: center;
  width: 23vw;
  padding: 0 1vw;
  aspect-ratio: 6/5;
  border-radius: 1vw;
  color: white;
  background-color: #1B150F;
  border: thin solid rgba(255, 225, 53, .5);
}

.five-name {
  font-family: Poppins Bold;
  margin-top: 1vw;
  font-size: 2vw;
  text-align: center;
}

.five-info {
  font-family: Poppins Regular;
  font-size: 1vw;
}
.review-card img {
  width: 10vw;
  height: auto;
  margin: 0;
  padding: 0;
}


.review-button-container {
  background-color: gold;
  height: 4vw;
  width: 8.2vw;
  border-radius: 2vw;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.button-container {
  height: 100%;
  width: 100%;
  grid-row-start: 1;
  grid-column-start: 1;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
}

.container {
  height: 4vw;
  width: 8.2vw;
  border-radius: 2vw;
  position: relative;
  grid-row-start: 1;
  grid-column-start: 1;
}

/* Hide default HTML checkbox */
.checkbox {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.switch {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2vw;
  cursor: pointer;
  transition: all 0.2s e1ase-out;
  grid-row-start: 1;
  grid-column-start: 1;
  pointer-events: none;
}

/* The slider */
.slider {
  height: 3.5vw;
  aspect-ratio: 1/1;
  position: absolute;
  left: calc(50% - 3.5vw/2 - 2.05vw);
  top: calc(50% - 3.5vw/2);
  border-radius: 2vw;
  background: #FFFFFF;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-out;
  cursor: pointer;
  z-index: 10;
}

.checkbox:checked + .switch .slider {
  left: calc(50% - 3.5vw/2 + 2.05vw);
}




.review-button-container button {
  height: 3.5vw;
  aspect-ratio: 1/1;
  border: none;
  padding: 0;
  background: none;
  margin: 0 0.3vw;
  font-size: 1vw;
  z-index: 11;
  font-family: Poppins Regular;
}

.review-button-container button:nth-child(1) {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.review-button-container button:nth-child(2) {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.six {
  max-height: calc(270vw * 0.52);
  min-height: calc(270vw * 0.52);
}
.six-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 84vw;
  max-height: 120vw;
  min-height: 120vw;
}

.accordion-item {
  border-radius: 1vw;
  padding: 0vw 2.5vw 0vw 2.5vw;
  background-color: #303030;
  transition: all ease-in-out 150ms;
}

.accordion-item:hover {
  background-color: #232323;
}

.accordion-title {
display: flex;
align-items: center;
cursor: pointer;
color: white;
height: 4vw;
width: 100%;
font-size: 1.5vw; 
font-family: Poppins Bold;
transform: translate(0, 1vw);
}

.accordion-title::after{
margin: 0 0px 0 auto;
padding: 0;
content: '+';
font-size: 2vw; 
color: #ffe135;
}


.accordion-answer {
  max-height: 0px;
  overflow: hidden;
  transition: 250ms ease-in-out max-height;
  color: white;
  font-size: 1.5vw; 
  font-family: Poppins Regular;
}

footer {
  overflow: hidden;
  max-width: 100vw;
  min-height: fit-content;
  height: max-content;
  width: 95vw;
  padding: 0 2.5vw;
  background-image: url(/Images/background-footer.svg);
  background-size: cover;
}

.footer-info-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 25vh;
}

.terms{
    width: 40vw;
    height: 100%;
}

.footer-img{
    float: left;
    width: 24vw;
    height: auto;
}

.footer-img img {
  width: 24vw;
  height: auto;
}

.terms p {
  font-size: 1vw;
  color: white;
  font-family: Poppins Regular;
}

.footer-list-container {
  color: white;
  min-height: fit-content;
  list-style: none;
}

.footer-list-container h2 {
  text-align: center;
  font-family: Poppins Bold;
  font-size: 1.5vw;
  padding-right: 2vw;
}

.footer-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
}

.footer-list-item {
  padding: 0;
  margin: 0;
}
.footer-list-item a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: grey;
  font-size: 200%;
  font-family: Poppins Regular;
}

.contact {
  width: 100%;
  padding-left: 1vw;
}

.contact h2 {
  color: white;
  font-family: Poppins Bold;
}


.contact a {
  color: gold;
  text-decoration: none;
  font-family: Poppins Regular;
}

.contact p {
  color: white;
  font-family: Poppins Light;
}





@media screen and (max-width: 700px) {


  .terms{
      width: 100%;
      height: fit-content;
  }

  .footer-img{
    float: left;
    width: 15rem;
    height: auto;
}


.footer-img img {
  width: 15rem;
  height: auto;
}

.terms p {
  font-size: .7rem;
  color: white;
  font-family: Poppins Regular;
}
  
  .footer-info-container {
    min-height: fit-content;
    display: flex;
    flex-direction: column;
  }
  .footer-list-container {
    height: fit-content;
  }
  .footer-list-item {
    text-align: center;
    font-size: 1rem;
    margin: 0;
    padding: 0;
  }

  .footer-list-container h2 {
    min-height: fit-content;
    font-size: 1rem;
    padding-right: 0;
  }
}