/* @font-face {
  font-family: felixti;
  src: local('Felixti'), url(./Felixti.8efc8fa7.ttf) format('truetype');

} */

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Anton+SC&family=Archivo+Black&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

p {
  color: #eee;
}

body {
  margin: 0;
  margin-top: -19px;
  font-family: 'Gilroy', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, courier new, monospace;
}

@media (max-width: 540px) {
  .FooterAlt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
  }
}

.FooterAlt__link {
  color: grey;
  font-size: 16px;
  font-family: times new roman, Times, serif;
}

@media (max-width: 540px) {
  .FooterAlt__link {
    margin: 5px 0;
  }
}

.FooterAlt__delimiter {
  margin: 0 5px;
}

@media (max-width: 540px) {
  .FooterAlt__delimiter {
    display: none;
  }
}

/* .Landing {
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
} */

.Info {
  padding: 20px;
}

.Footer {
  height: 20px;
  box-sizing: border-box;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: transparent;
}

.Footer__link {
  margin: 0 10px;
  color: #eec59f;
  text-transform: uppercase;
  font-size: 10px;
  font-family: times new roman, Times, serif;
}

@media (max-width: 359px) {
  .Footer__link {
    font-size: 9px;
  }
}

@media (max-width: 540px) {
  /* .Frame {
    max-height: calc(100% - 70px);
    margin-bottom: 60px;
    margin-top: 10px;
    padding: 10px 15px;
  } */
}

@media (min-height: 700px) {
  /* .Frame {
    padding: 30px 15px;
  } */
}

.Frame__box {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: fill;
  position: absolute;
}

/* .Frame > div {
  max-width: 100%;
} */

.notifyTransition-appear,
.notifyTransition-enter {
  opacity: 0.01;
}

.notifyTransition-appear-active,
.notifyTransition-enter-active {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.notifyTransition-exit {
  opacity: 1;
}

.notifyTransition-exit-active {
  opacity: 0.01;
  transition: opacity 0.1s ease-in;
}

.Buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  /* flex: 1; */
  margin: 0;
  padding: 0 15px;
  gap: 2rem;
  height: 50px;
  /* border: 1px solid black; */
  /* width: calc(100% + 100px); */
}

@media (max-width: 540px) {
  .Buttons {
    flex-direction: column;
    padding: 0 5px;
  }
}

@media (max-width: 540px) {
  .Buttons__item {
    height: 48px;
    margin: 10px 0;
    max-width: 80%;
  }
}

.Buttons__item__img {
  width: 10px;
  height: 10px;

  object-fit: fill;
  /* position: absolute; */
  display: none;
}

.Buttons__item__text {
  font-size: 24px;
  position: relative;
  background-color: red;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 24px;
  color: white;
  display: flex;
  gap: 2rem;
}

.Buttons__item:hover {
  opacity: 1;
}

@media (max-width: 540px) {
  .Buttons__item__text {
    font-size: 20px;
  }
}

/* .Steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
} */
/* 
.Steps__text {
  margin: 0 25px;
  font-size: 42px;
  font-weight: 700;
  min-width: 300px;
  text-align: center;
} */

/* new css for navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px; /* Adjust height as needed */
  background-color: rgb(40, 38, 38); /* Semi-transparent background */
  color: white;
  text-align: center;
  padding-top: 2rem;
  z-index: 100; /* Ensure it's above the video */
}

/* Style for Steps container */
.navbar .Steps {
  display: flex;
  justify-content: center;
  gap: 15rem;
}

/* Style for Steps arrows */
/* .navbar .Steps__arrow {
  width: 20px;
  height: 20px;
  margin-right: 10px;
} */

/* Style for Steps text */
.navbar .Steps__text {
  font-weight: bold;
  color: #fefdfd;
}

/* Style for arrow image */
.navbar .Steps__arrow__img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 0.5px solid rgb(151, 148, 148);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -10px;
  transition: border 1s ease-in-out;
}

.Steps__arrow__img-2 {
  width: 40px;
  height: 40px;

  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -10px;
}

.navbar .left {
  transform: scaleX(-1);
}

.navbar .Steps__arrow__img:hover {
  border: transparent;
}

/* Style for Text container */
.navbar .Text {
  margin-top: 20px;
}

/* Style for Text item */
.navbar .Text__item {
  font-size: 16px;
  color: #555555;
}

