@import url('https://fonts.googleapis.com/css2?family=New+Rocker&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');
@import url('swiper-bundle.min.css');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

a.active,
a:focus,
button:focus,
button.active {
  outline: none;
}

a {
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  outline: 0;
}

a:focus,
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

img {
  border-style: none;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.wrapper {
  background-position: center;
  animation: body_bg 30s linear infinite;
  background: url(../images/main_bg2.jpg) repeat-x 50% 0;
  background-size: 75% 100%;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

@keyframes body_bg {
  0% {
    background-position: -800px 50%, 0 0;
  }

  100% {
    background-position: 50% 0;
  }
}

/* .home-wrapper {
  background-position: center;
  animation: body_bg 30s linear infinite;
  background: url(../images/main_bg2.jpg) repeat-x 50% 0;
  background-size: 100% 100%;
  background-attachment: fixed;
} */


/****** PRELOADER *******/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.container-preloader .animation-preloader .spinner img {
  animation: round 0.5s linear infinite;
}

.container-preloader .loader-section {
  background-position: center;
  animation: body_bg 30s linear infinite;
  background: url(../images/preloader-bg.png) repeat-x 100% 0;
  background-size: cover;  
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.container-preloader .loader-section.section-left {
  left: 0;
}

.container-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.5s ease-out;
}

.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.container {
  max-width: 1382px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

/****** HEADER *******/
header {
  padding: 24px 0 5px;
}

.position-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  animation: headerAnimation .5s linear;
  background-color: rgb(208, 36, 28, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 24px 0;
}

@keyframes headerAnimation {
  0% {
    transform: translateY(-20px)
  }

  100% {
    transform: translateY(0px)
  }
}

.header-inner {
  border-radius: 10px;
  border-top: 2px solid #faec57;
  border-right: 5px solid #faec57;
  border-bottom: 5px solid #faec57;
  border-left: 2px solid #faec57;
  background: #d0241c;
  padding: 5px 22px 5px 7px;
  position: relative;
}

.header-inner .media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo a:hover {
  animation-name: hvr-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.social-media {
  margin-left: auto;
  margin-right: 42px;
}

.social-media ul {
  display: flex;
  align-items: center;
  gap: 17px;
}

.social-media ul li a {
  border-radius: 5px;
  border: 2px solid #d0241c;
  background: #faec57;
  width: 65px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.75);
}

.social-media ul li a.googlplay-btn {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.social-media ul li a:hover {
  animation-name: hvr-icon-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header-right ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-right ul li {
  position: relative;
}

.primary-btn {
  font-size: 25px;
  color: #000;
  line-height: 1;
  font-weight: normal;
  border-radius: 5px;
  border: 3px solid #d0241c;
  gap: 8px;
  background: #faec57;
  height: 60px;
  padding: 0 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  width: 201px;
  justify-content: flex-start;
  cursor: pointer;
}

.primary-btn:hover {
  animation-name: hvr-icon-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.latern-left {
  position: absolute;
  left: -33px;
  top: 100%;
  z-index: 10;
  animation: sway 6.5s infinite;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
}

@keyframes sway {
  0% {
    transform: rotate(8deg);
  }

  50% {
    transform: rotate(-8deg);
  }

  100% {
    transform: rotate(8deg);
  }
}

.latern-right {
  position: absolute;
  right: -33px;
  top: 100%;
  z-index: 10;
  animation: sway2 4.5s infinite;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
}

@keyframes sway2 {
  0% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(-5deg);
  }
}

/***** HEADER MENU ******/
.navbar-menu {
  border-radius: 5px;
  background: url(../images/dropdown-menu-bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0px 0px 4px 1px rgba(250, 236, 87, 0.87);
  position: absolute;
  right: 0;
  top: 70px;
  z-index: 10000;
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  width: 265px;
}

.navbar-menu.open {
  display: block;
}

.navbar-menu .media {
  padding: 15px 20px;
}

.navbar-menu .media h4 {
  color: #000;
  font-weight: normal;
  font-size: 20px;
  line-height: normal;
}

.menu-title {
  border-radius: 5px;
  border: 1px solid #FAEC57;
  padding: 0 5px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  background: #FF1F00;
}

.crose-btn {
  display: flex;
  align-items: center;
}

.navigation {
  padding: 28px 0 16px;
}

.navigation ol {
  max-width: 100%;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.navigation ol li {
  margin-bottom: 14px;
}

.navigation ol li:last-child {
  margin: 0;
}
.navigation-menu .nav-link{
  justify-content: start;
  gap: 11px;
  padding: 3px 8px;
}
.nav-link {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  border-right: 3px solid #faec57;
  border-left: 3px solid #faec57;
  background: linear-gradient(90deg, #FF1F00 0%, #FF6A6A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
}

.nav-link:hover {
  transition: 1s;
  transform: translateY(7px);
  filter: drop-shadow(0px 0px 6px #000);
  box-shadow: 0px 70px 0px 0px #fbed58 inset;
  color: #000;
}

.nav-link.d-mobile {
  display: none;
}

/***** GOLD DRAGON SEC ******/
.gold-dragon-sec {
  position: relative;
}

.temple-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -10px;
}

.gold-dragon-inner .text-box {
  text-align: center;
  margin: 30px 0 26px 0;
}

.gold-dragon-inner .text-box h1 {
  color: #fff;
  text-shadow: 0px 1px 17px #000;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  font-family: "New Rocker", system-ui;
  font-size: 70px;
  line-height: 1;
  font-weight: 400;
  max-width: 963px;
  width: 100%;
  margin: 0 auto;
}

.gold-dragon-inner .text-box h1 span {
  color: #FAEC57;
}

.dragon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: 0 auto -260px;
  z-index: 100;
}

.dragon-round {
  animation: round 20s linear infinite;
}

@keyframes round {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dragon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  padding: 58px;
}

.dragon img {
  animation-name: dragon;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  transition: 1s;
}

@keyframes dragon {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}


/***** TREE *****/
.tree-left {
  position: absolute;
  top: 77px;
  left: 0;
}

.latern-body {
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
}

.latern-small-left {
  left: 119px;
}

.tree-right {
  position: absolute;
  top: 77px;
  right: 0;
}

.latern-small-right {
  right: 117px;
}

/***** TREE *****/


.latern-body .image-holder.light1 {
  animation-fill-mode: both;
  animation: bounce 5s linear infinite;
}

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}


.latern-body .image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** NFT CHARACTER ******/
.nft-character {
  padding-bottom: 58px;
  position: relative;
  z-index: 1;
}

.nft-character ul {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
}

.nft-character ul li {
  margin: 0 -30px;
}

.nft-character ul li:nth-child(2) {
  margin-top: 174px;
}

.nft-character ul li:nth-child(3) {
  margin-top: 343px;
  margin-right: 0;
}

.nft-character ul li:nth-child(4) {
  margin-top: 343px;
  margin-left: 0;
}

.nft-character ul li:nth-child(5) {
  margin-top: 174px;
}


.nft-character .image-holder img {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  box-shadow: 4px 4px 4px 0px rgba(250, 236, 87, 0.80);
  width: 1000%;
}

/***** TITLE ******/


.title2 {
  background: url(../images/title-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  max-width: 623px;
  width: 100%;
  padding: 45px 0;
  margin: 0 auto;
}

.title2 h2 {
  text-align: center;
  color: #FFF;
  text-shadow: 0px 1px 17px #000;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  font-family: "New Rocker", system-ui;
  font-size: 45px;
  font-weight: 400;
  line-height: normal;
}

/***** ABOUT COMPANY ******/
.about-company-sec {
  padding: 58px 0 20px 0;
}

.about-company-inner {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-top: 92px;
}

.about-company-left {
  max-width: 570px;
  width: 100%;
}

.about-company-left .image-holder {
  display: flex;
  align-items: center;
}

.about-img2 {
  justify-content: flex-end;
  margin-top: -148px;
}

.about-company-left .image-holder img {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  box-shadow: 4px 4px 4px 0px #FAEC57;
}

.about-company-right {
  width: 100%;
  flex: 1;
}

.about-company-right .text-box h4 {
  color: #FAEC57;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  font-family: "New Rocker", system-ui;
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
}

.about-company-right .text-box p {
  color: #FFF;
  text-align: justify;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin: 12px 0 14px;
}

.red-nore-btn {
  color: #000;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  border: 3px solid #D0241C;
  background: #FAEC57;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 33px;
  height: 60px;
  cursor: pointer;
}

.signupbtn {
  color: #000;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  border: 3px solid #D0241C;
  background: #FAEC57;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 33px;
  height: 60px;
  cursor: pointer;
  width: 100%;
}

.ggg {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  
}

.gggg {
  color: #FAEC57;
  font-size: 20px;
  font-weight: normal;
  
}

.privacy {
  color: #FAEC57;
  
  
}

/***** ABOUT CERTIFICATE *******/
.about-certificate {
  display: flex;
  border-radius: 10px;
  background: linear-gradient(90deg, #FAEC57 0%, #FE0707 100%);
  align-items: center;
  padding: 0 16px;
  height: 210px;
  margin: 128px 0 0 0;
}

.about-certificate .image-holder {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  border: 3px solid #FF1F00;
  box-shadow: 3px 4px 0px 1px #000;
  max-width: 237px;
  width: 100%;
}

.about-certificate .image-holder img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 10px;

}

.about-certificate .text-box {
  flex: 1;
  width: 100%;
  text-align: center;
}

.about-certificate .text-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -165px;
}

.about-certificate .text-box h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: normal;
  max-width: 320px;
  width: 100%;
  margin: 4px auto;
}

.about-certificate .text-box .red-nore-btn {
  padding: 0 12px;
  font-size: 20px;
}

/***** OUR PLANS ******/
.our-plans-sec {
  padding: 20px 0;
}

.our-plans-inner {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  column-gap: 45px;
  margin: 56px 0 0 0;
}

.our-plans-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-plans-detail:nth-child(2) {
  margin-top: -44px;
}

.our-plans-box {
  background: url('../images/plans-box-bg.png') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 28px 18px;
}

.our-plans-box .media {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 17px;
}

.our-plans-box .media .image-holder {
  max-width: 150px;
  width: 100%;
}

.our-plans-box .media .text-box {
  flex: 1;
  width: 100%;
}

.our-plans-box .media .text-box h4 {
  color: #FAEC57;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.80);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: "New Rocker", system-ui;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
  line-height: normal;
}

.our-plans-box .media .text-box ul li {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  gap: 5px;
  display: flex;
  align-items: center;
}

.our-plans-box .media .text-box ul li span {
  color: #FAEC57;
  display: inline-flex;
  align-items: center;
  max-width: 104px;
  width: 100%;
}

.plans-bottom {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.plans-bottom ul {
  display: grid;
  grid-template-columns: 6fr 6fr;
}

.plans-bottom ul li span {
  background-color: #E61515;
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  display: flex;
  align-items: center;
  line-height: normal;
  padding: 0 16px;
  height: 46px;
}

.plans-bottom ul li a {
  height: 46px;
  width: 100%;
  background-color: #FAEC57;
  color: #000000;
  font-size: 20px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

/****** LARESR TRANSACTION SEC ******/
.latest-transaction-sec {
  padding: 24px 0;
}

.latest-transaction-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
}

.latest-transaction-top ul {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: grid;
  gap: 17px;
  max-width: 1143px;
  width: 100%;
}

.transaction-box {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background: #E61515;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 11px;
}

.transaction-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 42px;
  width: 100%;
}

.transaction-box .text-box {
  flex: 1;
  width: 100%;
}

.transaction-box .text-box h4 {
  color: #FAEC57;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.transaction-box .text-box p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.latest-transaction-statement {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 120px;
  margin-top: 72px;
}

.statement-box {
  border: 3px solid #FAEC57;
  background-color: #E61515;
  border-radius: 5px;
  padding: 12px 40px 59px;
}

.statement-box h4 {
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
  font-size: 30px;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.statement-box ul {
  margin-top: 20px;
}

.statement-box ul li {
  border: 1px solid #FAEC57;
border-radius: 5px;
color: #000;
font-weight: normal;
font-size: 20px;
line-height: normal;
display: flex;
align-items: center; 
justify-content: space-between;
padding: 6px 30px;
margin-bottom: 10px;
position: relative;
}

.statement-box ul li:last-child {
  margin: 0;
}

.statement-box ul li span {
  display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
top: 50%;
}

/******* REFERRAL *******/
.referral-inner {
  margin: 25px 0 0 0;
  text-align: center;
}

.referral-inner p {
  color: #000000;
  font-size: 20px;
  font-weight: normal;
  line-height: normal;
  padding: 20px 25px;
  border: 1px solid #FAEC57;
  background-color: #FE0707;
  border-radius: 5px;
  max-width: 885px;
  width: 100%;
  text-align: left;
  margin: 0 auto 24px;
  text-align: justify;
}

.referral-inner span {
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: 20px;
  line-height: normal;
  border: 3px solid #FAEC57;
  border-radius: 55px;
  background-color: #FF1F00;
  height: 51px;
  color: #fff;
  padding: 0 49px;
}

.referral-inner .image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  position: relative;
}

/**** FOOTER  *******/
footer {
  text-align: center;
  padding: 351px 0 8px 0;
  position: relative;
}

footer .image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

footer p {
  color: #000;
  font-weight: normal;
  font-size: 18px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer p a {
  color: #FAEC57;
}

.footer-img1 {
  position: absolute;
  left: 18px;
  bottom: -16px;
}

.footer-img2 {
  position: absolute;
  right: 30px;
  bottom: -16px;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-top ul {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.footer-top ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background: #FF5740;
  box-shadow: 3px 3px 4px 0px #FAEC57;
  height: 65px;
  width: 70px;
}

.footer-navigation {
  border: 3px solid #FAEC57;
  background-color: #FF1F00;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 5px 14px;
}

.footer-logo a {
  display: flex;
  align-items: center;
}

.footer-nav {
  margin-left: auto;
  margin-right: 38px;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.footer-nav ul li {
  display: flex;
  align-items: center;
}

.footer-nav ul li a {
  font-size: 25px;
  line-height: normal;
  font-weight: normal;
  color: #fff;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px,
    rgb(0, 0, 0) 0.540302px 0.841471px 0px,
    rgb(0, 0, 0) -0.416147px 0.909297px 0px,
    rgb(0, 0, 0) -0.989992px 0.14112px 0px,
    rgb(0, 0, 0) -0.653644px -0.756802px 0px,
    rgb(0, 0, 0) 0.283662px -0.958924px 0px,
    rgb(0, 0, 0) 0.96017px -0.279415px 0px;
}

.footer-nav ul li a:hover {
  color: #FAEC57;
}

.footer-nav ul li span {
  color: #000000;
  font-size: 25px;
  font-weight: normal;
  display: flex;
  align-items: center;
}

.footer-navigation .social-media {
  margin-left: 0;
  margin-right: 0;
}

.d-header-mobile {
  display: none;
}

/***** LANGUAGE DROPDOWN ******/
.language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 100;
  width: 150px;
}

.show {
  display: block;
}

.language-dropdown .lang-container {
  border-radius: 5px !important;
  background: url(../images/dropdown-menu-bg.jpg) no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  box-shadow: 0px 0px 4px 1px rgba(250, 236, 87, 0.87) !important;
  position: absolute !important;
  right: 0 !important;
  top: 70px !important;
  padding: 20px 13px 15px;
  z-index: 10000 !important;
  width: 265px !important;
}

.lang-container .media h4 {
  color: #000;
  font-size: 15px;
  line-height: normal;
  font-weight: normal;
  text-transform: uppercase;
}

.language-dropdown ul {
  display: block !important;
  max-width: 100%;
  margin: 0 auto;
}

.language-dropdown ul li a {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  border-right: 3px solid #faec57;
  border-left: 3px solid #faec57;
  background: linear-gradient(90deg, #FF1F00 0%, #FF6464 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
  border-top: none;
  border-bottom: none;
  height: auto;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 6px;
}

.language-dropdown ul li:last-child a {
  margin-bottom: 0;
}

.lang-container {
  display: none;
}

.goog-te-gadget {
  display: none;
}

.language-dropdown ul li a:hover {
  transition: 1s;
  transform: translateY(7px);
  filter: drop-shadow(0px 0px 6px #000);
  box-shadow: 0px 70px 0px 0px #fbed58 inset;
  color: #000;
  animation: none;
}

.dropdown-open {
  display: block;
}

.VIpgJd-yAWNEb-L7lbkb {
  display: none !important;
}

.language-dropdown .media {
  margin-bottom: 30px;
}

.language-dropdown .media a {
  background-color: transparent;
  box-shadow: none;
  border: none;
  width: auto;
  height: auto;
}

/* :lang(it) body {
  display: none;
} */



/* hasnina-css */
.title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title h3 {
  text-align: center;
  color: #FFF;
  text-shadow: 0px 1px 17px #000;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  font-size: 45px;
  font-family: "New Rocker", system-ui;
  font-weight: normal;
  background: url(../images/title-bg2.png) no-repeat;
  background-position: center center;
  background-size: cover;
  line-height: normal;
  height: 186px;
  width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-inner {
  display: flex;
  align-items: center;
  max-width: 1066px;
  margin: 178px auto 0px;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.m-0 {
  margin: 0px !important;
}

.form-box {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background-image: url(../images/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 17px 42px;
  max-width: 498px;
  width: 100%;
  text-align: center;
}

.form-box .red-nore-btn {
  margin: 40px auto;
}

.form-input-holder .form-control {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  border-right: 5px solid #FAEC57;
  border-left: 5px solid #FAEC57;
  background: #FF1F00;
  height: 52px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  border-top: none;
  border-bottom: none;
  max-width: 426px;
  margin: 0 auto;
}

.form-input-holder .form-control::placeholder {
  color: #000;
}

.form-box p {
  color: #000;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: normal;
}

.form-box p a {
  color: #FAEC57;
}

.form-box2 {
  text-align: start !important;
}

.text-center {
  text-align: center;
}

.form-input-holder .form-control {
  padding-left: 58px;
}

.form-input-holder .img-holder {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 14px;
  display: flex;
  align-items: center;
}

.setting-page .form-input-holder .img-holder {
  top: 50% !important;
}

.form-input-holder {
  position: relative;
}

.form-input-holder .form-control {
  max-width: 100%;
}

.btns-list {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

.btns-list li {
  width: 50%;
}

.btns-list li a {
  width: 100%;
}

.form-box.form-box2 p {
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.signup-box-wrapper {
  max-width: 490px;
  width: 100%;
}

.signup-box {
  border-right: 5px solid #FAEC57;
  border-left: 5px solid #FAEC57;
  background: #FF1F00;
  max-width: 426px;
  padding: 11px 24px;
  margin-bottom: 22px;
}

.history {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  text-align: left;
}



.signup-box h6 {
  color: #FAEC57;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.signup-box h6 span {
  color: #000;
}

.program-box {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background-image: url(../images/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14px 12px 26px;
}

.program-box p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.program-box p span {
  color: #FAEC57;
  text-align: justify;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px, rgb(0, 0, 0) -0.416147px 0.909297px 0px, rgb(0, 0, 0) -0.989992px 0.14112px 0px, rgb(0, 0, 0) -0.653644px -0.756802px 0px, rgb(0, 0, 0) 0.283662px -0.958924px 0px, rgb(0, 0, 0) 0.96017px -0.279415px 0px;
}

.mt-10 {
  margin-top: 10px !important;
}

.password-sec {
  padding-bottom: 100px;
  padding-top: 35px;
}

.contact-page .signup-box {
  max-width: 100%;
  padding: 4px 38px 2px;
}

.contact-page .signup-box h6 {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.contact-page .signup-box h6 span {
  color: #FAEC57;
}

.msg-input textarea {
  height: 177px !important;
  padding-top: 11px;
}

.form-input-holder.msg-input .img-holder {
  position: absolute;
  top: 13px;
  transform: translate(0%, 0%);
  left: 14px;
}

.signup-box-wrapper .form-input-holder {
  margin-bottom: 12px;
}

.btn-send .red-nore-btn {
  width: 201px;
  margin: 0 auto;
}

.contact-page .form-box {
  padding: 24px 32px;
}

/**** ABOUT US *****/
.about-sec {
  padding: 35px 0 0 0;
}

.about-box {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.about-inner .image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-box .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.about-box .text-box p {
  text-align: justify;
  color: #000;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  max-width: 621px;
  width: 100%;
  margin: 0 auto;
}

.btn-stake {
  color: #FAEC57;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px, rgb(0, 0, 0) -0.416147px 0.909297px 0px, rgb(0, 0, 0) -0.989992px 0.14112px 0px, rgb(0, 0, 0) -0.653644px -0.756802px 0px, rgb(0, 0, 0) 0.283662px -0.958924px 0px, rgb(0, 0, 0) 0.96017px -0.279415px 0px;
  font-size: 25px;
  font-weight: 400;
  line-height: 38px;
  padding: 11px 35px;
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.mt-8 {
  margin-top: 8px;
}

.heading-box {
  border-right: 5px solid #FAEC57;
  border-left: 5px solid #FAEC57;
  background: #FF1F00;
  padding: 11px 13px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 620px;
  margin-top: 132px;
}

.heading-box h6 {
  color: #FFF;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px, rgb(0, 0, 0) -0.416147px 0.909297px 0px, rgb(0, 0, 0) -0.989992px 0.14112px 0px, rgb(0, 0, 0) -0.653644px -0.756802px 0px, rgb(0, 0, 0) 0.283662px -0.958924px 0px, rgb(0, 0, 0) 0.96017px -0.279415px 0px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.terms-box {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background: #FF1F00;
  padding: 21px 26px 36px 27px;
  z-index: 10;
  position: relative;
  margin-top: 50px;
}

.terms-box p {
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}


.dashboard-inner {
  align-items: flex-start;
  display: flex;
  gap: 25px;
  max-width: 1207px;
  width: 100%;
  margin: 77px auto 0;
  position: relative;
  z-index: 100;
}

.sidebar {
  border-radius: 5px;
  background: url(../images/main_bg.jpg) repeat-x;
  background-position: center center;
  background-size: cover;
  border: 5px solid #faec57;
  padding: 23px 31px;
  position: relative;
  z-index: 100;
  max-width: 290px;
  width: 100%;
}

.sidebar ul li {
  margin-bottom: 15px;
}

.sidebar ul li a {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  border-right: 5px solid #faec57;
  border-left: 5px solid #faec57;
  background: #d0241c;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.dashboard-right {
  border-radius: 5px;
  border: 5px solid #faec57;
  background: #d0241c;
  flex: 1;
  width: 100%;
  padding: 20px 40px 44px;
}


.notebox {
  background: #FAEC57;
  padding: 9px 14px;
  width: fit-content;
  margin: 0 auto;
}

.notebox h6 {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.notebox h6 span {
  color: #FF1F00;
}

.security-box-wrapper {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  grid-gap: 20px;
  margin-top: 41px;
}

.security-box {
  background-image: url(../images/box-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  border: 2px solid #FAEC57;
  text-align: center;
  padding: 1px 26px 13px;
}

.security-box p {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
}

.icon-box {
  margin-top: -32px;
}

.tier-wrapper {
  display: flex;
  margin: 10px 0 0 0;
  align-items: end;
  grid-gap: 33px;
}

.tier-left {
  width: 44%;
}

.account-box {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.account-box-inner {
  background-image: url(../images/icon-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  padding: 7px;
  position: relative;
}

.account-box-right {
  background-image: url(../images/price-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 22px 36px 22px 53px;
  border-radius: 55px;
  margin-left: -47px;
  flex: 1;
}

.account-box-right h6 {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-box-right h6 span {
  color: #FAEC57;
}

.tier-right {
  width: 56%;
}

.tier-heading {
  background-image: url(../images/tier-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: fit-content;
  margin: 0 auto 4px;
  border-radius: 5px;
  border: 1px solid #FAEC57;
  min-width: 142px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  padding: 6px;
  text-align: center;
}

.refferal-box {
  background-image: url(../images/referal-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  border: 3px solid #FAEC57;
  padding: 11px;
}

.refferal-box h6 {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
}

.refferal-inner-box {
  border-radius: 5px;
  border: 2px solid #FAEC57;
  background: #FF1F00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 8px;
}

.refferal-inner-box p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.balance-box-wrapper {
  display: flex;
  align-items: center;
  grid-gap: 11px;
  margin: 43px 0px 46px;
}

.balance-box-left {
  background-image: url(../images/balance-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  padding: 6px 0px;
  text-align: center;
  flex: 1;
  max-width: 238px;
  border: 2px solid #FAEC57;
}

.balance-box-right {
  flex: 1;
}

.balance-box-left h6 {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}

.balance-box-left span {
  color: #FAEC57;
  display: block;
}

.balance-box-right a {
  color: #000;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  border: 3px solid #D0241C;
  background: #FAEC57;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.75);
  padding: 11px 29px;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
}

.stake-box-wrapper {
  display: grid;
  grid-template-columns: 6fr 6fr;
  grid-gap: 15px 10px;
}

.stake-box {
  background: #FAEC57;
  padding: 8px 4px;
}

.stake-box h6 {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.account-box:last-child {
  margin-bottom: 0px;
}

.withdraw-box {
  background-image: url(../images/withdraw-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  padding: 9px 25px 12px;
  border: 2px solid #FAEC57;
  margin-bottom: 30px;
}

.withdraw-box .withdraw-box-inner {
  border-right: 5px solid #FAEC57;
  border-left: 5px solid #FAEC57;
  background: #FF1F00;
  padding: 6px 19px;
  margin-bottom: 8px;
}

.withdraw-box-inner:last-child {
  margin-bottom: 0;
}

.withdraw-box .withdraw-box-inner h6 {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.withdraw-box .withdraw-box-inner h6 span {
  width: 50%;
  color: #000000;
}

.withdraw-table-box {
  border-radius: 5px;
  border: 2px solid #FAEC57;
  background-image: url(../images/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 17px 11px 55px;
}

.deposit-page {
  border-radius: 5px;
  
  background-image: url(../images/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 17px 11px 55px;
}

.deposit-page .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 11px;
}

.deposit-page .table thead tr th {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  text-align: start;
  line-height: 27px;
  background: #FAEC57;
  padding: 6.5px 10px;
}

.deposit-page .table tbody tr td {
  color: #FAEC57;
  font-size: 15px;
  font-weight: 400;
  padding: 6.5px 10px;
  background: #FF1F00;
  line-height: normal;
}

.stake-daily b {
  text-transform: uppercase;
  font-weight: 400;
}

.withdraw-table-box .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 11px;
}

.withdraw-table-box .table thead tr th {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-align: start;
  line-height: 27px;
  background: #FAEC57;
  padding: 6.5px 10px;
}

.withdraw-table-box .table tbody tr td {
  color: #FAEC57;
  font-size: 18px;
  font-weight: 400;
  padding: 6.5px 10px;
  background: #FF1F00;
  line-height: normal;
}

.withdraw-table-box .table tbody tr td:first-child {
  border-left: 5px solid #FAEC57;
}

.withdraw-table-box .table tbody tr td p {
  color: #000;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
}

.withdraw-table-box .table tbody tr td:last-child {
  border-right: 5px solid #FAEC57;
}

.coin-row {
  display: flex;
  align-items: center;
  grid-gap: 7px;
}

.coin-row h6 {
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.btn-account {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 55px;
  background: #FAEC57;
  width: 104px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-footer {
  background: #FAEC57;
  padding: 5px 0px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 23px;
}

.amount-box {
  position: relative;
  margin: 30px auto 25px;
  max-width: 376px;
}

.amount-box .form-control {
  border-radius: 5px;
  border: 2px solid #FAEC57;
  background: #FE0707;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px;
  height: 58px;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  padding-left: 62px;
}

.amount-box .form-control::placeholder {
  color: #fff;
}

.amount-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translate(0, -50%);
}

.amount-box span img {
  height: 45px;
}

.code-input-wrapper {
  position: relative;
  max-width: 267px;
}

.code-input-wrapper .form-control::placeholder {
  color: #000;
}

.code-input-wrapper .form-control {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  padding-left: 49px;
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background-image: url(../images/tier-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 60px;
  width: 100%;
  background-color: transparent;
}

.code-input-wrapper .img-holder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  display: flex;
  align-items: center;
}

.code-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 13px;
}

.code-box-wrapper .primary-btn {
  text-align: center;
}

.confirm-box .withdraw-box .withdraw-box-inner h6 span {
  width: 50%;
  color: #000000;
}

.confirm-box .withdraw-box .withdraw-box-inner h6 {
  font-size: 15px;
}

.text-yellow {
  color: #FAEC57 !important;
}

.text-center {
  text-align: center;
}

.confirm-box .primary-btn {
  margin: 38px auto 0;
  justify-content: center;
}

.confirm-box .withdraw-box {
  padding: 19px 11px;
  margin: 0;
}

.confirm-box .withdraw-box .withdraw-box-inner {
  padding: 10px 28px;
  margin-bottom: 11px;
}

.confirm-box .dashboard-right {
  padding: 19px 24px;
}

/***** FAQ ******/
.faq-inner {
  display: flex;
  gap: 45px;
  align-items: flex-start;
  padding: 132px 0 0 0;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-left {
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background: #FE0707;
  padding: 22px 60px;
  max-width: 363px;
  width: 100%;
}

.faq-left ul li {
  margin-bottom: 10px;
}

.faq-left ul li:last-child {
  margin: 0;
}

.faq-left ul li a {
  color: #FAEC57;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px,
    rgb(0, 0, 0) 0.540302px 0.841471px 0px,
    rgb(0, 0, 0) -0.416147px 0.909297px 0px,
    rgb(0, 0, 0) -0.989992px 0.14112px 0px,
    rgb(0, 0, 0) -0.653644px -0.756802px 0px,
    rgb(0, 0, 0) 0.283662px -0.958924px 0px,
    rgb(0, 0, 0) 0.96017px -0.279415px 0px;
  border-radius: 5px;
  border: 2px solid #FAEC57;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/faq-bg.svg) no-repeat;
  background-position: center center;
  background-size: cover;
  height: 45px;
  text-transform: uppercase;
}

.faq-left ul li a.active {
  color: #000;
  background: #FAEC57;
  text-shadow: none;
}

.faq-right {
  flex: 1;
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/***** ACCORDION ******/
.accordion {
  width: 100%;
  margin: auto;
  font-family: "Poppins", sans-serif;
}

.accordion-item {
  margin-bottom: 16px;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FE0707;
  padding: 5px 15px;
  width: 100%;
  border: none;
  border-left: 3px solid #FAEC57;
  border-right: 3px solid #FAEC57;
  outline: none;
  cursor: pointer;
  transition: background 0.7s ease;
}

.accordion-header p {
  display: flex;
  align-items: center;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px,
    rgb(0, 0, 0) 0.540302px 0.841471px 0px,
    rgb(0, 0, 0) -0.416147px 0.909297px 0px,
    rgb(0, 0, 0) -0.989992px 0.14112px 0px,
    rgb(0, 0, 0) -0.653644px -0.756802px 0px,
    rgb(0, 0, 0) 0.283662px -0.958924px 0px,
    rgb(0, 0, 0) 0.96017px -0.279415px 0px;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  gap: 13px;
  text-transform: uppercase;
}

.plus-minus-box {
  display: flex;
  align-items: center;
}

.plus-minus-box span {
  background-color: #FAEC57;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  color: #000000;
  font-family: "New Rocker", system-ui;
  font-size: 30px;
}

.plus-minus-box span.minus-btn {
  display: none;
}

.accordion-header.active .plus-minus-box span.plus-btn {
  display: none;
}

.accordion-header.active .plus-minus-box span.minus-btn {
  display: block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease;


}

.accordion-content p {
  border: 1px solid #FAEC57;
  background-color: #FE0707;
  padding: 14px 21px;
  color: #000000;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  border-radius: 5px;
  margin-top: 6px;
}

/***** OUR STAKING PLANS *****/
.staking-inner .our-plans-inner {
  margin: 139px auto 34px;
  gap: 7px;
  max-width: 1270px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.staking-inner .primary-btn {
  margin: 0 auto;
  width: 330px;
  justify-content: center;
}

/***** REFERRALS PROGRAM *****/
.referral-sec .referral-inner {
  margin: 137px 0 0 0;
  position: relative;
  z-index: 10;
}

.referral-level {
  text-align: center;
  padding: 70px 0 0 0;
}

.referral-level h5 {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  background-color: #FF1F00;
  border-left: 5px solid #FAEC57;
  border-right: 5px solid #FAEC57;
  text-align: center;
  height: 45px;
  padding: 0 32px;
}

.referral-comission {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 17px;
}

.referral-comission p {
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  background-color: #FF1F00;
  border-left: 5px solid #FAEC57;
  border-right: 5px solid #FAEC57;
  text-align: center;
  height: 45px;
  padding: 0 68px;
  gap: 10px;
}

.referral-comission p span {
  color: #FAEC57;
}

/***** TABLE ******/
.referral-table {
  border: 2px solid #FAEC57;
  border-radius: 5px;
  padding: 19px 14px;
  background: url(../images/table-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  max-width: 803px;
  width: 100%;
  margin: 40px auto 23px;
}

.referral-table table {
  width: 100%;
  border-collapse: collapse;
}

.referral-table thead {
  background-color: #FAEC57;
}

.referral-table thead th {
  padding: 7px 16px;
  border: 1px solid #000;
  border-bottom: 1px solid #FAEC57;
  font-size: 16px;
  color: #000;
  font-weight: normal;
  border-top: 5px solid #FAEC57;
}

.referral-table thead th:first-child {
  border-left: 5px solid #FAEC57;
}

.referral-table thead th:last-child {
  border-right: 5px solid #FAEC57;
}

.referral-table tbody tr {
  background-color: #e4230c;
  color: white;
  text-align: center;
}

.referral-table tbody td {
  padding: 7px 16px;
  color: #000;
  font-weight: normal;
  font-size: 16px;
  border: 1px solid #000;
}

.referral-table thead th.border-0 {
  border: none !important;
}

.referral-table tbody tr td:first-child {
  border-left: 5px solid #FAEC57;
}

.referral-table tbody tr td:last-child {
  border-right: 5px solid #FAEC57;
}

.referral-table thead th.refferal-2nd {
  padding: 0;
  width: 300px;
}

.referral-table thead th p {
  border-bottom: 1px solid #000;
  padding: 4px 0;
}

.referral-table thead th.refferal-2nd table thead tr th:first-child {
  border-right: 1px solid #000;
  width: 50%;
}

.referral-table thead th.refferal-2nd table thead tr th {
  border: none;
}

.referral-table tbody tr td.refferal-3nd {
  padding: 0;
}

.referral-table tbody tr td.refferal-3nd table tbody tr td {
  border: none;
}

.referral-table tbody tr td.refferal-3nd table tbody tr td:first-child {
  border-right: 1px solid #000;
  width: 50%;
}

/* deposit-page */


.deposit-page .withdraw-box .withdraw-box-inner h6 span {
  width: auto;
  color: #000;
  max-width: 281px;
}

.deposit-page .withdraw-box .withdraw-box-inner h6 {
  justify-content: start;
  grid-gap: 10px;
  font-size: 15px;
}

.deposit-page .withdraw-box .withdraw-box-inner h6 strong {
  font-weight: 400;
  min-width: 163px;
}

.btc-wrapper {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-top: 32px;
}

.btc-wrapper h6 {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.btc-wrapper h6 span {
  color: #FAEC57;
}

.deposit-page .refferal-inner-box {
  padding: 7px 10px 7px 8px;
  flex: 1;
}

.deposit-page .refferal-inner-box a {
  display: flex;
  align-items: center;
}

.text-lg {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.text-lg span {
  color: #fff;
}

.deposit-page h4 {
  margin: 21px 0px 37px;
}

.deposit-page .btns-list li {
  width: fit-content;
}

.withdraw-box-wrapper {
  position: relative;
}

.qr-code {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
}

.setting-page .form-input-holder .form-control {
  border: 2px solid #FAEC57;
  background-image: url(../images/input-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
}

.form-input-wrapper {
  display: grid;
  grid-template-columns: 6fr 6fr;
  grid-gap: 24px 34px;
}

.form-input-wrapper .form-input-holder .img-holder {
  top: 54%;
}

.primary-btn {
  justify-content: center;
}

.setting-page .code-box-wrapper {
  margin-top: 38px;
}

.wrapper-heading h6 {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.wrapper-heading {
  background-image: url(../images/heading-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 10px;
  border-right: 5px solid #FAEC57;
  border-left: 5px solid #FAEC57;
  margin-bottom: 18px;
}

.text-xl {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.text-xl span {
  color: #FAEC57;
}

.mb-11 {
  margin-bottom: 11px;
}

.factor-box-wrapper {
  text-align: center;
}

.qr-code-wrapper {
  margin: 18px 0px;
}

.mx-auto {
  margin: 0 auto;
}

.mb-33 {
  margin-bottom: 33px;
}

.setting-page .radio-group [type="radio"]:checked+label,
.radio-group [type="radio"]:not(:checked)+label {
  padding: 1px 0 8px 45px;
  font-size: 18px;
}

.radio-groups {
  max-width: 900px;
  margin: 0 auto;
}

.setting-page .radio-group {
  margin: 0 auto 18px;
}

.setting-page .radio-group label span {
  color: #FAEC57;
}

.setting-page .w-fit {
  width: fit-content;
  margin: 65px auto 60px;
}

.setting-page .code-input-wrapper {
  max-width: 311px;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.stake-page .wrapper-heading h6 {
  color: #000;
}

.stake-page .wrapper-heading h6 span {
  color: #FAEC57;
}

.signu-sec .form-input-holder {
  margin-bottom: 10px;
}

.signu-sec .form-input-holder:last-child {
  margin: 0;
}

.signu-sec .form-box {
  padding: 33px;
}

.upline-code {
  text-align: center;
  margin-top: 17px;
}

.upline-code p {
  color: #000;
  font-size: 20px;
  font-weight: normal;
  line-height: normal;
  font-family: "Poppins", sans-serif !important;
  background-color: #FAEC57;
  display: inline-flex;
  align-items: center;
  height: 42px;
  justify-content: center;
  padding: 0 11px;
}

.radio-group.radio-same {
  margin-top: 21px;
}

.radio-group.radio-same [type="radio"]:checked+label,
.radio-group.radio-same [type="radio"]:not(:checked)+label {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  display: flex;
  align-items: center;
  padding: 0 0 0 36px;
}

.radio-group.radio-same [type="radio"]:checked+label a,
.radio-group.radio-same [type="radio"]:not(:checked)+label a {
  color: #FAEC57;
}

.signu-sec .btns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 21px;
}

.signu-sec .form-box .red-nore-btn {
  margin: 0;
}

.signu-sec .login-inner {
  margin: 85px auto 0px;
}

.login-text p {
  font-family: "Poppins", sans-serif !important;
  margin-top: 21px;
}

/*******/
.referral-detail {
  border: 3px solid #FAEC57;
  border-radius: 5px;
  background-color: #FF1F00;
  padding: 24px 45px;
  flex: 1;
  width: 100%;
}

.referral-detail .refferal-box {
  max-width: 525px;
  width: 100%;
  margin: 0 auto;
}

.referral-detail .refferal-box h6 {
  font-size: 20px;
}

.referral-detail .refferal-inner-box {

  padding: 3px 13px;
}

.referral-detail .refferal-inner-box p {
  font-size: 15px;
}

.referral-detail-media {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 48px;
}

.referral-upline {
  border-left: 5px solid #FAEC57;
  border-right: 5px solid #FAEC57;
  background-image: url(../images/withdraw-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 13px;
  padding-right: 52px;
  padding-top: 9px;
  max-width: 357px;
  width: 100%;
  padding-bottom: 9px;
}

.referral-upline p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
}

.referral-upline span {
  color: #FAEC57;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  display: block;
}

.referral-level2 {
  background-color: #FAEC57;
  display: inline-flex;
  align-items: center;
  padding: 11.5px 27px;
}

.referral-level2 p {
  color: #000;
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
}

.security-referral {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 25px;
  margin-top: 23px;
}

.security-referral .security-box {
  padding: 10px 10px;
}

.security-referral .icon-box {
  margin-top: 0;
}

.security-referral .security-box p {
  color: #000;
}

.security-referral .security-box span {
  color: #FAEC57;
  font-size: 15px;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}

.referral-detail .referral-level {
  padding: 30px 0 0 0;
}

.referral-detail .referral-level h5,
.referral-detail .referral-comission p {
  background-image: url(../images/withdraw-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/***** STAKE LIST ******/
.stake-list-sec .referral-detail {
  padding: 15px 20px;
}

.stake-list-sec .referral-comission p {
  font-size: 20px;
  padding: 10px 0;
  height: 50px;
  max-width: 660px;
  width: 100%;
}

.stake-list-innr {
  border: 2px solid #FAEC57;
  border-radius: 5px;
  margin-top: 15px;
  padding: 12px 14px;
  width: 100%;
  background: url(../images/table-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.stake-daily {
  background-color: #FAEC57;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.stake-daily p {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  display: flex;
  padding: 8px 0;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.stake-plan {
  margin-top: 10px;
}

.stake-plan ul {
  background-color: #FF1F00;
  border: 1px solid #FAEC57;
  border-radius: 5px;
  margin-bottom: 10px;
}

.stake-plan ul li {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  border-bottom: 1px solid #FAEC57;
}

.stake-plan ul li:last-child {

  border-bottom: none;
}

.stake-deposit {
  background-color: #E61515;
  border: 1px solid #FAEC57;
  border-radius: 5px;
}

.stake-deposit h5 {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  border-bottom: 1px solid #FAEC57;
  text-align: center;
  padding: 12px 0;
}

.stake-deposit table {
  width: 100%;
  border-collapse: collapse;
}

.stake-deposit table thead tr th {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  border-bottom: 1px solid #FAEC57;
  text-align: center;
  width: 50%;
  padding: 10px 0;
}

.stake-deposit table tbody tr td {
  border-bottom: 1px solid #FAEC57;
  text-align: left;
  padding: 10px 0;
}

.invest {
  border-bottom: 1px solid #FAEC57;
  text-align: left;
  padding: 10px 0;
}

.stake-deposit table tbody tr td p {
  color: #000;
  font-size: 15px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
}

.stake-deposit table tbody tr:last-child td {
  border-bottom: none;
}

.deposittb {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.deposittb strong {
  color: #FAEC57;
  font-size: 15px;
  font-weight: normal;
  line-height: normal;
}

.deposittb span {
  display: flex;
  align-items: center;
}

.stake-plan.stake-plan-profit ul li {
  justify-content: flex-start;
}

.stake-plan.stake-plan-profit ul li p {
  width: 175px;
}

.transaction-history-page .stake-plan {
  margin: 0;
}

.transaction-history-page .stake-deposit {
  margin-bottom: 10px;
}

.transaction-history-page .stake-deposit table tbody tr td {
  padding: 10px;
  font-size: 15px;
}

.transaction-history-page .stake-deposit table tbody tr td:first-child,
.transaction-history-page .stake-deposit table tbody tr td p:first-child {
  text-align: left;
}

.transaction-history-page .stake-deposit table tbody tr td p {
  font-size: 18px;
}

.transaction-history-page .deposittb {
  justify-content: flex-start;
}

.transaction-history-page .deposittb strong {
  font-size: 18px;
  color: #000000;
}

.transaction-history-page .deposittb span {
  color: #FAEC57;
}

.pagination {
  background-color: #FF1F00;
  border-radius: 5px;
  
  max-width: 141px;
  width: 100%;
  margin: 44px 0 19px 0;
}

.pagination ul {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
}

.pagination ul li a {
  color: #000000;
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

.pagination ul li a.active {
  background-color: #FAEC57;
}

.history-filter {
  border: 2px solid #FAEC57;
  background-color: #FF1F00;
  padding-left: 10px;
  padding-right: 16px;
  padding-top: 13px;
  padding-bottom: 17px;
  border-radius: 5px;
}

.filter-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-box h4 {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 5px;
}

.filter-box .form-group {
  display: flex;
  align-items: center;
  position: relative;
}

.transactions-btn {
  background: url(../images/select-bg.svg) no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  height: 35px;
  border: 1px solid #faec57;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-width: 83px;
}

.transactions-btn p {
  border: none;
  color: #fff;
  padding: 0 8px;
  font-weight: normal;
  font-size: 15px;
}

select.form-control {
  background: url(../images/select-bg.svg) no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 55px 0 0 55px;
  border: none;
  color: #fff;
  font-weight: normal;
  font-size: 15px;
  height: 35px;
  appearance: none;
  padding: 0 8px;
}

.select-arrow {
  background-color: #FAEC57;
  width: 50px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 55px 55px 0;
}

.filter-box .media {
  display: flex;
  align-items: center;
  gap: 3px;
}

.filter-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.search-btn {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 35px;
  justify-content: center;
  background: url(../images/select-bg.svg) no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  padding: 0 27px;
  border: 1px solid #faec57;
  cursor: pointer;
}

.history-filter .navbar-menu {
  right: auto;
  left: 0;
  max-height: max-content;
  top: 40px;
  width: 283px;
}

.navbar-menu.dropdown-open {
  display: block;
}

.history-filter .navigation {
  padding: 13px 0;
}

.history-filter .navigation ol {
  padding: 0 13px;
}

.history-filter .navigation ol li {
  margin-bottom: 6px;
}

.history-filter .navigation ol li:last-child {
  margin: 0;
}

.history-filter .nav-link {
  font-size: 15px;
}

/****** SELECTED STAKING ******/
.selected-staking {
  width: 100%;
  flex: 1;
}

.selected-staking-inner {
  display: grid;
  grid-template-columns: 6fr 6fr;
  column-gap: 33px;
  row-gap: 24px;
}

.selected-staking-inner .plans-bottom ul {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.selected-staking-inner .plans-bottom ul li a {
  font-size: 15px;
  padding: 0 14px;
}
.plans-select.active .select-text{
  display: none;
}
.plans-select.active strong.unselect-text{
  display: flex !important;
}
.selected-staking .plans-bottom ul li a strong {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 2px;
}
.selected-staking .plans-bottom ul li a strong.unselect-text{
  display: none;
}

.selected-staking-inner .our-plans-box {
  min-height: 283px;
}

.selected-staking-inner .plans-bottom {
  max-width: 330px;
}

.staking-account {
  border: 3px solid #FAEC57;
  background-color: #FF1F00;
  border-radius: 3px;
  padding: 14px 40px 17px;
  margin-top: 40px;
}

.account-balance {
  color: #fff;
  font-weight: normal;
  font-size: 21px;
  border: 2px solid #FAEC57;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  background: url(../images/referal-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 3px 34px;
}

.staking-account .tab-links {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 25px;
  margin-top: 15px;
}

.staking-account .tab-links .tab-btn{
  color: #000;
  font-size: 21px;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  background-color: #49EAFF;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.staking-account .tab-links .tab-btn.active{
  background-color: #FAEC57;
}
 
/******/
.crypto-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  max-width: 580px;
  width: 100%;
  margin-top: 15px;
  column-gap: 30px;
  row-gap: 17px;
}

.crypto-options label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.crypto-options label.active .check-box {
  display: flex;
}

.check-box {
  background-color: #FAEC57;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: none;
  left: 0;
}

.crypto-options label span {
  width: 70px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 3px solid #FAEC57;
  background: #FF5740;
  box-shadow: 3px 3px 4px 0px #FAEC57;
  position: relative;
}

.crypto-options label input {
  display: none;
}

.crypto-options label p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin: 10px 0 0 0;
}

.crypto-options label p.font-xs {
  font-size: 12px;
}

.stake-amount {
  margin: 24px 0 0 0;
}

.stake-amount .form-control {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  border: 2px solid #FAEC57;
  height: 45px;
  width: 296px;
  background: url(../images/referal-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.stake-amount .form-control::placeholder {
  color: #fff;
}

.stake-amount .primary-btn {
  padding: 0;
}

/****/
.referral-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.up-level {
  position: absolute;
  left: 27px;
  bottom: 51px;
}

.up-level .text-box {
  margin-bottom: 52px;
}

.up-level .text-box strong {
  color: #000;
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  display: block;
}

.up-level .text-box h4 {
  color: #FAEC57;
  font-size: 75px;
  line-height: normal;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
  font-family: "New Rocker", system-ui;
  line-height: normal;
}

.up-level h5 {
  font-size: 20;
  line-height: normal;
  color: #FAEC57;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
  font-family: "New Rocker", system-ui;
  line-height: normal;
}

.up-level.up-level2 {
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -30px;
}

.up-level.up-level2 .text-box h4 {
  color: #21C732;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
}

.up-level.up-level2 h5 {
  color: #21C732;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
}

.up-level.up-level3 {
  bottom: 52px;
  right: 45px;
  left: auto;
}

.up-level.up-level3 .text-box h4 {
  color: #49EAFF;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
}

.up-level.up-level3 h5 {
  color: #49EAFF;
  text-shadow: #000 1px 0px 0px,
    #000 0.540302px 0.841471px 0px,
    #000 -0.416147px 0.909297px 0px,
    #000 -0.989992px 0.14112px 0px,
    #000 -0.653644px -0.756802px 0px,
    #000 0.283662px -0.958924px 0px,
    #000 0.96017px -0.279415px 0px;
}

.highlight {
  background-color: #FAEC57;
  /* light green */
  transition: background-color 0.4s ease;
}

.pl-0 {
  padding-left: 0 !important;
}

.copyLink {
  display: flex;
  align-items: center;
}

.our-plans-mobile {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  display: none;
}

.qr-mobile {
  display: none;
}