* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "afd-Reg";
}

@font-face {
  font-family: "afd-Reg";
  src: url("../fonts/Afacad-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "afd-Med";
  src: url("../fonts/Afacad-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "afd-semibold";
  src: url("../fonts/Afacad-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "afd-Bold";
  src: url("../fonts/Afacad-Bold.ttf") format("truetype");
}

.custom_container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

/* light */
:root {
  --bg-color: #ffffff;
  --text-color: #222222;

  --theme-color: #3fbcff;
  --theme-dark-blue: transparent;
  --footer-bg: #b5b5b5;
  --theme-light-gry: #000;
  --theme-white: #000000;
  --theme-btn-color: #000;
  --theme-btn-gry-color: #000;
  --theme-dark-gry: #fff;
  --blue-white: linear-gradient(90deg, #000 0%, #1765b6 48%);
  --hero-arrow-l: url("../images/left-arrow-black.svg");
  --hero-arrow-r: url("../images/right-arrow-black.svg");
  --tab-content-bg: #000;
  --com-table-line-light: #000;
  --cntermod-color: #000;
  --form-input: #fff;
  --footer-copyright: #c3c3c3;
  --written-gry: #000;
  --tabscolor: #000;
  --theme-light-blue: #3fbcff;
  --prop-bg: #b5b5b5;
  --level-req-bg: #919191;
  --level-req-label-bg: #000;
  --bg-green: transparent;
}

/* Dark Theme */
body.dark-mode {
  --bg-color: #070013;
  --text-color: #ffffff;

  --theme-white: #ffffff;
  --theme-dark-blue: #060011;
  --theme-btn-color: #c3c3c3;
  --theme-btn-gry-color: #cdcdcd;
  --theme-light-gry: #c3c3c3;
  --theme-dark-gry: #2b2a2b;
  --blue-white: linear-gradient(20deg, #1765b6 0%, #dff5ff 48%);
  --hero-arrow-l: url("../images/left-arrow.svg");
  --hero-arrow-r: url("../images/right-arrow.svg");
  --tab-content-bg: linear-gradient(
    160.61deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 101.7%
  );
  --com-table-line-light: #ffffff33;
  --cntermod-color: #ffffff4d;
  --form-input: #454545;
  --footer-bg: linear-gradient(180deg, #000f21 0%, #000000 100%);
  --footer-copyright: #001228;
  --written-gry: #868686;
  --tabscolor: #d3d3d3;
  --theme-light-blue: #8ddcff;
  --prop-bg: #000f16;
  --level-req-bg: #012130;
  --level-req-label-bg: #998fb1;
  --bg-green: #409d54;
}

/* Apply variables */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "afd-Reg";
  transition: 0.3s ease;
}

button.lightdark-button {
  /* background-color: var(--button-bg); */
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  background: transparent;
  font-size: 13px;
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  line-height: 13px;
  border-radius: 50%;
}

#moon-icon {
  display: none;
}
.dark-mode #sun-icon {
  display: none;
  color: yellow;
}
.dark-mode #moon-icon {
  display: inline-block;
}
.res-light-dark-mode {
  display: none;
}
/* end light */

/* headersection */
.headersection {
  width: 100%;
  float: left;
}
.navbar {
  width: 100%;
  float: left;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 20px;
  z-index: 1001;
}

.logo-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}
.logo-text {
  letter-spacing: -0.5px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 70px;
  height: 41px;
  background: #000;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 99999;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-family: "afd-Med";
  transition: color 0.4s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #3fbcff;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-btn {
  padding: 13px 25px;
  border-radius: 2px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 18px;
  font-family: "afd-Med";
  text-decoration: none;
  transition: all 0.4s linear;
  white-space: nowrap;
  display: inline-block;
}
.nav-btn.secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(27, 96, 181, 1);
}
.nav-btn.secondary:hover {
  background: linear-gradient(
    180deg,
    rgba(55, 181, 245, 1) 30%,
    rgba(27, 96, 181, 1) 100%
  );
}
.nav-btn.primary {
  color: #fff;
  background: var(--accent-color);
  border: 1px solid #fff;
}
.nav-btn.primary:hover {
  background: linear-gradient(
    180deg,
    rgba(55, 181, 245, 1) 30%,
    rgba(27, 96, 181, 1) 100%
  );
  border-color: rgba(27, 96, 181, 1);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.nav-actions.resbtn {
  display: none;
}

/* end headersection */

/* herosection */
.herosection {
  padding: 140px 0;
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.heromain {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  width: 100%;
  float: left;
}
.hero-img {
  width: 100%;
  float: left;
}
.metatrader {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--theme-dark-gry);
  width: fit-content;
  border: 1px solid #434343;
  padding: 7px 8px 7px 5px;
  border-radius: 20px;
}
.hero-text {
  width: 50%;
  float: left;
}
.hero-img {
  width: 50%;
  float: left;
  text-align: center;
}
.hero-text h2 {
  font-size: 48px;
  margin: 10px 0 15px;
  font-family: "afd-semibold";
  max-width: 618px;
  color: var(--theme-white);
}
.hero-text p {
  color: var(--theme-light-gry);
  font-size: 24px;
  max-width: 618px;
  margin-bottom: 30px;
}
.dailyrewards-detail {
  position: relative;
  float: left;
  width: 33.33%;
}
.dailyrewards-detail:last-child {
  margin: 0;
  padding: 0;
}
.dailyrewards-detail::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0px;
  width: 2px;
  height: 65px;
  background: #414141;
}
.dailyrewards-detail:nth-child(3):before {
  background: none;
}
.dailyrewards-desc {
  display: flex;
  align-items: center;
  border: 1px solid #3d3d3d;
  padding: 30px 30px;
  border-radius: 20px;
  background: linear-gradient(
    160.61deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 101.7%
  );
  margin-bottom: 40px;
  width: 100%;
  float: left;
  justify-content: space-between;
  gap: 30px;
}
.startchallenge-btn {
  width: 100%;
  float: left;
}
.dailyrewards-detail h4 {
  font-family: "afd-semibold";
  font-size: 18px;
  margin-bottom: 3px;
  background: var(--blue-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dailyrewards-detail p {
  color: var(--theme-light-gry);
  font-size: 18px;
  font-family: "afd-Reg";
  margin-bottom: 0;
}
.startchallenge-btn a {
  color: var(--theme-white);
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "afd-Med";
  background: linear-gradient(
    160.61deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 101.7%
  );
  border: 1px solid var(--theme-btn-color);
  backdrop-filter: blur(1.5px);
  display: inline-block;
  padding: 13px 24px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s linear;
}
.startchallenge-btn a:hover {
  background: linear-gradient(
    180deg,
    rgba(55, 181, 245, 1) 30%,
    rgba(27, 96, 181, 1) 100%
  );
  border-color: rgba(27, 96, 181, 1);
  /* transform: translateY(-1px); */
  color: #fff;
  /* box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); */
}
/* end herosection */

/* reachyourfinancialgoals */
.reachyourfinancialgoals {
  width: 100%;
  float: left;
  position: relative;
  z-index: 2;
}
.reachyourfinancialgoals-head {
  text-align: center;
  width: 100%;
  float: left;
}
.reachyourfinancialgoals-head h2.title-text {
  margin-bottom: 10px;
  width: 100%;
  float: left;
}
.reachyourfinancialgoals-head p {
  font-size: 24px;
  font-family: "afd-Med";
  margin-bottom: 60px;
  width: 100%;
  float: left;
}
.res_custom_container {
  width: 100%;
  float: left;
}
.wrapper {
  width: 100%;
  float: left;
}

.slider .slick-arrow {
  outline: none;
  box-shadow: none;
  border: none;
}
.slider .slick-arrow:hover {
  cursor: pointer;
}
.slider .slick-arrow.slick-prev {
  left: calc(50% - 60px);
  background: var(--hero-arrow-l) 0 0 / 100% no-repeat;
  width: 50px;
  height: 50px;
  z-index: 1;
  bottom: -110px;
  top: inherit;
}
.slider .slick-prev:before {
  content: "";
}
.slider .slick-arrow.slick-next {
  right: calc(50% - 60px);
  background: var(--hero-arrow-r) 0 0 / 100% no-repeat;
  width: 50px;
  height: 50px;
  z-index: 1;
  bottom: -110px;
  top: inherit;
}
.slider .slick-next:before {
  content: "";
}
.slider__item {
  padding: 0px 15px;
  float: left;
}
.slider__item img {
  width: 100%;
  float: left;
  box-shadow: 0px 0px 10px 1px #252ba2;
  border-radius: 15px;
}
#galaxyCanvas {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.uspdetails.res-upsdetails {
  display: flex;
  flex-direction: column-reverse;
}
.wrapper .slick-track {
  margin: 15px 0;
}
/* end reachyourfinancialgoals */

/* earthplanetsection */
.earthplanetsection {
  position: fixed;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: -1;
  width: 100%;
  float: left;
  height: 100vh;
  top: 1250px;
}

.planet {
  position: absolute;
  bottom: 400px;
  width: 1000px;
  height: 1000px;
  background: url("../images/earth.png") center 100%;
  border-radius: 100%;
  box-shadow: 0 0 120px rgba(80, 170, 255, 0.35),
    inset -40px -40px 80px rgba(0, 0, 0, 0.6);
  z-index: 2;
  background-size: 100%;
  opacity: 0.4;
}
/* end earthplanetsection */

/* ---------- ASTRONAUT ---------- */
.astronaut {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
/* ---------- end ASTRONAUT ---------- */

/* ---------- see event btn ---------- */
.cta {
  position: absolute;
  bottom: 190px;
  padding: 14px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.cta:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.25);
}
/* ---------- end see event btn ---------- */

/* round border wave */
.earth-ring {
  position: absolute;
  bottom: 268px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1250px;
  z-index: 1;
  pointer-events: none;
}

.ring {
  fill: none;
  stroke: rgb(37 39 71);
  stroke-width: 1;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(120, 190, 255, 0.8))
    drop-shadow(0 0 25px rgba(120, 190, 255, 0.4));
  stroke-dasharray: 29 2;
  /* animation: ringRotate 100s linear infinite; */

  transform-origin: center;
  animation: ringRotate 100s linear infinite;
}

