@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --clr-primary: #a34400;
  --clr-dark: #141819;
  --clr-white: #fff;
  --clr-orange: #ff9040;
  --clr-orange-gradient: linear-gradient(180deg, #a34400 20%, #ff9040 90%);
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  background-color: #141819;
  color: #fff;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary);
  opacity: 0.8;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

button:focus-visible {
  outline: none !important;
}

img {
  max-width: 100%;
}

section {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1176px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* scroll bar */

.scrollbar-gradient::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.scrollbar-gradient::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
}

/* scroll bar end */

/* scroll top */

#scrollTotop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-orange);
  width: 34px;
  height: 34px;
  border-radius: 100%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  cursor: pointer;
  box-shadow: 0 3px 15px rgb(0 0 0 / 30%);
}

#scrollTotop:hover {
  background-color: var(--clr-primary);
}

#scrollTotop:after {
  content: "\e5ce";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  color: var(--clr-white);
}

#scrollTotop.showscroll {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

h1,
h2,
h3 {
  font-family: "Dino And Friend";
}

h1 span {
  font-family: "Dino And Friend";
}

/* scroll top end */

/* Header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background 0.3s;
  transform: translateY(0);
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
  background: var(--clr-dark);
  box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
  z-index: 999;
}

/* Button */

.ThemeBtn {
  width: 163px;
  height: 44px;
  border-radius: 30px;
  background: linear-gradient(#ff9040, #a34400);
  padding: 15px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s;
  font-size: 14px;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

.ThemeBtn:hover {
  animation-name: rubberBand;
  color: var(--clr-white);
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.02, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.02, 1);
  }

  50% {
    transform: scale3d(1, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1, 1);
  }

  75% {
    transform: scale3d(1, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.custom-space {
  padding: 80px 0px;
}

p.text-para {
  margin: 20px 0 0;
}

/* TopBanner  start*/

.navbar {
  padding: 10px 0;
}

.navbar-brand {
  padding: 0;
}

.topNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.topNav .white {
  background: #ffffff;
  color: #000;
}

.TopBanner {
  position: relative;
  height: 100vh;
}

.BrandVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.BannerLogo {
  height: 100%;
  width: 100%;
  max-width: 500px;
}

.BannerBottom {
  position: absolute;
  bottom: -10px;
  width: 100%;
}

.BannerInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.scrollDown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scrollDown span {
  color: #fff;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.scrollDown a {
  width: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-orange-gradient);
  border-radius: 30px;
}

.scrollDown a i {
  color: var(--clr-white);
  font-size: 20px;
}

.form-control {
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: #fff !important;
  box-shadow: none;
}

header .navbar-brand img {
  opacity: 0;
}

.sticky-header .navbar-brand img {
  opacity: 1;
}

#mouse-scroll .mouse-in {
  -webkit-animation: animated-mouse 1.5s ease infinite;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    transform: translateY(-5px);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* TopBanner  End*/



.ToggleBtn-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ToggleBtn-menu h6 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.ToggleBtn {
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 50px;
}

.ToggleBtn span {
  display: block;
  width: 30px;
  background: var(--clr-white);
  height: 2px;
  transition: 0.3s ease-in-out;
}

.ToggleBtn span:nth-child(2) {
  width: 20px;
}

.ToggleBtn:hover span:nth-child(2) {
  width: 30px;
}

.ToggleBtn:hover span:first-child,
.ToggleBtn:hover span:last-child {
  width: 20px;
}

/* side nav */

.sidenav {
  position: fixed;
  top: 0;
  right: var(--sidenav_right, -300px);
  width: 300px;
  height: 100vh;
  transition: all 0.2s ease-in-out;
  z-index: 9999;
}

.sidenav-body {
  width: 100%;
  height: 100%;
  background: var(--clr-dark);
  padding: 20px;
  box-shadow: 0 0 15px rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.sidenav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(5px);
}

.sidenav.active {
  --sidenav_right: 0;
}

.sidenav.active>.sidenav-overlay {
  opacity: 1;
  visibility: visible;
}

.sidenav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid var(--clr-white);
  cursor: pointer;
  background: transparent;
  color: var(--clr-white);
}

.sidenav__list {
  flex: 1;
  overflow: auto;
}

.sidenav__list .sidenav__link {
  padding: 10px 0;
  display: flex;
  color: var(--clr-white);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.sidenav__list .sidenav__link:hover,
.sidenav__list .sidenav__link.active {
  color: var(--clr-primary);
}

/* side nav end */


/* footer start */
.footerContent {
  position: relative;
  width: 100%;
  background: url(../img/footerImg.png) center no-repeat;
  background-size: cover;
  padding: 130px 0 0;
}

.footertopImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.socialIcon {
  display: flex;
  align-items: center;
  justify-content: end;
}

.socialIcon i {
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  border: 4px solid #a34400;
  color: #a34400;
}

.line::after {
  content: "";
  width: calc(100% - 24px);
  height: 1px;
  background-color: #ffffff3b;
  margin: 30px auto 0;
}

.Copyright p {
  font-size: 12px;
  margin: 0;
}

.FooterText p {
  margin: 0;
}

/* footer End*/
/* About start */
.pink {
  color: #f3a0c9;
}

.blue {
  color: #4d64e6;
}

.green {
  color: #32aa14;
}

.yellow {
  color: #f7b511;
}

.headdash {
  display: flex;
  align-items: center;
  gap: 10px;
}

.headdash span {
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, #f3a0c9, #5d2c5d);
}

.headdash span:nth-child(2) {
  width: 25px;
}

.headdash span:nth-child(3) {
  width: 20px;
}

.headdash span:nth-child(4) {
  width: 10px;
}

.AboutSubHead {
  display: flex;
  align-items: end;
  gap: 10px;
  padding-top: 20px;
}

.AboutSubHead p {
  margin: 0px;
}

.verify-box .form-control {
  background: transparent;
  padding: 15px 20px;
  border-image: linear-gradient(90deg, #f3a0c9 0%, #5d2c5d 100%) 30;
  border-style: solid;
  border-width: 1px;
  border-left: none;
  border-right: none;
  border-top: none;
  color: #fff;
  padding-left: 0px;
}

.verify-box {
  position: relative;
}

.verify-box button {
  position: absolute;
  right: 10px;
  top: -5px;
  border: 0px;
  background: transparent;
  width: 45px;
  height: 45px;
}

.Newsletter h1 {
  margin-top: -80px;
}

.FooterText a {
  color: #fff;
}

.socialIcon {
  cursor: pointer;
}

.TopBanner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 0;
}

.navbar-brand img {
  width: 100%;
  max-width: 120px;
  transition: all 0.3s ease-in-out;
}

.modal-body {
  background: url(../img/modal-img.png);
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 15px;
}

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn-relative {
  position: relative;
  width: 40px;
}

.btn-relative img {
  position: absolute;
  object-fit: contain;
}

.btn-relative i {
  background: white;
  position: relative;
  z-index: 1;
  left: 8px;
  top: 8px;
  font-size: 16px;
  border-radius: 100%;
  padding: 4px;
}

/* spin-css */



.spin-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}


.spin-div .arrow-top {
  display: block;
  position: absolute;
  width: 65px;
  height: 40px;
  top: -32px;
  left: 13px;
  background-image: url(../img/spin-arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}


.spin-div .button {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
}


.spin-div .button button {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  color: #AF3F33;
}

.spin-div .button button:hover {
  color: #fff;
  background: #AF3F33;
}

.spin-div .button button:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: linear-gradient(90deg, #9D430F 0%, #D59E42 45%, #FEDF64 100%);
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 100%;
}

.wrapper {
  margin-bottom: -40px;
}

img.wheel {
  border-radius: 100%;
  width: 380px;
  border: 2px solid #fff;
}

img.spin-deck {
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}


#spinwheel {
  position: absolute;
  width: 460px;
  height: 460px;
  top: 0;
}

.wheeldotsround {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wheeldotsround .wheeldots {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  z-index: 1;
  opacity: 0;
}

.wheeldotsround .wheeldots:nth-child(2n+1) {
  background: #fff;
}

.wheeldotsround .wheeldots.active-dots {
  background: #ff8400;
}

.wheeldotsround .wheeldots.active-dots:nth-child(2n+1) {
  background: #2660a4;
}


.wheeldotsround .wheeldots:nth-child(1) {
  left: calc(50% - 90px);
  top: 20px;
}

.wheeldotsround .wheeldots:nth-child(2) {
  right: 30%;
  top: 4.5%;
}

.wheeldotsround .wheeldots:nth-child(3) {
  right: 3.5%;
  top: 32%;
}

.wheeldotsround .wheeldots:nth-child(4) {
  right: 20px;
  top: 67%;
}

.wheeldotsround .wheeldots:nth-child(5) {
  right: 28.2%;
  bottom: 5%;
}

.wheeldotsround .wheeldots:nth-child(6) {
  right: 65%;
  bottom: 3%;
}

.wheeldotsround .wheeldots:nth-child(7) {
  left: calc(50% - 206px);
  bottom: 130px;
}

.wheeldotsround .wheeldots:nth-child(8) {
  left: 5%;
  bottom: 70%;
}

.wheeldotsround .wheeldots:nth-child(9) {
  left: 8.2%;
  bottom: 23%;
}

.wheeldotsround .wheeldots:nth-child(10) {
  left: 3px;
  top: 50%;
}

.wheeldotsround .wheeldots:nth-child(11) {
  left: 7%;
  top: 25%;
}

.wheeldotsround .wheeldots:nth-child(12) {
  left: 25%;
  top: 7%;
}

.spin-gradient {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -20px;
  left: 12.6%;
  border-radius: 100%;
  border: 62px solid transparent;
  background: linear-gradient(90deg, #ED3222 0%, #FD5325 48.2%, #F32024 96.4%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.QuickLink {
  display: flex;
  align-items: center;
}

.QuickLink h5 {
  margin: 0;
}

.Link {
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-spin {
  display: flex;
}

.hide {
  display: none !important;
}

.modalhide {
  display: none !important;
}


.ThemeBtn a {
  color: #fff;
  display: block;
  width: 100%;
}

/* #spinning {
  position: absolute;
  width: 100%;
  height: 400px;
  z-index: -1;
  bottom: -50px;
} */

.modal-content {
  background: #0d0d0d;
}

.psy {
  animation: colorRotate 3s linear infinite;
}


@keyframes colorRotate {
  100% {
    -webkit-filter: hue-rotate(360deg);
  }
}


.modal-img {
  max-width: 220px;
  margin-bottom: 20px;
}

.check-box {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.check-box .img img {
  max-width: 60px;
}

.modal-backdrop.show {
  opacity: 0.9 !important;
}

.check-box .text h1 {
  font-size: 30px;
}

.check-box .text h6 {
  font-size: 18px;
}

.btn-row button {
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--clr-primary) !important;
}