@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Raleway:wght@600;700;800&display=swap');

:root{
  --btn-button: #ffcc33;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  font-size: 15px;
  color: #ececec;
  font-weight: 400;
  background-color: #0a0220d3;
  box-sizing: border-box;

  overflow-x: hidden;
  /* prevent horizontal scroll */
  overflow-y: auto;
  /* allow vertical scroll */
}


h1, h2, h3, h4, h5, h6,
div,
span,
img,
a,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  vertical-align: baseline;
}
p, span, li, input, textarea {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

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;
}

/* Wrapper */
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

.wrapper_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url('../img/Digital_Property_Evolution.jpg') no-repeat center center fixed;
  background-size: cover;
  background-blend-mode: overlay;

  z-index: -1;
}



.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;
}




/* =========================
   BASE NAV
========================= */
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: relative;
}

.logo {
  display: flex;
}

.logo img {
  height: auto;
  max-width: 200px;
}

.menu__main {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.menu__main li .menu__link {
  text-decoration: none;
  color: #ffcc33;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.menu__main li .menu__link:hover {
  border-bottom: 2px solid #ffcc33;
}

.head__btn a {
  margin-left: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.desktop-menu {
  display: none;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 767px) {
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 1, 24, 0.567);
    z-index: 1500;
    display: none;
  }
  .overlay.active {
    display: block;
  }

  /* Mobile nav container */
  .navbar__inner {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 60%;
    background: #2f0a44;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
  }
  .navbar__inner.active {
    right: 0;
  }

  /* Hamburger */
  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 3000;
  }
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
  }

  /* Close Button */
    .close-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      font-size: 35px;
      color: white;
      cursor: pointer;
      display: none;
      z-index: 10000;
      /* make sure it's always clickable */
    }


  .close-btn.active {
    display: block;
  }

  /* Mobile menu links */
  .navbar__inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .navbar__inner a {
    color: #ffcc33;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
  }

  .navbar__inner .head__btn {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .head__btn.mobile {
    display: flex;
    margin-top: 20px;
  }
}

/* Desktop */
@media screen and (min-width: 768px) {
  .hamburger { display: none; }
  .desktop-menu { display: flex; align-items: center; }
  .navbar__inner,
  .overlay,
  .close-btn { display: none !important; }
}

/* =========================
   LOCK SCROLL WHEN MENU OPEN
========================= */
body.menu-open {
  overflow: hidden;
}


#header .header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.slide__left {
  text-align: left;
}

.slide__right img {
  width: 100%;
  max-width: 700px; 
  height: auto;
  display: block;
  margin-top: 30px;
}


.slide__left h1 {
  padding-bottom: 30px;
  color: #ffcc33;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.2em, 4vw, 3em);
  font-weight: 800;
}

.slide__left h1 > .welcome {
  color: #12686b !important;
}
.slide__left h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.5em, 4vw, 2em);
  font-style: italic;
  color: #f5f5f5;
}



.slide__left h1:hover {
  color: #f5f5f5;
}

.slide__left .quote {
  color: #ffcc33;
  font-family: 'Raleway', sans-serif;
  font-size:clamp(1.5em, 5vw, 3em) ;
  
}

.slide__left--btn{
  margin: 30px auto;
}
.get_started_btn  {
  text-decoration: none;
  margin-left: 10px;
  padding: 10px 16px;
  background: #12686b;
  color: #f5f5f5;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.get_started_btn:hover {
  background: transparent;
  border-bottom: 2px solid #ffcc33;
  color:#4d0985 ;
}

@media screen and (min-width: 768px) {
  .slide__left {
    width: 50%;
  }

  .slide__right {
    width: 50%;
  }
}

/* About */
#about {
  padding: 60px 20px;
  margin-bottom: 10px;
}

#about .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: #ffcc33;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-size: clamp(2em, 3vw, 5em);
  font-weight: bold;
}

.about__text3 {
  font-size: clamp(0.95em, 3vw, 1.2em);
  line-height: 24px;
}

.about__title {
  display: flex;
  justify-content: flex-start;;
  align-items: center;
  font-size: 1.5em;
  color: #f5f5f5;
  font-weight: bold;
  margin-bottom: 20px;
}





@media(max-width: 768px) {
  .about__content {
    flex-direction: column;
    align-items: center;
  }

  .about__left,
  .about__right {
    width: 100%;
    text-align: left;
  }

  .about__right img {
    max-width: 900px;
  }
}


/*Plans*/
#inv-plan {
  margin-top: 10px;
}

.inv__plans {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-bottom: 5em;
}

.inv__title {
  text-align: center;
  font-size: clamp(2em, 5vw, 3em);
  color: #ffcc33;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}

.inv__plans--item {
  width: 350px;
  height: 500px;
  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(to right, #050535 0%, #46078f 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 1.5px 4px rgba(22,164,253,0.12);
}

.inv__ic {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid  #ffcc33;
}

.inv__ic img {
  width: 40px;
}

.plan-title {
  font-size: clamp(2em, 3vw, 2.5em);
  color: #ffcc33;
}
.inv__percent {
  font-size: clamp(1.5em, 5vw, 3em);
  font-weight: 600;
  padding: 15px 0;
  color: #ffcc33;
  
}

.inv__daily {
  background-color: #ffcc00;
  width: 100%;
  color: #320b5e;
  padding: 10px 0;
  font-size: 1em;
}
.inv__daily span {
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  font-style: oblique;
}

.inv__min {
  padding: 0 20px;
  width: 100%;
  font-weight: bold;
}

.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: #f5f5f5;
}
.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 */

#calculator_certificate {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(34, 7, 59, 0.781);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

#calculator_certificate > .calculator_certificate__left {
  margin-right: 20px;
}