/* rotation animation */
/* @keyframes ringRotate {  from {stroke-dashoffset: 0;}  to {stroke-dashoffset: 400;}} */
/* end rotation animation */

@keyframes ringRotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.r2 {
  opacity: 0.6;
  animation-duration: 90s;
}
.r3 {
  opacity: 0.35;
  animation-duration: 80s;
}
/* end round border wave */
/*  */

/* Stars */
#stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: transparent;
  z-index: -1;
}
.star {
  position: absolute;
  background: var(--theme-white);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: twinkle 4s infinite alternate;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15);
  }
}
/* End Stars */

/* accountchallengessection */
.accountchallengessection {
  padding: 170px 0 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
}

/* tabs */
.sub-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  justify-content: center;
}
.tab-wrapper,
.account-rs {
  background: #000000;
  padding: 10px;
  border-radius: 35px;
  border: 1px solid #424242;
}
.sub-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.step-details {
  position: relative;
  border: 1px dashed #696969;
  border-radius: 5px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
}
.account-rs ul {
  list-style-type: none;
  display: flex;
  gap: 10px;
}
.stp-no,
.riskrewardmatters {
  color: #fff;
  font-size: 20px;
  font-family: "afd-semibold";
}
.step-number {
  position: relative;
}
.step-main-price {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(0deg, #1e78c4 0%, #000000 100%);
  border-radius: 10px;
  color: #fff;
  padding: 32px 23px;
  font-size: 42px;
  font-family: "afd-semibold";
}

.step-buy-plane a {
  font-size: 20px;
  color: #7ed7ff;
  text-decoration: none;
  padding: 13px 0;
  border: 1px solid #595959;
  display: inline-block;
  width: 100%;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s ease;
}

.step-buy-plane a:hover {
  background: linear-gradient(160.61deg, #36b8f2 0%, #1765b6 101.7%);
  color: #fff;
}

.max-pro-plateform {
  color: #a4d5e2;
}
.per-mts {
  color: #ffffff;
}

.tabs {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.tab-link,
li.cust-tab-link {
  /* list-style: none;
  padding: 13px 23px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-family: 'afd-Med';
  transition: all .3s ease-in;
  letter-spacing: 1px;
  border-radius: 30px;
  background: transparent; */

  list-style: none;
  padding: 13px 23px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-family: "afd-Med";
  letter-spacing: 1px;
  border-radius: 30px;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in;
}

.tab-link::before,
li.cust-tab-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(160.61deg, #36b8f2 0%, #1765b6 101.7%);
  transition: width 0.4s ease-in-out;
  z-index: -1;
  border-radius: 30px;
}

/* Hover Effect */
.tab-link:hover::before,
li.cust-tab-link:hover::before {
  width: 100%;
}

/* Active State (Fully Filled) */
.tab-link.active::before,
li.cust-tab-link.active::before {
  width: 100%;
}

/* .tab-link:hover, li.cust-tab-link:hover {
  background: linear-gradient(160.61deg, #36B8F2 0%, #1765B6 101.7%);
  color: #fff;
}

.tab-link.active, li.cust-tab-link.active {
  background: linear-gradient(160.61deg, #36B8F2 0%, #1765B6 101.7%);
  color: #fff;
} */

.tab-content-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--tab-content-bg);
  border: 1px solid #595959;
  backdrop-filter: blur(1.5px);
  border-radius: 20px;
  padding: 60px 40px 30px;
}
.step-profit {
  margin-top: 60px;
}
.step-profit-desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "afd-Med";
}