/* Style for Buttons container */
.navbar .Buttons {
  margin-top: 20px;
}

/* Style for Buttons item */
.navbar .Buttons__item {
  margin-right: 10px;
}

/* Style for button image */
.navbar .Buttons__item__img {
  width: 30px;
  height: auto;
}

/* Style for button text */
.navbar .Buttons__item__text {
  font-weight: bold;
  color: #ffffff;
  background-color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Hover effect for button */
.navbar .Buttons__item__text:hover {
  background-color: #0056b3;
}

/* end new navbar css */

@media (max-width: 640px) {
  .Steps__text {
    margin: 0 5px;
    min-width: 160px;
    font-size: 24px;
  }
}

/* .Steps__arrow {
  padding: 0 15px;
  cursor: pointer;
} */

.Steps__arrow__img.disabled {
  opacity: 0.5;
}

.Text {
  /* position: relative; */
  text-align: center;
  margin-bottom: 50px;
  overflow: overlay;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 540px) {
  .Text {
    padding: 10px 5px;
  }
}

.Text::-webkit-scrollbar-button {
  background-repeat: no-repeat;
  width: 5px;
  height: 0;
}

.Text::-webkit-scrollbar-track {
  background-color: rgba(236, 237, 238, 0.3);
}

.Text::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(109, 192, 200, 0.5);
}

.Text::-webkit-scrollbar-thumb:hover {
  background-color: rgba(86, 153, 159, 0.5);
}

.Text::-webkit-resizer {
  background-repeat: no-repeat;
  width: 4px;
  height: 0;
}

.Text::-webkit-scrollbar {
  width: 10px;
}

.Text__item {
  font-size: 28px;
  /* margin: 0px 0; */
  width: 100%;
  max-width: 700px;

  color: white;

  margin: 1rem auto;
}

@media (max-width: 540px) {
  .Text__item {
    margin: 25px 0;
    font-size: 20px;
  }
}

.Text__item--big {
  font-weight: 700;
  font-size: 42px;
}

@media (max-width: 540px) {
  .Text__item--big {
    font-size: 24px;
  }
}

.browser {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.browser__img {
  width: 76px;
  height: 76px;
  margin-right: 20px;
}

@media (max-width: 540px) {
  .browser__img {
    width: 48px;
    height: 48px;
  }
}

.Loading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  width: 90%;
  margin: 0 5%;
}

@media (max-width: 540px) {
  .Loading {
    height: 48px;
  }
}

.Loading__item {
  height: 60px;
}

@media (max-width: 540px) {
  .Loading__item {
    height: 36px;
  }

  .mobile {
    padding-bottom: 180px !important;
  }
}

.Loading__item--left {
  background: #f3edd1;
}

.Loading__item--right {
  background: grey;
}

a {
  color: #f3edd1;
  text-decoration: none;
}