#calculator_certificate > .calculator_certificate__left > img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
} 

.inv__cal {
  background: linear-gradient(135deg,
        rgba(12, 6, 99, 0) 25%,
        #30074b 110%,
        rgba(12, 6, 92, 0) 80%);
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.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: #f5f5f5;
  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 {
  padding: 60px 20px;
  
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
}

.features__title {
  text-align: center;
  font-size: clamp(1.5em, 5vw, 3em);
  font-weight: bold;
  color: #daa138;
  margin-bottom: 40px;
}

.features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.feature__item {
  background: rgba(10, 3, 31, 0.8);
  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: #daa138;
  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%;
  }
}



.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;
}



.info-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  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;
}


.pay__methods {
  /* background-color:rgba(10, 3, 31, 0.8); */
  padding: 30px 20px;
  margin-bottom: 10px;
}


.pays__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;

}

/*footer*/

#footer {
  /* background: rgba(10, 3, 31, 0.8); */
  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: #f5f5f5;
  font-weight: 500;
}

.terms__link a {
  color: #eee;
  font-size: 14px;
  margin-left: 20px;
}

.terms__link a:hover {
  color: #f5f5f5;
}

/* 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: #f5f5f5;
}


.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 #f5f5f5;
}

.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: #f5f5f5;
}

/* 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,
#login .login__inner
 {
  margin: 0 auto;
}




.login__box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
}


.signup {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
}

@media(max-width: 40em) {
  .signup {
    flex-direction: column;
  }
}

.main__title{
  text-align: center;
  font-size: clamp(1.5em, 5vw, 3em);
  color: #f5f5f5;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.login__title {
  text-align: center;
  font-size: 18px;
  color: #f5f5f5;
  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: #ffcc00;
  border-radius: 50%;
  margin-bottom: 20px;
}

.login__ic i {
  font-size: 28px;
  color: #1a0b69;
}


.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 {
  position: relative;
    /* parent wrapper for icon positioning */
  width: 400px;
  margin: 10px;
}

.auth__input  .create {
    outline: 2px solid red;
    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: #e4e4e4;
  font-size: 13px;
}

.auth__input span {
  position: absolute;
}
.auth__input span i {
  font-size: 24px;
  color: #ffcc33;
}
.auth__input span i:hover {
  color: #f5f5f5;
}



.auth__input--input {
  position: relative;
  width: 100%;
  /* makes it responsive */
  max-width: 350px;
  /* cap at 400px */
  height: 45px;

  background: transparent;
  border: 1px solid #ffcc33;
  border-radius: 6px;
  /* smooth corners */

  outline: none;
  padding: 0 12px;
  /* space inside */
  color: #ffcc33;
  font-size: 15px;

  transition: all 0.3s ease;
  /* smooth hover/focus */
}

.auth__input--input::placeholder {
  color: rgba(255, 204, 51, 0.6);
  /* softer placeholder */
}

.auth__input--input:focus {
  border-color: #fff;
  /* highlight focus */
  box-shadow: 0 0 8px rgba(255, 204, 51, 0.6);
}

.auth__input--text {
  background: transparent;
  border: 1px solid #ffcc33;
  outline: none;
  padding: 5px;
  color: #eee;
}


.auth__input span img {
  position: absolute;
  right: 15px;
  vertical-align: middle;
  /* move icon inside input */
  width: 24px;
  height: 24px;
  pointer-events: none;
  /* icon won’t block typing */
}

.auth__btn {
  background: var(--btn-button);
  padding: 10px 30px;
  font-size: 16px;
  text-transform: capitalize;
  color: #23053f;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  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(25, 4, 39, 0.5);
  color: #ebebeb;
  font-weight: 600;
  cursor: pointer;
  padding: 16px;
  margin-bottom: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  transition: 0.4s;
  letter-spacing: 0.6px;
  border-radius: 10px 10px 0 0;
}

.faq .active,
.faq .accordion:hover {
  background-image: linear-gradient(to right, #4d0985 0%, #aa781c 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(42, 5, 59, 0.575);
  font-size: 15px;
  font-weight: 500;
  color: #ffcc33;
  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(42, 9, 70, 0.479);
}

.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 #ffcc33;
}

.support__content p {
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.support__content i {
  font-size: 24px;
  margin-right: 5px;
  color: #f5f5f5;
  margin-bottom: 10px;
}

.support__content p span {
  color: #ffcc00;
  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: #f5f5f5;
  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: #f5f5f5;
  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: #f5f5f5;
  text-transform: uppercase;
}

.acc__stat--bal {
  position: absolute;
  right: 10px;
  font-size: 18px;
  color: #f5f5f5;
}

.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%, #f5f5f5 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: #f5f5f5;
  padding: 10px 15px;
  border: 1px solid #f5f5f5;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 5px;
}


/* Ensure nav layers stay on top of everything */
.navbar__inner {
  z-index: 9999; /* highest layer */
}

.close-btn {
  z-index: 10000; /* above everything */
}

.overlay {
  z-index: 9998; /* just below nav, but above content */
}



