@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500&display=swap");

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  background: #010e2a !important;
  /* Remove display: flex unless absolutely needed */
}

html,
body,
div,
span,
img,
a,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

ul,
li,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.bg_gradient {
  background-image: linear-gradient(
    140deg,
    #012827e7 0%,
    #010719 20%,
    transparent 50%,
    transparent 100%
  ) !important;
  display: block;
  width: 100%;
  z-index: 5;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.l_logo {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}





a {
  color: #fff;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

.alert {
  padding: 8px 15px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.img__res {
  max-width: 100%;
  display: block;
}

.alert__success {
  background: green;
}

.alert__danger {
  background: #c80505;
}

.alert__info {
  background: #05adc8;
  display: flex;
  justify-content: center;
  width: 100%;
}

.bg__dark {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.login__redirect {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav {
  width: 100%;
  background: #111;
  color: white;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-menu4:before {
  content: "\e9c0";
}


.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 99;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.logo {
  display: flex;
}

.logo > a img {
  max-width: 200px;
  height: auto;
}


/* Default logo image size */
.logo img {
  width: 150px;
  height: auto;
}

/* Shared styles for navbar__inner */
.navbar__inner {
  display: flex;
  align-items: center;
}

/* Mobile styles */
@media (max-width: 767px) {
  .navbar__inner {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    min-height: 50%;
    background: #0b3d36;
    color: white;
    padding: 60px 20px;
    transition: right 0.3s ease;
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
  }

  .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
    z-index: 1002;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
  }

  .navbar__inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .navbar__inner a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .navbar__inner .head__btn {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .navbar__inner .btn__login,
  .navbar__inner .btn__signup {
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    background: #007bff;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    font-size: 14px;
  }

  .navbar__inner.active {
    right: 0;
  }

  .overlay.active,
  .close-btn.active {
    display: block;
  }
}

.menu__main {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.menu__link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu__link:hover {
  color: #16B4F2;
}

.head__btn a {
  margin-left: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn__login {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn__signup {
  background-color: #16B4F2;
  color: #fff;
}

.btn__signup:hover {
  background: linear-gradient(to left, #5d7de9 0%, #1ae5da 100%);
  color: #222;
}

/* Base styles */
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d2b3e;
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
}

.logo img {
  width: 140px;
  height: auto;
}

.menu__main li {
  margin-bottom: 15px;
}

.menu__link {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
 

/* Buttons */
.head__btn a {
  text-decoration: none;
  margin-left: 10px;
  padding: 8px 16px;
  background: #16B4F2;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}
.head__btn.mobile {
  display: none;
  margin-top: 20px;
}


/* Reset + Base */

/* Hide desktop menu by default; shown on desktop via media query below */
.desktop-menu {
  display: none;
}
/* Desktop Menu */
/* Desktop Menu */
.desktop-menu {
  font-size: 16px;
  margin-left: 20px;
}
.navbar__inner .btn__login,
.navbar__inner .btn__signup {
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  background: #007bff;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}
/* Hamburger, close-btn, overlay, and mobile navbar styles are now grouped in the mobile media query above for maintainability. */
/* Remove this duplicate, now handled by .navbar__inner .btn__login, .navbar__inner .btn__signup above */




.navbar__inner a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.navbar__inner.active {
  right: 0;
}

.overlay.active,
.close-btn.active {
  display: block;
}

/* Media Queries */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .desktop-menu {
    display: flex;
    align-items: center;
  }

  .navbar__inner,
  .overlay,
  .close-btn {
    display: none !important;
  }
}


.main__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  position: relative;
}

.main__title::before {
  content: "\f052";
  font-family: "Icomoon";
  width: 100%;
  height: 1px;
  background-color: #16a4fd;
  color: #16a4fd;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main__title::after {
  content: "\f052";
  font-family: "Icomoon";
  width: 100%;
  height: 1px;
  background-color: #16a4fd;
  color: #16a4fd;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main__title span {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-align: center;
  color: #41faa4;
  width: 100%;
}

@media (max-width: 40em) {
  .main__title::before,
  .main__title::after {
    display: none;
  }
}

/* Topline */
.headtop {
  border-bottom: 1px solid rgba(49, 211, 227, 0.1);
}

.headtop__inner {
  padding: 10px 0;
}
.header-top {
  border-bottom: 1px solid rgba(49, 211, 227, 0.1);
}
.header-top__inner {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top__item {
  padding: 0 30px;
  margin-top: 0px;
  line-height: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
}

.btn__login {
  background-image: linear-gradient(to right, #16a4fd 0%, #41faa4 100%);
  margin-right: 10px;
}

.btn__signup {
  background-image: linear-gradient(to right, #16a4fd 0%, #41faa4 100%);
}


.btn__login:hover {
  background-image: linear-gradient(to right, #41faa4 0%, #16a4fd 100%);
  color: #222;
}

.btn__signup:hover {
  background: linear-gradient(to left, #5d7de9 0%, #1ae5da 100%);
  color: #222;
}

/* header */
.header {
  height: 50vh;
  margin-top: 5em;
  z-index: 10;
  margin-bottom: 15em;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.slide__left {
  text-align: left;
}

.slide__right {
    max-width: 600px;
}

.slide__right img {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
}

.slide__left h1 {
  font-size: clamp(2em, 4vw, 5em);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding-bottom: 30px;
  color: #41faa4;
  text-transform: uppercase;
}

.slide__left h1 strong {
  color: #ffffff;
}

.slide__left h1 strong:hover {
  color: #41faa4;
}

.slide__left span {
  color: #41faa4;
  font-size: clamp(1em, 5vw, 3em);
  padding-bottom: 20px;
}

/* About */
.about {
  margin: 10em 1em;
}

.about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.about__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about__right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__right img {
  width: 900px;
  height: auto;
}

.about__text1 {
  color: #41faa4;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: clamp(2em, 3vw, 5em);
  font-weight: bold;
}

.about__text2 {
  font-size: 1.5em;
  color: #fff;
  padding-bottom: 20px;
}

.about__text2:hover {
  color: #41faa4;
}

.about__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #41faa4;
  font-weight: bold;
  margin-bottom: 20px;
}

.about__title {
  justify-content: flex-start;
}

.about__btn--btn {
  margin-top: 30px;
  width: 160px;
  height: 45px;
  text-align: center;
  background-image: linear-gradient(to right, #16a4fd 0%, #41faa4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  color: #fff;
}

.about__text {
  font-size: 14px;
  line-height: 24px;
}

.about__text--high {
  padding-bottom: 10px;
  color: #3bf0bc;
}

.about__btn--btn:hover {
  background: linear-gradient(to left, #5d7de9 0%, #1ae5da 100%);
  color: #fff;
}

@media(max-width: 768px) {
  .about__content {
    flex-direction: column;
    align-items: center;
  }

  .about__left,
  .about__right {
    width: 100%;
    text-align: center;
  }

  .about__right img {
    max-width: 900px;
  }
}
.about__fea--list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  border-radius: 10px;
}

.about__fea--icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.about__fea--icon img {
  max-width: 30px;
}

.about__fea--content {
  margin-left: 10px;
}

.about__fea--content h5 {
  text-transform: uppercase;
  color: #3bf0bc;
  font-size: 14px;
}

.about__fea--content span {
  display: block;
  font-size: 12px;
  color: #ccc;
}

/*Plans*/
.inv-plan {
  margin-top: 40px;
}
.inv__plans {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-bottom: 10em;
}

.inv__title {
  text-align: center;
  font-size: 2em;
  color: #7da1ee;
  text-transform: uppercase;
}

.inv__title:hover {
  color: #10f79e;
}

.inv__plans--item {
  width: 350px;
  height: 450px;
  background-color: #1f2859;
  border-radius: 10px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: linear-gradient(
    135deg,
    rgba(13, 66, 178, 0) 25%,
    #1b5ed1 110%,
    rgba(13, 66, 178, 0) 80%
  );
}

.inv__ic {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #16a4fd;
}

.inv__ic img {
  width: 40px;
}

.plan-title {
  font-size: 2em;
}
.inv__percent {
  padding: 15px 0;
  color: #41faa4;
  font-size: clamp(3em, 5vw, 5em);
  font-weight: 600;
}

.inv__daily {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  font-size: 1.5em;
}

.inv__min {
  padding: 0 20px;
  width: 100%;
}

.inv__min--txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  font-size: 1em;
  font-weight: 300;
}

.inv__min--txt span {
  color: #41faa4;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
/* Responsive styles for the profit calculator */
.inv__cal {
  margin: 2rem auto;
  max-width: 700px;
  background: #1f2859;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2rem 2.5rem;
}
.plans__cal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.plans__cal--icon img {
  width: 100px;
  height: 100px;
}
.plans__cal--txt {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.plans__cal--box {
  flex: 1 1 200px;
  min-width: 180px;
}
.cal__input label {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  display: block;
}
.cal__input--input {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.responsive-cal-result {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.cal__result--item {
  flex: 1 1 180px;
  min-width: 140px;
  background: #41faa4;
  border-radius: 0.7rem;
  padding: 1rem 0.7rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.cal__result--text {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.3rem;
}
.cal__result--val {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
}
@media (max-width: 600px) {
  .inv__cal {
    padding: 1rem 0.7rem;
    max-width: 98vw;
  }
  .plans__cal {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .plans__cal--icon img {
    width: 100px;
    height: 100px;
  }
  .plans__cal--txt {
    font-size: 1.1rem;
  }
  .responsive-cal-result {
    flex-direction: column;
    gap: 0.7rem;
  }
  .cal__result--item {
    min-width: unset;
    width: 100%;
    padding: 0.8rem 0.5rem;
  }
}





  
  .features {
  background-color: #010e2a;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
}

.features__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #16B4F2;
  margin-bottom: 40px;
}

.features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.feature__item {
  background: #0b3d36;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(48% - 15px);
  min-width: 280px;
  transition: transform 0.2s ease;
}

.feature__item:hover {
  transform: translateY(-5px);
}

.feature__heading {
  font-size: 20px;
  color: #16B4F2;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature__text {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

  
@media (max-width: 768px) {
  .features__grid {
    flex-direction: column;
  }

  .feature__item {
    flex: 1 1 100%;
  }
}


.invfea {
  background-color: rgba(0, 0, 0, 0.25);
}

.invfea__flex {
  display: flex;
.invest-features {
  background-color: rgba(0, 0, 0, 0.25);
}

.invest-features__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.invest-features__item {
  width: 25%;
  text-align: center;
}

.invest-features__item--icon {
  margin-bottom: 10px;
  display: block;
}

.invest-features__item--icon img {
  width: 48px;
}

.invest-features__item--text {
  font-size: 16px;
  color: #eee;
}

.invest-features__item--text span {
  color: #41faa4;
}
}

.infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  border-radius: 10px;
}

.info-box__item {
  width: 24%;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-box__item--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.info-box__item--icon img {
  max-width: 48px;
}

.info-box__item--content {
  padding-top: 20px;
  text-align: center;
}

.info__box--title {
  font-size: 14px;
  text-transform: uppercase;
.info-box__item--content span {
  font-size: 18px;
  color: #41faa4;
  font-weight: 600;
}
}
  align-items: flex-start;
}

.stat__item {
  width: 24%;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.stat__item--title {
  background-color: rgba(0, 0, 0, 0.1);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #41faa4;
  border-radius: 10px 10px 0 0;
  font-weight: 700;
}

.stat__item--content {
  padding: 10px;
}

.stat__line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #3bf0bc;
  padding: 5px 0;
}

.stat__line--img {
  width: 20px;
}

.stat__line--img img {
  width: 18px;
  height: 18px;
}

.stat__line--amount {
  color: #3bf0bc;
  font-weight: 500;
  font-size: 14px;
}

.stat__line--username p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 14px;
}

.stat__line:last-child {
  border-bottom: 0;
}

.pay__methods {
  width: 100%;
  background-color: #0b3d36;
}


.pays__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;

}

/*footer*/

.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}

.f__logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-info p {
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ccc;
}

.footer-info i {
  color: #ffcc00;
}

.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffcc00;
}


.terms__link a:hover {
  color: #ffcc00;
}

.pays__item {
  padding: 5px 0;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pays__item img {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 10px;
}




.copyright {
  color: #ccc;
  letter-spacing: 0.6;
  font-size: 14px;
}

.copyright strong {
  color: #41faa4;
  font-weight: 500;
}

.terms__link a {
  color: #eee;
  font-size: 14px;
  margin-left: 20px;
}

.terms__link a:hover {
  color: #41faa4;
}

/* affiliate */
.aff {
  width: 100%;
  margin: 20px 0;
  position: relative;
}

.aff__content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 20px;
}

.aff__content--left {
  width: 35%;
  text-align: right;
}

.aff__content--center {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.aff__content--right {
  color: #9ac9ff;
  padding: 20px;
  width: 70%;
}

.aff__content--left img {
  max-width: 100%;
}

.aff__title {
  font-size: 18px;
  color: #41faa4;
}

.affpercent {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 50px;
.affiliate-percent {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 50px;
}
  display: flex;
  justify-content: center;
  align-items: center;
}

.aff__percent--one,
.aff__percent--five {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  border: 2px solid #41faa4;
}

.aff__percent--one span,
.aff__percent--five span {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
}

.aff__percent--one p,
.aff__percent--five p {
  font-size: 16px;
  color: #41faa4;
}

/* Page */
.page {
  width: 100%;
  margin-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

.page__title {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 10px;
}

.page__title span {
  color: #3bf0bc;
}

.page__title::before {
  content: "";
  background-color: #05adc8;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
}

/* auth */

.login {
  /*outline: 2px solid red;*/
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:50px;
  background-color: #010e2a; 
}

.login__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
 /* Adjust for form width */
}


.login__box {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*outline: 2px solid red;*/
  padding: 30px 0;
  border-radius: 10px;
}



.login__title {
  text-align: center;
  font-size: 18px;
  color: #41faa4;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;

  justify-content: center;
  align-items: center;
}

.login__ic {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #16a4fd;
  border-radius: 50%;
  margin-bottom: 20px;
}

.login__ic i {
  font-size: 28px;
  color: #ccc;
}


.signup {
  /*outline: 2px solid rgb(240, 146, 146);*/
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items: flex-start;
  align-content: center;
  gap: 20px;
  padding:0 20px;
}


.signup__key {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


  .signup__key {
    width: 100%;
    justify-content: center;
  }

  .signup__key span {
    margin-right: 20px;
  }


.auth__input {
  margin-bottom: 20px;
  position: relative;
}

.auth__input  .create {
    /*outline: 2px solid red;*/
    width: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    text-align: center;
}

.auth__input label {
  display: block;
  padding-bottom: 5px;
  font-weight: 300;
  color: #3bf0bc;
  font-size: 13px;
}

.auth__input span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.auth__input span i {
  font-size: 24px;
  color: #05adc8;
}
.auth__input span i:hover {
  color: #41faa4;
}



.auth__input--input {
  position: relative;
  height: 45px;
  background: transparent;
  border: 1px solid #05adc8;
  outline: none;
  padding: 5px 10px;
  color: #eee;
}

.auth__input--text {
  width: 350px;
  background: transparent;
  border: 1px solid #05adc8;
  outline: none;
  padding: 5px 10px;
  color: #eee;
}

.auth__input span img {
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.auth__btn {
  background-image: linear-gradient(to right, #16a4fd 0%, #41faa4 100%);
  padding: 10px 30px;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.auth__btn:hover {
  opacity: 0.8;
}

.forgot__link {
  color: #3bf0bc;
  font-size: 13px;
}

.forgot__link:hover {
  color: #ccc;
}



.transaction__code {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #eee;
  text-align: center;
}

.auth__agree {
  margin: 20px 0;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}

.auth__upline {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: #ccc;
}
.auth__referrer {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: #ccc;
}

/* other */
.other {
  width: 100%;
  margin: 20px 0;
}

.other__inner {
  font-size: 13px;
  font-weight: 400;
  color: #eee;
  line-height: 26px;
}

.other__inner p {
  margin-bottom: 10px;
  text-align: justify;
}

.other__title {
  margin: 20px 0;
  font-size: 18px;
  color: #3bf0bc;
}

.other__inner ol li {
  list-style: decimal;
  margin-left: 30px;
}

.ollist {
  color: #05adc8;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 13px;
}
.ordered-list {
  color: #05adc8;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 13px;
}


/* faq */
.faq .accordion {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 16px;
  margin-bottom: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  letter-spacing: 0.6px;
  border-radius: 10px 10px 0 0;
}

.faq .active,
.faq .accordion:hover {
  background-image: linear-gradient(to right, #16a4fd 0%, #41faa4 100%);
}

.faq .panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  font-size: 14px;
  font-weight: 500;
}

/* support */
.support {
  margin: 20px auto;
  width: 100%;
  /* outline: 3px solid red; */
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 40em) {
  .support {
    flex-direction: column;
    align-items: center;
  }
}


.support__title {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-weight: 500;
  color: #3bf0bc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
}

.support__title i {
  color: #fff;
  font-size: 22px;
}

.support__left,
.support__right {
 
  text-align: center;
}

.support__content {
  background-color: rgba(0, 0, 0, 0.15);
}

.support__box {
  border-radius: 50%;
  width: 420px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  background: url("../img/maps.html") #1a0b69 no-repeat center;
  background-size: contain;
  border: 2px solid #05adc8;
}

.support__content p {
  margin-bottom: 18px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.support__content i {
  font-size: 24px;
  margin-right: 5px;
  color: #16a4fd;
  margin-bottom: 10px;
}

.support__content p span {
  color: #3bf0bc;
  padding-right: 5px;
  display: block;
}

/* Account */
.acc__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
}

.acc__top--part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25%;
  height: 60px;
}

.acc__top--icon {
  background: rgba(0, 0, 0, 0.1);
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.acc__top--icon i {
  font-size: 24px;
  color: #fff;
}

.acc__top--info p {
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  color: #16a4fd;
}

.acc__top--info div {
  font-size: 14px;
  font-weight: 300;
}

.bgblack {
  background-color: rgba(0, 0, 0, 0.2);
}

.acc__menu {
  width: 300px;
.bg-black {
  background-color: rgba(0, 0, 0, 0.2);
}
}

.user__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn__with {
  font-size: 13px !important;
  border: 0 !important;
  padding: 0 30px !important;
  font-weight: 400 !important;
  text-align: center;
}

.user__avatar {
  width: 100px;
  height: 100px;
  border: 2px solid #16a4fd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user__avatar i {
  font-size: 48px;
  color: #fff;
}

.user__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.user__welcome {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  margin: 10px 0;
}

.user__welcome--username span {
  color: #05fffd;
}

.user__welcome--bal {
  padding-top: 10px;
  color: rgba(255, 201, 5, 1);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.acc__menu > a {
  width: 100%;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  position: relative;
  margin-top: -1px;
  border-top: 2px solid transparent;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.acc__menu--icon {
  margin-right: 10px;
}

.acc__menu--icon img {
  width: 24px;
}

.acc__menu a p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.acc__menu a span {
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  color: #333;
  margin-top: -5px;
}

.acc__menu a:hover,
.acc__menu a.active {
  background: #16a4fd;
  color: #fff;
}

.mt5 {
  margin-top: 5rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.mt2 {
  margin-top: 2rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.acc__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.acc__bot {
  width: 820px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 20px;
}

.acc__bal--title {
  text-align: center;
}

.acc__bal--title i {
  display: block;
  font-size: 36px;
  color: #255044;
  margin-bottom: 10px;
}

.acc__bal--title p {
  font-size: 16px;
  font-weight: 600;
  color: #3bf0bc;
  text-align: center;
  padding-top: 10px;
}

.acc__bal--title span {
  font-size: 14px;
  font-weight: 300;
  color: #eee;
  text-transform: uppercase;
}

.acc__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
}

.acc__btn--btn {
  padding: 8px 0;
  background: linear-gradient(to left, #f550a0 0%, #ff7478 100%);
  width: 120px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  margin: 0px 5px;
  font-weight: 500;
}

.acc__btn--with {
  background-color: #3bf0bc;
  color: #000;
}

.acc__btn--btn:hover {
  background: linear-gradient(to left, #ff7478 0%, #f550a0 100%);
  color: #fff;
}

.acc__portfolio-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.acc__portfolio-balance--item {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 10px 0;
}

.acc__portfolio-balance--img {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.acc__portfolio-balance--item span {
  color: #41faa4;
  font-size: 16px;
  font-weight: 400;
}

.acc__portfolio-balance--item p {
  font-size: 11px;
  font-weight: 300;
  color: #05adc8;
  margin-top: -5px;
  padding: 0;
  margin-bottom: 0;
}


.acc__bot--title span {
  font-size: 12px;
  color: #ccc;
  display: block;
}

.acc__stat {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.acc__stat--item {
  width: 48%;
  width: calc(50% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: relative;
  height: 50px;
}

.acc__stat--item > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.acc__stat--icon {
  padding: 0 10px;
}

.acc__stat--icon i {
  color: #16a4fd;
}

.acc__welcome {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 10px;
}

.acc__welcome--list {
  color: #41faa4;
  text-align: center;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.acc__welcome--list p {
  color: #eee;
  padding: 0 10px;
  margin: 0;
}

.acc_welic {
  margin-right: 5px;
  display: block;
  text-align: center;
}

.acc__welcome-icon {
  margin-right: 5px;
  display: block;
  text-align: center;
}

.acc__welcome-icon i {
  font-size: 24px;
}
 

.acc__stat--text span {
  font-size: 12px;
  color: #41faa4;
  text-transform: uppercase;
}

.acc__stat--bal {
  position: absolute;
  right: 10px;
  font-size: 18px;
  color: #41faa4;
}

.acc__refbox {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.acc__referral-box {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.acc__referral-box label {
  font-size: 12px;
  font-weight: 300;
  color: #3bf0bc;
}

.referral-box__link {
  border: 1px solid #05adc8;
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.referral-box__icon {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: #16a4fd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
  

.acc__bot--btn i {
  color: #3bf0bc;
  font-size: 18px;
  margin-right: 10px;
}

.acc__bot--btn:hover {
  opacity: 0.8;
}

.other__ac--title {
  background: linear-gradient(to left, #9982ed 0%, #f879b6 100%);
}

.other__inner table {
  width: 100%;
  border: 1px solid #05adc8;
}

.other__inner table td {
  border-bottom: 1px solid #05adc8;
  padding: 15px;
}

.inpts {
  padding: 10px 15px;
  width: 100%;
  background: transparent;
  outline: none;
  color: #fff;
.input-style {
  padding: 10px 15px;
  width: 100%;
  background: transparent;
  outline: none;
  color: #fff;
  border: 1px solid #05adc8;
  border-radius: 4px;
  font-size: 14px;
}
  margin-top: 0px;
.submit-btn {
  color: #ffffff;
  text-transform: capitalize;
  font-size: 14px;
  padding: 0 30px;
  margin-top: 0px;
  line-height: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(to right, #16a4fd 0%, #41faa4 100%);
  border: 0;
  outline: none;
  box-shadow: none;
}

.submit-btn:hover {
  background: linear-gradient(to left, #5d7de9 0%, #1ae5da 100%);
  color: #fff;
  outline: none;
  box-shadow: none;
}
}
.other__inner .section-line {
  background-color: #05adc8;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
}

.section-line__choose {
  padding: 20px;
  text-align: center;
}

.section-line__line {
  margin: 0 10px;
}

.section-line__line input[type="radio"] {
  margin-right: 5px;
}
.pnav-t {
  margin-bottom: 1.25rem;
  margin-left: 0;
  list-style: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid #255044;
.tab-nav {
  margin-bottom: 1.25rem;
  margin-left: 0;
  list-style: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid #255044;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-nav > li > a {
  display: block;
}

.tab-navs {
  zoom: 1;
}

.tab-navs:before,
.tab-navs:after {
  display: table;
  content: "";
}

.tab-navs:after {
  clear: both;
}

.tab-navs > li {
  float: left;
}

.tab-navs > li > a {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: 0.1rem;
  line-height: 1rem;
}

.tab-navs > li {
  margin-bottom: 5px;
}

.tab-navs > li > a {
  padding: 12px 20px;
  line-height: 1.25rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.tab-navs > li > a:hover,
.tab-navs > li > a:focus {
  background-color: #255044;
}

.tab-navs > .active > a,
.tab-navs > .active > a:hover,
.tab-navs > .active > a:focus {
  cursor: default;
  background-color: #255044;
  border-bottom-color: transparent;
}

.promo__img {
  margin-bottom: 20px;
}

.other__inner .pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.other__inner .pagination a {
  color: #41faa4;
  padding: 10px 15px;
  border: 1px solid #41faa4;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 5px;
}