.meter {
  box-sizing: content-box;
  height: 60px;
  /* Can be anything */
  position: relative;
  margin: 60px 0 20px 0;
  /* Just for demo spacing */
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: 8px;
  background-color: rgb(222, 215, 138);
  background-image: linear-gradient(
    center bottom,
    rgb(182, 170, 48) 37%,
    rgb(255, 252, 94) 69%
  );
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.meter > span:after,
.animate > span {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(224, 23, 23, 0) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.animate > span:after {
  display: none;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

.line {
  width: 15%;
  border-bottom: 2px solid #d8d8cf;
  margin: 0 20px;
  display: none;
}

#promo-div > H2 {
  font-family: 'Impact', 'Franklin Gothic Medium';
  font-weight: 300;
  background: -webkit-linear-gradient(#252424, #b3b1b1, #9a9797);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

#promo-div > H2:hover {
  background: -webkit-linear-gradient(#ffffff, #aba8a8);
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#promo-div > H2 > #v {
  font-size: 18px;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.questions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: absolute;
  gap: 2rem;

  align-items: center;
  /* position: absolute; */
  box-sizing: border-box;
  /* top: 0;
  bottom: 0;
  right: 15%; */
  margin: auto;
  /* max-width: 810px; */
  /* max-height: 630px; */
  width: 100%;
  height: 100vh;
  padding-bottom: 50px;
  background-color: rgba(15, 14, 14, 0.1);
}

@media only screen and (max-width: 1400px) {
  #background-video {
    height: 100%;
  }

  /* .Frame {
    top: 0;
    bottom: 0;
    right: 1%;
  } */
}

.prom-img {
  max-height: 150px;
}

/* new css  */
.Welcome__text {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: white;
  /* margin-top: 5rem; */
}

.cong {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: white;
}

footer {
  background-color: transparent;
  color: #f39b46;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

footer a {
  font-size: 12px;
  color: #f39b46;
}

footer .container {
  padding-top: 2rem;
  font-size: 12px;
}

/* ceckbox css */

.checkbox-icon {
  color: white;
}

.btn-check-container {
  display: flex;
}

.Buttons__item,
.Buttons__item-btn {
  z-index: 20;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 600px;
  height: 50px;
  color: white;
  gap: 2rem;
  cursor: pointer;
  opacity: 0.9;
  /* border: 1px solid black; */
  border-radius: 14px;
  font-weight: 700;
}
@media (max-width: 710px) {
  .Buttons__item,
  .Buttons__item-btn {
    width: 500px;
  }

  .questions {
    align-items: center;
  }

  .Buttons {
    align-items: normal;
  }
}

@media (max-width: 540px) {
  .Buttons__item,
  .Buttons__item-btn {
    width: 300px;
  }

  .questions {
    align-items: center;
  }

  .Buttons {
    align-items: normal;
  }
}

.Buttons__item-btn {
  border: 1px solid rgb(255, 255, 255);
  padding: 2rem;
  background-color: rgba(110, 107, 107, 0.7);
}

.round {
  border: 1px solid white;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Buttons__item-play-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .Buttons__item-play-now:hover {
  background-color: #efdab9;
  color: black;
} */

.active {
  background-color: rgba(165, 161, 161, 0.7);
}

.active-round {
  background-color: white;
}

.checkbox-icon {
  color: #000;
  display: none;
}

.active-round .checkbox-icon {
  color: #000;
  display: block;
}

/* .animate__animated {
  margin-top: 2rem;
} */

.text-ani {
  margin: 0;
}

/* progress bar */
.w3-border {
  background-color: rgb(97, 95, 95);
}

.w3-grey {
  background-color: rgb(255, 255, 255);
  height: 3px !important;
}

.last {
  position: relative;
}

/* animation */

@keyframes gradientAnimation {
  0% {
    background-position: left center;
  }
  50% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}

.btn-grad {
  background-image: linear-gradient(
    to right,
    transparent 0%,
    #efdab9 51%,
    transparent
  );
  margin: 10px;
  padding: 20px 55px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  /* border: 1px solid #efdab9; */
  box-shadow: 0 0 10px #efdab9;
  border-radius: 10px;
  display: block;
  animation: gradientAnimation 2s normal;
  animation-delay: 2s;
  font-weight: 600;
  font-size: 18px;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  animation-play-state: paused;
}

.bold {
  font-weight: bold;
}

/* new css Raid: Shadow Legends */

.icon-l {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 250px;
}

.logo {
  margin-top: 2rem;
  position: relative;
  z-index: 50000;
}

/* .icon-l img {
  max-width: 25vw;
} */

.dud {
  position: fixed;
  width: 500px;
  height: 500px;
  animation: float 8s ease-in-out infinite;

  /* max-height: 90%; */
}

.dud-1 {
  /* left: 19vw;*/
  left: 0;
  z-index: 2;
}

.dud-2 {
  position: fixed;
  right: 130px;
  /* right: 14vw;*/
  bottom: 50px;
  z-index: 1;
}

.dud-3 {
  height: 80%;
  position: fixed;
  right: 100px;
  top: 10%;
}

.bg-img {
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: -1;
  bottom: 0;
  right: 0;
}
.cute1 {
  position: fixed;
  z-index: 1;
  top: 550px;
  right: 400px;
  animation: float 8s ease-in-out infinite;
}

/* animation gifs*/
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}

.cute2 {
  position: fixed;
  top: 10px;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

.bomb {
  position: fixed;
  z-index: 20;
  animation: float 8s ease-in-out infinite;
  top: 200px;
  right: 400px;
}

@media only screen and (max-width: 1400px) {
  #background-video {
    height: 100%;
  }

  .dud {
    position: fixed;
    bottom: 0;
    max-height: 50%;
    max-width: 40%;
  }

  .dud-1 {
    left: 12vw;
  }

  .cute2 {
    position: fixed;
    z-index: 20;
    left: -50px;
    max-width: 50%;
  }

  .logo {
    top: 10px;
    right: -30px;
    width: 80%;
    height: 80%;
  }

  /* .dud-2 {
        right: 12vw;
        z-index: 1;
    } */

  .Frame {
    top: 17vw;
    height: 45%;
  }

  .bg-img {
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    z-index: -1;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  .cute1 {
    right: 0px;
    width: 40%;
    top: 670px;
  }

  .dud {
    left: 10px;
    bottom: 60px;
    width: 300px;
    height: 300px;
  }

  .bomb {
    right: 200px;
    top: 590px;
    width: 50px;
    z-index: 1;
  }

  .cute2 {
    width: 230px;
    left: 0px;
  }

  .phone {
    display: block !important;
    position: fixed;
    z-index: 3;
    top: 700px;
    width: 30px;
    right: 250px;
    animation: float 10s ease-in-out infinite;
  }
}

@media only screen and (max-width: 1046px) {
  .logo {
    top: -30px;
  }

  .dud-2 {
    height: 40%;
  }
}

@media only screen and (max-width: 780px) {
  .mobile-video {
    display: block !important;
  }

  .big-video {
    display: none;
  }
  #background-video {
    height: 100%;
  }

  .dud {
    position: fixed;
    bottom: 0;
    height: 20%;
    display: none;
  }

  .dud-1 {
    left: -15vw;
  }

  .Frame {
    top: 20vw;
    height: 60%;
    max-height: 55%;
  }

  .prom-img {
    max-height: 100px;
  }

  .logo {
    width: 100px;
    left: 80px;
    margin-top: 1.8rem;
  }

  .cute1 {
    right: 80px;
    width: 40%;
    top: 80%;
  }

  .dud {
    left: 30px;
    bottom: 15%;
  }

  .bomb {
    right: 200px;
    top: 590px;
    width: 50px;
    z-index: 1;
  }

  .cute2 {
    width: 300px;
    left: -30px;
    top: 80px;
  }

  .phone {
    display: block !important;
    position: fixed;
    z-index: 3;
    top: 700px;
    width: 30px;
    right: 250px;
    animation: float 10s ease-in-out infinite;
  }

  .pig {
    display: block !important;
  }

  .logo-container {
    z-index: 2;
    left: 25%;
  }
}

.vid {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.mobile-video {
  display: none;
}

.phone {
  display: none;
}

.pig {
  display: none;
}

.logo-container {
  z-index: 3;
  position: fixed;

  top: 12%;
  right: 46%;
}

.logo2 {
  width: 170px;
}

/* new */

.text-container {
  /* background-color: red; */

  font-size: 32px;
  color: rgb(29, 29, 29);
  /* font-family: 'Archivo Black', sans-serif; */
  font-family: 'Anton', sans-serif;
  /* font-family: 'Anton SC', sans-serif; */
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  margin: 0 auto;
  margin-top: 2rem;
  text-align: center;
  height: 1200px;
  cursor: pointer;
}

.text-container h3 {
  transform: translateY(-30px);
}

.text-container h1 {
  background: -webkit-linear-gradient(right, #000000, #181717);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-p {
  background: -webkit-linear-gradient(left, #c2bfbf, #fff);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Landing {
  display: flex;
  align-items: center;
  justify-content: start;
  /* padding-left: 10rem; */
  flex-direction: column;
}

.Landing h1 {
  transform: translateY(-50px);
}

/* .plus-container {
  display: flex;
} */
.plus-container {
  display: flex;
  align-items: center; /* Center items vertically */
  gap: 2rem;
  justify-content: center;
  height: 170px;
  transform: translateY(-150px);
  position: absolute;
}

.plus-container span {
  font-size: 17px;
  background: -webkit-linear-gradient(#a3a1a1, #fff);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plus-container p {
  background: -webkit-linear-gradient(#a3a1a1, #c8c3c3);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item {
  padding: 2rem; /* Spacing around items */
  /* text-align: center;  */
  position: relative; /* Position relative for the line */
}

.item:not(:last-child):after {
  content: '';
  position: absolute;
  top: 40%;
  right: -10px;
  height: 30%;
  width: 1px;
  background-color: #ccc;
}

.inner-item {
  display: flex;
  flex-direction: column;
}

.inner-item span {
  transform: translateY(-20px);
}
p {
  /* text-align: center; */
  /* transform: translateY(-90px); */
  font-size: 18px;
}

.top-p {
  font-size: 18px;
  transform: translateY(-90px);
}
/* CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);

  opacity: 100%;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn:hover {
  background: linear-gradient(45deg, #1f1f1f, #353434, #8f8d8d);
}

.btn {
  background: linear-gradient(45deg, #1f1f1f, #272626, #7a7a78);
  transition: background 1s ease-in-out;
  color: white;
}

/* .btn:hover {
  background: linear-gradient(45deg, #fffb00, #ffffff, #ff7300);
  color: black;
} */
.button-85:before {
  content: '';
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.btn-promo {
  padding: 0.6em 2em;
  /* border: 1px solid white; */
  outline: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

/* btn-container */
.btns {
  /* margin-left: 10rem; */
  text-align: center;
  margin: 0;
  position: relative;
  bottom: -10px;
  left: -50px;
}

/* .logo-container-2 {
  text-align: center;
}

.promo-container {
  text-align: center;
} */

#promo-div {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  padding-left: 8rem;
  align-items: center;
  max-height: 50px;
}

.promo {
  /* text-align: center; */
  transform: translateY(-100px);
}

.promo-price {
  padding-top: 1rem;
  width: 300px;
  padding-left: 5.5rem;
}

.btn-img {
  width: 300px;
}

/* for laptop */
@media screen and (max-width: 1440px) {
  .text-container {
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    height: 300px;
  }

  .plus-container {
    position: sticky;
    right: 20px;
    gap: 1rem;
  }

  .Landing h1 {
    font-size: 36px;
  }

  .top-p {
    font-size: 14px;
    padding-top: 1rem;
  }

  .promo-price {
    width: 200px;
    padding-top: 0.1rem;
  }

  .promo h2 {
    font-size: 20px;
  }

  .btns {
    top: -180px;
  }

  .logo-container-2 img {
    width: 150px;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
  }
}

/* phone screens */
@media screen and (max-width: 760px) {
  .Landing {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
    width: 300px;
  }

  .top-p {
    font-size: 10px;
    padding-top: 1rem;
  }

  .plus-container {
    display: none;
  }

  .item {
    max-width: 50px;
  }

  .item p {
    font-size: 1px;
  }
  .btns {
    transform: translateY(100px);
  }
  .promo {
    position: relative;
    right: 80px;
  }
}

@media (min-width: 1200px) {
  .questions {
    justify-content: start;
    padding-top: 13rem;
    z-index: 10;
  }

  .animate__animated {
    margin-top: 2rem;
  }

  .plus-container {
    display: flex;
    align-items: center; /* Center items vertically */
    gap: 2rem;
    justify-content: center;
    height: 170px;
    transform: translateY(-150px);
    /* position: absolute; */
  }
}

/* wheel style */

.spinner-container {
  position: fixed; /* Changed to fixed */
  left: 50%;
  bottom: 50px; /* Adjust this value to control the distance from the bottom */
  transform: translateX(-50%); /* Center horizontally */
  width: 500px; /* Increased width */
  height: 500px; /* Increased height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel {
  position: relative;
  width: 100%; /* Adjusts with spinner-container */
  height: 100%; /* Adjusts with spinner-container */
}

.wheel img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.outer {
  width: 100%; /* Adjusts with wheel */
  z-index: 1;
}

.big {
  width: 90%; /* Adjusts with wheel */
  z-index: 2;
}

.small {
  width: 40%; /* Adjusts with wheel */
  z-index: 3;
}

.pointer {
  position: absolute;
  top: 3% !important;
  left: 50%;
  transform: translateX(-50%);
  width: 15%; /* Adjust the size of the pointer */
  z-index: 5; /* Ensure pointer is always on top */
}

.btn {
  position: absolute;
  z-index: 5;
  top: 42% !important;
  left: 42%;
  width: 80px; /* Reduced button size */
  height: 80px; /* Reduced button size */
  border-radius: 50%;
  font-size: 150px; /* Reduced font size */
  cursor: pointer;
  color: white;
  text-shadow: 2px 2px 4px #39d05c;
}

.btn p {
  color: white;
}

/* spin animation infinity */
/* Animation for counterclockwise spinning */
@keyframes spin-clockwise {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Animation for clockwise spinning */
@keyframes spin-counterclockwise {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Media query for laptop screens */
@media screen and (max-width: 1366px) and (max-height: 768px) {
  .spinner-container {
    width: 300px; /* Reduced width for laptop screens */
    height: 400px; /* Reduced height for laptop screens */
    bottom: -20px;
  }

  .btn img {
    width: 150px; /* Reduced button size */
    height: 150px; /* Reduced button size */
  }

  .btn {
    top: 40% !important;
    left: 37%;

    font-size: 150px; /* Reduced font size */
  }

  .pointer {
    width: 12%; /* Adjusted size of the pointer */
    top: 15% !important;
  }

  .text-container h2 {
    transform: translateY(-100px);
    font-size: 20px !important;
    line-height: 35px !important;
  }

  footer .container {
    padding-top: 5rem !important;
  }
}

/* Media query for laptop screens */
@media screen and (max-width: 720px) {
  .spinner-container {
    width: 300px; /* Reduced width for laptop screens */
    height: 400px; /* Reduced height for laptop screens */
    bottom: 150px;
  }

  .btn img {
    width: 150px; /* Reduced button size */
    height: 150px; /* Reduced button size */
  }

  .btn {
    top: 40% !important;
    left: 37%;

    font-size: 150px; /* Reduced font size */
  }

  .pointer {
    width: 12%; /* Adjusted size of the pointer */
    top: 15% !important;
  }

  .text-container h2 {
    transform: translateY(50px);
    font-size: 20px !important;
    line-height: 35px !important;
    padding-left: 3rem !important;
  }

  .text-container p {
    padding-top: 5rem;
    padding-left: 3rem !important;
  }
}

/* popup */

.popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: -150px;
  width: 100%; /* Full width */
  height: 200%; /* Full height */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

.popup .text {
  padding-top: 4rem;
  font-family: 'Impact', 'Franklin Gothic Medium';
  font-size: 26px;
  color: rgb(26, 25, 25);
  -webkit-text-stroke: 1px #f8f8f8;
  text-shadow: 0px 1px 4px #000000;
}

.popup p {
  color: rgb(11, 11, 11);
  font-size: 23px;
}

.popup strong {
  font-size: 30px;
}

.popup-content {
  background-image: url('./assets/popup.png'); /* Replace with your image path */
  background-size: cover; /* Make the background cover the entire area */
  background-position: center; /* Center the background image */
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  /* border: 1px solid #888; */
  width: 350px; /* Adjust width as needed */
  height: 500px;
  text-align: center;
  color: rgb(26, 25, 25); /* Change text color to ensure readability */
  border-radius: 10px; /* Optional: Add rounded corners */
}

.close {
  color: #ffffff;
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.huge {
  font-size: 60px;
}

.raid-logo {
  width: 35%;
}

.text-container h2 {
  /* -webkit-text-stroke: 0.2px #ece6e6; */
  text-shadow: 0px 1px 4px #632525;
  color: white;
  line-height: 40px;
  font-family: Open Sans, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 35px;
  margin-top: 1rem;
  padding-left: 1rem;
}

.text-container p {
  color: #f4d06f;
  font-family: Open Sans, sans-serif;
  font-weight: bold;
  transform: translateY(-30px);
  font-size: 15px;
  padding-left: 1rem;
}

/*modal imprint*/
#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 1000;
  background-color: whitesmoke;
  width: 500px;
  max-width: 80%;
  text-align: left;
  font-size: 11px;
  line-height: 18px;
  color: #212223;
  text-transform: uppercase;
}

#modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid grey;
}

.modal-header .title {
  font-weight: 1.25em;
  font-weight: bold;
  font-size: 11px;
}

.modal-header .close {
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
}

.modal-body {
  padding: 10px 20px;
}

.modal p {
  color: grey;
  font-size: 11px;
}

#spinMessage {
  cursor: pointer;
}

/* claim */

.claim-btn {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  border: none; /* No border */
  padding: 10px 20px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underline */
  display: inline-block; /* Inline-block for proper sizing */
  font-size: 20px; /* Font size */
  margin-top: 20px; /* Space above the button */
  cursor: pointer; /* Pointer cursor on hover */
  border-radius: 5px; /* Rounded corners */
  text-shadow: 0px 1px 7px #000000;
}

.claim-btn:hover {
  background-color: #45a049; /* Darker green on hover */
}

.promo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
  cursor: pointer;
}

.promo-img {
  width: 70%;
}