.tab-content-wrapper .tab-content {
  display: none;
  text-align: center;
  color: #888;
  font-weight: 300;
  font-size: 15px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content-wrapper .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
/* end tabs */
/* end accountchallengessection */

/* uspsection */
.uspsection {
  padding: 100px 0 0px;
  position: relative;
  width: 100%;
  float: left;
  z-index: 1;
}
.uspsection > .custom_container {
  padding: 0 40px;
}
.usp-sub-details {
  position: relative;
  width: 100%;
  float: left;
}
.usp-sub-txt-icon {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.usp-sub-txt-icon img {
  margin-bottom: 15px;
}
.usp-sub-txt {
  font-family: "afd-Med";
  font-size: 20px;
  color: #fff;
}
.every-wednesday-payout-desc {
  background: linear-gradient(0deg, #015c84 0%, rgba(0, 0, 0, 0) 100%);
  padding: 35px 0;
  justify-content: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 460px;
}
.every-wednesday-payout-desc p {
  font-size: 20px;
}
.uspmain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  width: 100%;
  float: left;
}

.uspdetails {
  display: flex;
  flex-direction: column;
  gap: 30px;
  float: left;
}
.usp-sub-details img {
  width: 100%;
  width: 100%;
  float: left;
}
.usp-sub-txt-icon img {
  width: auto;
}
/* animation */
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}
/* end animation */

.galaxy-main {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  width: 100%;
  float: left;
}
/* end uspsection */

/* easywaytogetfundedsection */
.easywaytogetfundedsection {
  padding: 100px 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
}
.easywaytogetfunded-desc {
  text-align: center;
  width: 100%;
  float: left;
}
h2.title-text {
  text-align: center;
  font-size: 50px;
  font-family: "afd-semibold";
  margin-bottom: 60px; /*color: #fff;*/
  width: 100%;
  float: left;
}
.easywaytogetfunded-benefit {
  color: #fff;
  font-family: "afd-Med";
  font-size: 22px;
  text-decoration: none;
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(0deg, #1e78c4 0%, #000000 100%);
  border-radius: 10px;
  margin-bottom: 40px;
}
.getfunded-btn {
  text-align: center;
  margin-top: 62px;
}
.getfunded-btn a {
  color: var(--theme-white);
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "afd-Med";
  background: linear-gradient(
    160.61deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 101.7%
  );
  border: 1px solid var(--theme-btn-color);
  backdrop-filter: blur(1.5px);
  display: inline-block;
  padding: 13px 44px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s linear;
}
.getfunded-btn a:hover {
  background: linear-gradient(
    180deg,
    rgba(55, 181, 245, 1) 30%,
    rgba(27, 96, 181, 1) 100%
  );
  border-color: rgba(27, 96, 181, 1);
  color: #fff;
}

.easywaytogetfunded-details {
  padding: 0 35px;
  display: flex;
  gap: 25px;
}
.easywaytogetfunded-right {
  width: 100%;
}
.easywaytogetfunded-left {
  margin-top: 100px;
}
.easywaytogetfunded-challenge {
  display: flex;
  align-items: end;
}
.easywaytogetfunded-challenge {
  display: flex;
  align-items: center;
  border-top: 1px solid #696969;
  border-bottom: 1px solid #696969;
  padding: 50px 0;
  justify-content: space-between;
}
.easywaytoget-number {
  width: 30%;
}
.easywaytoget-arrow {
  width: 40%;
  margin-top: 50px;
}
.easywaytoget-txt {
  width: 30%;
  margin-top: 50px;
}
.easywaytoget-number h4 {
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.easywaytoget-number h3 {
  font-family: "afd-Bold";
  font-size: 48px;
  text-transform: uppercase;
}
.easywaytoget-txt p {
  font-family: "afd-Med";
  font-size: 18px;
}
.easywaytoget-txt p > span {
  font-family: "afd-Med";
  font-size: 18px;
  color: var(--theme-light-blue);
  display: block;
}
.text-white {
  color: #fff;
}
#easywaytoget-clr {
  color: var(--theme-white);
}
/* end easywaytogetfundedsection */

/* compare-with-other-companiessection */
section.compare-with-other-companies.compare_company {
  z-index: 1;
  position: relative;
  width: 100%;
  float: left;
}
h2.title-text.other-company-text {
  margin-bottom: 95px;
}
.earn-main-bgbox {
  width: 100%;
  padding: 50px;
  background: linear-gradient(
    360deg,
    rgba(17, 17, 17, 0.02) 0,
    rgba(0, 133, 255, 0.3) 100%
  );
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 28px;
}

.compare-with-other-companies-head {
  width: 100%;
}

.compare_company {
  width: 100%;
  float: left;
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}
.com_table {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.com_tableBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.com_table_list {
  float: left;
}
.com_table_list ul {
  width: 100%;
  float: left;
  list-style-type: none;
}
.com_table_list ul li {
  width: 100%;
  float: left;
  line-height: 49px;
  border-top: 1px solid #ffffff33;
}
.com_table_list ul li p {
  float: left;
  font-size: 16px;
  color: #fff;
}
.com-title {
  width: 100%;
  float: left;
  text-align: center;
  height: 155px;
  padding: 50px 0 30px;
}
.com-title h2 {
  font-size: 20px;
  color: #fff;
  line-height: 37px;
  font-weight: normal;
}
.com_table_list ul.aligntextcenter li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.cntermod {
  position: relative;
  height: 485px;
  top: -11px;
  z-index: -9;
  border: 1px solid #ffffff4d;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-radius: 20px;
}
.underborder {
  position: absolute;
  background: #00163038;
  border: 1px solid #ffffff26;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  height: calc(100% - 18px);
  left: 0;
  right: 0;
  top: 9px;
  z-index: -1;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 7px;
}
.underborder:before {
  content: "";
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 200%;
  height: 40%;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0,
    #0085ff 25%,
    transparent 50%,
    #0085ff 75%,
    transparent 100%
  );
  animation: rotateGlow 30s linear infinite;
  filter: blur(22px);
}
.underborder:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #000;
  border-radius: 14px;
}
.logoicon {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -25px;
}
.logoicon img {
  width: auto;
  height: 65px;
  background: #272727;
  border-radius: 100px;
  padding: 10px;
}
.com_table_list ul.aligntextcenter li img {
  width: 15px;
}
.com_table_list ul.bigiconlist li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.com_table_list ul.bigiconlist li img {
  width: 25px;
}
.comparetab {
  width: 100%;
  float: left;
}
@keyframes rotateGlow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

/* end compare-with-other-companiessection */

/* aboutsection */
.aboutsection {
  padding: 100px 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.aboutus-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  float: left;
}
.aboutus-left {
  width: 50%;
  float: left;
}
.aboutus-left img {
  width: 100%;
  float: left;
}
.aboutus-right {
  padding: 30px 27px;
  background: linear-gradient(
    160.61deg,
    rgba(141, 220, 255, 0.1) 0%,
    rgba(141, 220, 255, 0.05) 101.7%
  );
  border: 1px solid #505050;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  width: 50%;
  float: left;
}
.aboutus-right h2 {
  font-size: 50px;
  font-family: "afd-semibold";
}
.aboutus-right p {
  margin: 25px 0 20px;
  line-height: 24px;
  color: var(--theme-light-gry);
}
.aboutus-right a {
  margin-top: 10px;
  display: inline-block;
  color: var(--theme-white);
  text-transform: uppercase;
  text-decoration: none;
  font-family: "afd-Med";
  font-size: 18px;
  background: linear-gradient(
    160.61deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 101.7%
  );
  border: 1px solid var(--theme-btn-gry-color);
  backdrop-filter: blur(1.5px);
  padding: 13px 46px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s linear;
}
.aboutus-right a:hover {
  background: linear-gradient(
    180deg,
    rgba(55, 181, 245, 1) 30%,
    rgba(27, 96, 181, 1) 100%
  );
  border-color: rgba(27, 96, 181, 1);
  color: #fff;
}
/* end aboutsection */

/* contactussection */
.contactussection {
  padding: 110px 0;
}
.contactus-desc p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 33px;
  color: var(--theme-light-gry);
  font-size: 20px;
}
.contactus-details {
  margin: 100px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.contactus-box {
  background: linear-gradient(0deg, #015c84 0%, rgba(0, 0, 0, 0) 100%);
  padding: 0 22px 22px;
  border-radius: 10px;
  text-align: center;
  border-radius: 10px;
}
.contactus-box-icon-desc {
  margin-top: -30px;
}
.contactus-box-icon-desc a {
  display: block;
  font-size: 20px;
  color: var(--theme-white);
  text-decoration: none;
  margin-top: 10px;
}
.contactus-form {
  margin: 0 auto;
  max-width: 830px;
  background: linear-gradient(180deg, #01151d 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 10px;
  padding: 40px 44px;
}
.contactus-form h2 {
  font-size: 30px;
  margin-bottom: 38px;
  color: #fff;
  font-family: "afd-semibold";
}
.contactus-form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.input-field input {
  width: 100%;
  background: #000;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--form-input);
  padding: 18px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
}
.input-field textarea {
  width: 100%;
  background: #000;
  padding: 15px 22px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  border: 1px solid var(--form-input);
}
input::placeholder {
  color: #fff;
}
textarea::placeholder {
  color: #fff;
}
.form-btn button {
  width: 100%;
  padding: 22px 0;
  background: linear-gradient(160.61deg, #36b8f2 0%, #1765b6 101.7%);
  border: none;
  outline: none;
  border-top-left-radius: 20px;
  font-family: "afd-semibold";
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom-right-radius: 20px;
  transition: all 0.5s ease;
}

.form-btn button:hover {
  background: linear-gradient(160.61deg, #1765b6 0%, #36b8f2 101.7%);
}
/* end contactussection */

/* tradingrulessection */
section.tradingrulessection {
  padding: 130px 0 10px;
  position: relative;
  z-index: 1;
}
.tradingrules-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.tradingrules-text h2 {
  font-size: 46px;
  font-family: "afd-Med";
}
.tradingrules-text p {
  margin: 15px 0 30px;
  max-width: 623px;
  font-size: 16px;
  color: var(--theme-light-gry);
}
.tradingrules-img {
  animation: float 6s ease-in-out infinite;
}
/* end tradingrulessection */

/* huntwithussection */
.huntwithussection {
  padding: 150px 0 100px;
}
.huntwithus-desc {
  background: linear-gradient(
    160.61deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 101.7%
  );
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #3d3d3d;
  backdrop-filter: blur(1.5px);
}
.huntwithus-desc h2 {
  font-size: 46px;
  max-width: 234px;
}
.huntwithus-desc p {
  font-size: 16px;
  max-width: 426px;
  color: var(--theme-light-gry);
}
.huntwithus-btn a {
  display: inline-block;
}
a.join-btn {
  padding: 13px 21px;
  color: var(--theme-white);
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  width: max-content;
  border: 1px solid var(--theme-btn-color);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-family: "afd-Med";
  background: linear-gradient(
    160.61deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 101.7%
  );
  backdrop-filter: blur(1.5px);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
a.join-btn:hover {
  background: linear-gradient(
    180deg,
    rgba(55, 181, 245, 1) 30%,
    rgba(27, 96, 181, 1) 100%
  );
  border-color: rgba(27, 96, 181, 1);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
a.whatsup-btn {
  background: var(--bg-green);
  padding: 16px 13px;
  font-size: 18px;
  color: var(--theme-white);
  text-decoration: none;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #409d54;
  transition: all 0.3s ease;
}
a.whatsup-btn:hover {
  border: 1px solid var(--theme-white);
  background: transparent;
}
a.whatsup-btn span {
  margin-left: 3px;
}
/* huntwithussection */

/* thepropdifferencesection */
.thepropdifferencesection {
  padding-bottom: 100px;
  float: left;
  width: 100%;
}
.thepropdifference-heading {
  text-align: center;
  float: left;
  width: 100%;
}
.thepropdifference-heading h2 {
  font-size: 50px;
  font-family: "afd-semibold";
}
.thepropdifference-heading p {
  color: var(--theme-light-gry);
  max-width: 600px;
  margin: 20px auto 60px;
  font-size: 16px;
}
.thepropdifference-details {
  background: var(--prop-bg);
  border-radius: 20px;
  padding: 124px 20px 46px;
  color: var(--theme-white);
  position: relative;
}
.thepropdifference-desc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  float: left;
  width: 100%;
}
.thepropdifference-txt {
  font-size: 20px;
  font-family: "afd-semibold";
  margin-bottom: 15px;
}
.thepropdifference-details p {
  font-size: 16px;
}
.thepropdifference-details img {
  position: absolute;
  right: 20px;
  top: 20px;
}
/* end thepropdifferencesection */

/* climbtherankssection */
.climbtherankssection {
  padding-bottom: 100px;
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
}
.level-boxes {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 25px 0 135px;
}
.level-boxes::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  left: 65px;
  top: 0;
  background: linear-gradient(to bottom, #4ca8d2 25vw, #363636 0%) fixed;
}
.level-details {
  display: flex;
  gap: 30px;
  background: var(--prop-bg);
  border-radius: 20px;
  align-items: center;
  padding: 40px 40px 0px 40px;
  float: left;
  width: 100%;
  position: relative;
  counter-increment: section;
  margin-bottom: 60px;
}
.level-details::before {
  content: counter(section);
  color: #fff;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #363636;
  background: #1a1a1a;
  position: absolute;
  top: 0;
  left: -100px;
  box-sizing: border-box;
  text-align: center;
  padding: 6px 0;
  font-family: "afd-semibold";
}
.level-details:last-child {
  margin-bottom: 0;
}
.level-txt {
  padding-bottom: 40px;
  width: 42%;
  color: var(--theme-white);
}
.level-img {
  width: 58%;
  text-align: center;
}
.level-img img {
  width: auto;
  float: left;
}
.level-txt h3 {
  margin-bottom: 30px;
  font-size: 32px;
  font-family: "afd-semibold";
}
.level-requirements {
  background: var(--level-req-bg);
  padding: 20px;
  border-radius: 20px;
}
.level-requirements-label {
  font-size: 16px;
  color: var(--level-req-label-bg);
  margin-bottom: 5px;
  font-family: "afd-semibold";
}
.level-requirements-sub p {
  font-family: "afd-Med";
  margin-bottom: 25px;
}
.level-requirements-sub:last-child p {
  margin-bottom: 0;
}

/* end climbtherankssection */

/* helpsearchsection */
.helpsearchsection {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.helpsearch-main {
  background: linear-gradient(180deg, #002f42 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 10px;
  padding: 40px 0 0;
  text-align: center;
}
.helpsearch-text h2 {
  font-size: 46px;
  color: #fff;
}
.search-input-field {
  max-width: 624px;
  margin: 0 auto;
  position: relative;
}
.search-input-field input {
  width: 100%;
  background: #000;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--form-input);
  padding: 20px 0 20px 60px;
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
}
.search-icon {
  position: absolute;
  top: 18px;
  left: 26px;
}
.helpsearch-box {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.about-the-only-prop a {
  border: 1px solid #767676;
  display: inline-block;
  background: #05000e;
  padding: 40px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.about-the-only-prop-heading {
  margin: 15px 0 5px;
  font-family: "afd-Med";
  font-size: 20px;
}
.about-the-only-prop-txt {
  margin: 5px 0 15px;
  color: #868686;
  font-size: 18px;
}
.about-the-only-prop-desc {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #868686;
}
.about-the-only-prop-desc.fourarticle {
  color: var(--written-gry);
}

.about-the-only-prop-logo-text img {
  max-width: 35px;
}
.about-the-only-prop-logo-text {
  display: flex;
  align-items: center;
  gap: 5px;
}
.articles-txt {
  font-size: 16px;
  display: flex;
  gap: 10px;
}

.about-the-only-prop-inner {
  padding: 60px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #313131;
}
.inner-about-the-only-prop-desc {
  display: flex;
  align-items: center;
  gap: 20px;
}
.inner-about-the-only-prop-head h3 {
  font-size: 35px;
  margin-bottom: 4px;
  font-family: "afd-semibold";
}
.about-the-only-prop-tabs a {
  text-decoration: none;
}
.about-the-only-prop-tabs {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-the-only-prop-tabs-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  padding: 20px;
  border: 1px solid #4e4e4e;
  border-radius: 15px;
  color: var(--tabscolor);
  margin: 0 auto;
}

.what-details p {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--theme-light-gry);
}
.step-des {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.step-des p {
  margin-bottom: 0;
}
.step-des ul {
  display: flex;
  gap: 30px;
  color: var(--theme-light-blue);
}
.step-des ul li {
  font-family: "afd-semibold";
}
.what-make-desc ul {
  padding: 0 0 20px 20px;
  color: var(--theme-light-blue);
}
.what-make-desc ul li {
  line-height: 30px;
  font-size: 18px;
}
.what-details p span {
  display: block;
  color: var(--theme-light-blue);
}
.custcr {
  color: var(--theme-light-blue);
  font-weight: normal;
}
/* end helpsearchsection */

/* footersection */
.footersection {
  background: var(--footer-bg);
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
}
.footermainsection {
  padding: 40px 0;
}
.footermain-desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.usefullink {
  display: flex;
  align-items: center;
  gap: 20px;
}
.usefullink ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
}
.usefullink ul li a {
  text-decoration: none;
  font-family: "afd-Med";
  font-size: 18px;
  color: var(--theme-white);
  transition: all 0.3s linear;
}
.usefullink ul li a:hover {
  color: #3fbcff;
}
.usefullink span {
  font-family: "afd-Med";
  font-size: 18px;
}

.footeaboutsection {
  padding: 40px 0;
  text-align: center;
  border: 2px dotted #373737;
  border-left: 0;
  border-right: 0;
}
.footeabout-desc h2 {
  font-size: 34px;
  font-family: "afd-semibold";
  margin-bottom: 10px;
}
.footeabout-desc p {
  font-size: 16px;
  line-height: 24px;
}

.footefollowussection {
  padding: 40px 0;
}
.footefollowus-desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footefollowus-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footefollowus-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footefollowus-left span {
  font-family: "afd-semibold";
  font-size: 24px;
}

.footecopyrightsection {
  background: var(--footer-copyright);
}
.footecopyright-desc {
  text-align: center;
  padding: 20px 0;
}
.footecopyright-desc p {
  font-family: "afd-Med";
  font-size: 14px;
}
/* end footersection */

/* cursor shadow */
.blob {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: #066fcf;
  filter: blur(200px);
  transition: all 450ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 0;
}
/* .blob.blobFull{z-index: 1;position: fixed;width: 500px;height: 500px;} */
/* end cursor shadow */

.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    slide-down 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

/********************************************** Responsive **********************************************/

@media screen and (min-width: 1440px) and (max-width: 1600px) {
  .astronaut {
    top: 10%;
    right: 15%;
  }
  .earthplanetsection {
    top: 600px;
  }
}

@media screen and (min-width: 1241px) and (max-width: 1400px) {
  .astronaut {
    top: 10%;
    right: 15%;
  }
  /* .earthplanetsection{top: 700px;} */
  .hero-text h2 {
    line-height: 55px;
  }
  .dailyrewards-desc {
    padding: 20px 20px 20px 20px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .hero-text h2 {
    font-size: 40px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .slider .slick-arrow.slick-prev {
    left: 43%;
  }
  .slider .slick-arrow.slick-next {
    right: 43%;
  }
  .heromain {
    gap: 0;
  }
  .aboutus-left img {
    max-width: 450px;
  }
  .astronaut {
    top: 10%;
    right: 5%;
  }
}

@media screen and (max-width: 1024px) {
  a.nav-logo img {
    max-width: 190px;
  }
  .nav-menu {
    gap: 24px;
  }
  .nav-list {
    gap: 20px;
  }
  .getfunded-btn {
    margin-top: 0;
  }
  section.tradingrulessection,
  .contactussection {
    padding: 110px 0 0;
  }
  .huntwithussection {
    padding: 110px 0 80px;
  }
  .thepropdifferencesection,
  .climbtherankssection {
    padding-bottom: 40px;
  }
  .thepropdifference-heading p {
    margin-bottom: 40px;
  }
  .contactus-details {
    margin: 70px 0 40px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
    column-gap: 30px;
  }
  .reachyourfinancialgoals-head p {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .heromain {
    gap: 0;
  }
  .dailyrewards-desc {
    padding: 30px;
  }
  .usp-sub-txt-icon {
    bottom: 20px;
    left: 15px;
  }
  .every-wednesday-payout-desc {
    width: 350px;
  }
  .helpsearch-box {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .about-the-only-prop-inner {
    padding: 40px 0;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .what-details p {
    margin-bottom: 10px;
  }
  .planet {
    position: absolute;
    bottom: 750px;
    width: 700px;
    height: 700px;
    background-repeat: no-repeat;
  }
  .earth-ring {
    bottom: 475px;
    width: 85%;
  }
  .easywaytogetfunded-left {
    margin-top: 70px;
  }
  .huntwithus-desc h2 {
    font-size: 32px;
  }
  .galaxy-main {
    top: 0;
    width: 100%;
  }

  .astronaut {
    width: 100%;
  }
  .hero-text h2 {
    font-size: 40px;
  }
  .aboutus-right h2 {
    font-size: 40px;
  }
  .helpsearchsection {
    padding: 80px 0;
  }
  .tradingrules-text h2 {
    font-size: 32px;
  }
  h2.title-text {
    font-size: 40px;
  }
  .helpsearch-text h2 {
    font-size: 40px;
  }
  .thepropdifference-heading h2 {
    font-size: 40px;
  }
  .level-img img {
    width: 100%;
  }
  .level-img {
    width: 50%;
  }
 
  .herosection {
    padding: 140px 0 60px;
  }
  .aboutsection {
    padding: 0 0 80px;
  }
  .easywaytogetfunded-details {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 992px) {
  section.earthplanetsection {
    display: none;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-img {
    text-align: center;
    position: relative;
    top: auto;
    left: auto;
  }
  .accountchallengessection {
    padding: 60px 0 0;
  }
  .reachyourfinancialgoals-head p {
    margin-bottom: 30px;
    font-size: 14px;
    font-family: "afd-Reg";
  }
  .custom_container {
    max-width: 100%;
    padding: 0 30px;
  }
  .nav-container {
    max-width: 100%;
    padding: 15px 20px;
  }
  .heromain {
    gap: 30px;
    flex-direction: column;
  }
  .hero-text h2 {
    max-width: fit-content;
    font-size: 36px;
    text-align: center;
  }
  .thepropdifference-heading h2 {
    font-size: 36px;
  }
  .hero-text > p {
    width: 100%;
    text-align: center;
  }
  .aboutus-desc {
    flex-wrap: wrap;
  }
  .aboutus-desc {
    flex-direction: column;
    gap: 30px;
  }

  .footermain-desc {
    flex-direction: column;
    gap: 20px;
  }
  .aboutus-right {
    padding: 20px;
    width: 100%;
  }
  .aboutus-right h2 {
    font-size: 36px;
  }
  h2.title-text,
  .helpsearch-text h2 {
    font-size: 36px;
  }
  .compare-with-other-companies-head {
    width: 100%;
    float: left;
  }
  .easywaytoget-arrow img {
    width: 100%;
  }
  .easywaytoget-number {
    width: 25%;
  }
  .easywaytoget-arrow {
    width: 15%;
  }
  .easywaytoget-txt {
    width: 50%;
  }
  .easywaytoget-number h3 {
    font-size: 26px;
  }
  .easywaytogetfunded-details {
    padding: 0;
    gap: 20px;
    width: 100%;
    float: left;
    margin-bottom: 40px;
  }
  .easywaytogetfunded-left {
    margin-top: 130px;
  }
  .sub-wrapper {
    margin-bottom: 30px;
  }
  .tab-link,
  li.cust-tab-link {
    padding: 10px 15px;
  }
  .tradingrules-text h2 {
    font-size: 36px;
  }
  .tradingrules-text p {
    max-width: 100%;
  }
  .tradingrules-text {
    text-align: center;
  }
  .tradingrules-main {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .inner-about-the-only-prop-head h3 {
    font-size: 26px;
  }
  .thepropdifference-desc {
    grid-template-columns: repeat(2, 1fr);
  }
  .level-img img {
    width: 100%;
  }
  .level-txt h3 {
    font-size: 27px;
  }
  .aboutus-left {
    width: 100%;
    display: none;
  }
  .footersection {
    margin-top: 60px;
  }
  .astronaut {
    opacity: 0.2;
  }
  .easywaytogetfunded-challenge {
    padding: 30px 0;
  }
  .easywaytogetfunded-left img {
    width: 87%;
  }

  .galaxy-main {
    display: none;
  }
  .astronaut {
    width: 60%;
  }
  .herosection {
    padding: 110px 0 60px;
  }
  .startchallenge-btn {
    display: flex;
    justify-content: center;
  }
  .hero-img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    width: 42px;
    border: 1px solid#fff;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #000c23;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 32px;
    box-shadow: -4px 0 20px rgb(16 78 141);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-item {
    border-bottom: 1px solid var(--border-color);
  }
  .nav-link {
    display: block;
    padding: 16px 0;
    color: #fff;
  }
  .nav-link::after {
    display: none;
  }
  .nav-actions {
    flex-direction: column;
    width: 100%;
  }
  .nav-actions {
    display: none;
  }
  .nav-actions.resbtn {
    display: block;
  }
  .res-light-dark-mode {
    display: block;
    margin-right: 60px;
    margin-top: 6px;
  }
  .aboutus-left img {
    width: 100%;
  }
  /* .tab-wrapper, .account-rs{padding: 8px;} 27-2-2026 */
  .step-main-price {
    padding: 15px;
  }
  .tab-content-wrapper {
    padding: 30px 20px;
  }
  .step-main-price {
    font-size: 32px;
  }
  /* .step-profit-desc{margin-bottom: 10px;} 27-2-2026 */
  .slider .slick-arrow.slick-prev {
    left: 40%;
  }
  .slider .slick-arrow.slick-next {
    right: 40%;
  }
  .contactus-form h2 {
    text-align: center;
    font-size: 24px;
  }
  .easywaytogetfunded-left {
    margin-top: 80px;
  }

  .huntwithus-desc {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 10px;
  }
  .huntwithus-desc h2 {
    max-width: none;
    font-size: 27px;
  }
  a.join-btn {
    margin-bottom: 0;
    line-height: 30px;
  }
  .huntwithus-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .thepropdifference-desc {
    grid-template-columns: 1fr;
  }
  .level-img img {
    width: 100%;
  }
  .level-boxes {
    gap: 40px;
  }
  .level-details {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .level-txt {
    width: 100%;
    padding-bottom: 0;
  }
  .level-img {
    width: 100%;
  }
  .account-rs {
    border-radius: 20px;
  }

  .uspmain {
    display: flex;
    flex-direction: column;
  }
  .every-wednesday-payout-desc {
    width: 100%;
  }
  .uspdetails.res-upsdetails {
    order: 3;
  }
  .uspdetails {
    width: 100%;
    gap: 15px;
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .input-field input,
  .input-field textarea {
    padding: 10px 20px;
  }
  .contactus-desc p {
    line-height: normal;
  }
  .form-btn button {
    padding: 11px 0;
  }
  .uspdetails {
    flex-direction: column;
  }
  /* .com_tableBox{grid-template-columns: 1fr; gap: 30px;} 27-2-2026 */
  /* .com-title{height: auto;    padding: 30px 0 30px;} 27-2-2026 */
  /* .cntermod{top: 20px;    } 27-2-2026 */
  /* .com-title.res-com-title{display: none;} 27-2-2026 */
  .dailyrewards-detail {
    margin-right: 20px;
    padding-right: 20px;
  }
  .sub-wrapper {
    flex-wrap: wrap;
  }
  .contactus-details {
    grid-template-columns: 1fr;
    row-gap: 60px;
    column-gap: 0px;
  }
  .helpsearch-text h2 {
    font-size: 24px;
  }
  .search-icon {
    top: 22px;
    left: 26px;
  }
  .search-icon img {
    max-width: 20px;
  }
  .step-des {
    flex-wrap: wrap;
    gap: 10px;
  }
  .step-des ul {
    padding-left: 20px;
  }
  h2.title-text.other-company-text {
    margin-bottom: 30px;
  }
  .wrapper {
    padding: 40px 10px;
  }
  .slider {
    padding: 0px 40px;
  }
  .usefullink {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
  }
  .usefullink ul {
    display: inline-block;
  }
  .usefullink ul li a {
    line-height: 30px;
  }
  .com_table {
    width: 800px;
    padding: 0 15px;
  }
  .comparetab {
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 40px;
    width: 100%;
  }
  section.compare-with-other-companies > .custom_container {
    padding: 0;
  }

  .level-boxes::before {
    display: none;
  }
  .level-details::before {
    display: none;
  }
  .level-boxes {
    padding: 0 0;
  }
  .helpsearchsection {
    padding-top: 0;
  }
  .step-profit {
    margin-top: 20px;
  }
  .uspsection {
    padding: 60px 0 0;
  }
  .aboutsection {
    padding: 60px 0;
  }
  .easywaytogetfundedsection {
    padding: 60px 0;
  }
  h2.title-text {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 601px) {
  .helpsearch-main {
    padding: 20px;
  }
  .about-the-only-prop a {
    padding: 20px;
  }
  .helpsearch-box {
    grid-template-columns: 1fr;
  }
  .easywaytogetfunded-challenge {
    padding: 40px 0;
  }
  .slider .slick-arrow.slick-prev {
    left: 35%;
  }
  .slider .slick-arrow.slick-next {
    right: 35%;
  }
}

@media screen and (max-width: 575px) {
  .hero-img img {
    max-width: 100%;
  }
  .nav-logo {
    margin-bottom: 0;
  }
  .nav-container {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .nav-btn {
    padding: 8px 16px;
    font-size: 16px;
  }
  .nav-container > a.nav-logo > img {
    max-width: 200px;
  }
  .footeaboutsection {
    padding: 30px 0;
  }
  .footefollowus-desc {
    flex-direction: column;
    gap: 15px;
  }
  .usefullink ul {
    flex-direction: column;
    text-align: left;
    gap: 10px;
  }
  .easywaytogetfunded-challenge {
    flex-direction: column;
  }
  .easywaytogetfunded-left {
    margin-top: 30px;
  }
  .easywaytoget-number {
    width: 100%;
  }
  .easywaytoget-txt {
    width: 100%;
    margin-top: 15px;
  }
  .easywaytoget-arrow {
    margin-top: 0;
    transform: rotate(90deg);
    display: none;
  }
  .easywaytoget-number h4 {
    margin-bottom: 10px;
  }
  .dailyrewards-desc {
    flex-direction: column;
    gap: 30px;
    padding: 30px 80px;
    align-items: self-start;
  }
  .dailyrewards-detail::before {
    width: 100%;
    height: 2px;
    bottom: -20px;
    top: unset;
  }
  .dailyrewards-detail {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .slider {
    padding: 0;
  }
  .accountchallengessection {
    padding: 35px 0 0;
  }
  .wrapper {
    padding: 0;
  }
  .slider .slick-arrow {
    bottom: -60px;
  }
  #galaxyCanvas {
    width: 100% !important;
  }
  .contactus-form {
    padding: 15px;
  }
  .contactus-form form {
    gap: 20px;
  }
  .tradingrules-img img {
    width: 100%;
  }
  .about-the-only-prop-heading {
    font-size: 18px;
  }
  .search-input-field input {
    padding: 10px 0 10px 50px;
    border-radius: 10px;
  }
  .search-icon {
    top: 14px;
    left: 20px;
  }
  .search-icon img {
    max-width: 17px;
  }
  .about-the-only-prop-inner {
    padding: 20px 0;
  }
  .inner-about-the-only-prop-desc {
    flex-direction: column;
    align-items: baseline;
  }
  .about-the-only-prop-tabs {
    gap: 20px;
    margin-top: 30px;
  }
  .about-the-only-prop-tabs-details {
    padding: 15px;
  }

  .step-details {
    flex-direction: column;
  }
  .riskrewardmatters {
    order: 3;
  }
  .step-main-price {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: fit-content;
    margin: 10px auto;
    order: 2;
  }
  .every-wednesday-payout-desc {
    padding: 30px 0;
  }
  .level-details {
    padding: 30px 20px 0;
  }
  .slider .slick-arrow.slick-prev,
  .slider .slick-arrow.slick-next {
    display: none !important;
  }
  .slick-track {
    padding-left: 25px;
  }
  .reachyourfinancialgoals {
    padding: 0 0 10px;
  }
  .easywaytogetfunded-left img {
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .account-rs ul {
    gap: 0;
  }
  .slider .slick-arrow.slick-prev {
    left: 35%;
  }
  .slider .slick-arrow.slick-next {
    right: 35%;
  }
  h2.title-text {
    font-size: 26px;
  }
  .about-the-only-prop-desc {
    flex-wrap: wrap;
  }
  .step-des {
    gap: 0;
  }
  .step-des ul li {
    line-height: 30px;
  }
  .account-rs ul {
    display: inline-block;
    column-count: 3;
    text-align: center;
    width: 100%;
  }
  .account-rs {
    width: 100%;
    text-align: center;
    float: left;
  }
  .thepropdifference-heading h2 {
    font-size: 32px;
  }
  .level-txt h3 {
    font-size: 25px;
  }
  .every-wednesday-payout-desc {
    padding: 30px;
    width: 100%;
  }
  .uspmain {
    padding: 0;
    gap: 10px;
  }
}

@media screen and (max-width: 375px) {
  .aboutus-right h2 {
    font-size: 25px;
  }
  .nav-container {
    padding: 10px;
  }
  .hamburger {
    right: 10px;
  }
  .accounts-tabs-main > .wrapper {
    padding: 0;
  }
  /* .tab-content-wrapper {        padding: 10px;    } 27-2-2026 */
  .step-details {
    flex-wrap: wrap;
    justify-content: center;
  }
  .step-main-price {
    position: relative;
    transform: unset;
    left: 0;
  }
  .step-main-price {
    padding: 10px;
    font-size: 22px;
  }
  /* .every-wednesday-payout-desc{flex-direction: column;} 27-2-2026 */
  .step-des ul {
    flex-direction: column;
    gap: 0;
  }
  .easywaytogetfunded-challenge {
    padding: 30px 0 40px;
  }
  .easywaytoget-txt {
    margin-top: 10px;
  }
  .easywaytoget-number h3 {
    font-size: 24px;
  }
  .easywaytogetfunded-left {
    margin-top: 35px;
  }
  .easywaytoget-number h4 {
    margin-bottom: 5px;
  }
  .huntwithus-desc h2 {
    font-size: 24px;
  }
  .footefollowus-left span {
    font-size: 20px;
  }
}

@media screen and (max-width: 320px) {
  .dailyrewards-desc {
    padding: 30px 50px;
  }
  .slider .slick-arrow.slick-prev {
    left: 20%;
  }
  .slider .slick-arrow.slick-next {
    right: 20%;
  }
}

.trade_stage_2 {
  display: none;
}
.trade_stage_3 {
  display: none;
}

.subject {
  opacity: 0;
}
.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    slide-up 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    slide-down 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    transform: translateY(-100px);
  }
}

@keyframes slide-down {
  from {
    transform: translateY(100px);
  }
}

.hero-text.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    left-out 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.hero-text.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    left-in 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.hero-img.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    right-out 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.hero-img.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    right-in 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.aboutus-left.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    left-out 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.aboutus-left.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    left-in 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.aboutus-right.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    right-out 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.aboutus-right.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    right-in 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.tradingrules-text.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    left-out 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.tradingrules-text.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    left-in 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.tradingrules-img.reveal-down {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    right-out 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

.tradingrules-img.reveal-up {
  opacity: 0;
  animation: fade-in 660ms ease forwards,
    right-in 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
}

@keyframes left-out {
  from {
    transform: translateX(-160px) translateY(160px);
  }
}

@keyframes left-in {
  from {
    transform: translateX(-160px) translateY(-160px);
  }
}
@keyframes right-out {
  from {
    transform: translateX(160px) translateY(160px);
  }
}

@keyframes right-in {
  from {
    transform: translateX(160px) translateY(-160px);
  }
}



/* ===== Chatbot Widget Overrides ===== */
body {
  height: auto !important;
  display: block !important;
  max-width: none !important;
  font-family: "afd-Reg" !important;
}

.chat-bottom-nav .nav-item {
  border-bottom: none !important;
  width: auto !important;
  float: none !important;
  line-height: normal !important;
}

/* ===== Chatbot Conflict Fixes ===== */
body {
  height: auto !important;
  display: block !important;
  max-width: none !important;
  flex-direction: unset !important;
  overflow-x: unset !important;
  overflow-y: unset !important;
  font-family: "afd-Reg" !important;
}

.navbar {
  display: block !important;
  flex-wrap: unset !important;
  width: 100% !important;
  float: left !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(0, 0, 0, 0.6) !important;
}

.chat-bottom-nav .nav-item {
  border-bottom: none !important;
  width: auto !important;
  float: none !important;
  line-height: normal !important;
  flex-direction: column !important;
  min-height: unset !important;
}
