@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;family=Exo+2:ital,wght@0,100..900;1,100..900&amp;family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;family=Staatliches&amp;display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-gold: #a99767;
  --light-gold: #ebe6d6;
  --vlight-gold: #fbd74a;
  --vvlight-gold: #feffd2;
  --overlay-gold: rgba(0, 0, 0, 0.5);
  --white: #ffffff;
  --ltwhite: #f2f2f2;
  --vlwhite: #f5f5f5;
  --bk: #131313;
  --ltbk: #7f7f7f;
  --d4: #d4d4d4;
  --bg: #f5f6fa;
  --bigtxt: 45px;
  --midtxt: 25px;
  --smtxt: 18px;
  --xsmtxt: 16px;
  --xxsmtxt: 14px;
  --ts: 0.5s ease;
}
::selection {
  background: var(--light-gold);
  color: var(--bk);
}

html,
body {
  width: 100%;
  height: 100%;
}
body {
  position: relative;
  display: flex;
  justify-content: center;
  top: 0 !important;
}
body > .skiptranslate {
  display: none;
}

/* general style */
a {
  text-decoration: none;
}
li {
  list-style: none;
}
p {
  font-weight: 500;
  font-size: var(--xsmtxt);
}
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
table thead,
table tbody {
  width: 100%;
}
table tr {
  width: 100%;
}
table thead tr th {
  border: none;
  background: var(--main-gold);
  color: var(--white);
  font-size: var(--smtxt);
  font-weight: 700;
  padding: 10px;
  text-align: left;
}
table tbody tr {
  background: var(--light-gold);
  border-bottom: var(--ltbk);
  transition: var(--ts);
}

table tbody tr.odd {
  background: var(--white);
  border-left: 1px solid var(--vlwhite);
  border-right: 1px solid var(--vlwhite);
}

table tbody tr td {
  padding: 10px;
  text-align: left;
  font-weight: 500;
  font-size: var(--xsmtxt);
  color: var(--bk);
}

table tbody tr td a {
  width: max-content;
  padding: 8px 15px;
  border-radius: 4px;
  background: var(--main-gold);
  color: var(--light-gold);
}

table tbody tr td h4 {
  font-size: var(--xsmtxt);
  font-weight: 700;
  color: var(--main-gold);
  display: none;
}
input,
select,
textarea {
  font-family: "Nunito", sans-serif;
}
button {
  font-family: "Exo 2", sans-serif;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  transition: var(--ts);
  z-index: 1000;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.spop-body {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

#google_element {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 900;
}
#google_element select {
  border: none;
  outline: none;
}
.pagination {
  margin-top: 1.5rem;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  padding: 0 6px;
}

.pagination span {
  padding: 4px 0.5rem;
  font-weight: 700;
  font-size: var(--xsmtxt);
  background: var(--light-gold);
  color: var(--bk);
  transition: var(--ts);
  cursor: pointer;
  border: 1px solid var(--bk);
}

.pagination span.active {
  background: var(--main-gold);
  border: 1px solid var(--white);
  color: var(--white);
}
.loader-area {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  background: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.loader {
  color: var(--main-gold);
  position: relative;
  font-size: 11px;
  background: var(--main-gold);
  animation: escaleY 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
  left: 2em;
  background: var(--main-gold);
  width: 1em;
  height: 4em;
  animation: escaleY 1s infinite ease-in-out;
}
.loader:before {
  left: -2em;
  animation-delay: -0.32s;
}

@keyframes escaleY {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

.data-section > * {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s ease;
}

.data-section.active > * {
  opacity: 1;
  transform: translateY(0);
}

.elite {
  position: relative;
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  font-family: "Nunito", sans-serif;
  font-variant: normal;
  overflow-x: hidden;
}
.elite .pager {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--white);
}
header.scrolling {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 4px 8px hsla(0, 0%, 0%, 0.257);
  z-index: 2000;
}
.logo {
  width: 150px;
}
.logo img {
  width: 100%;
  mix-blend-mode: exclusion;
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
header nav ul li {
  list-style: none;
  color: var(--bk);
  font-size: var(--xsmtxt);
  transition: var(--ts);
  padding: 4px 8px;
  border-radius: 30px;
}
header nav ul li:hover {
  color: var(--main-gold);
}
header nav ul li.active {
  color: var(--main-gold);
}
header nav ul li a {
  color: inherit;
  font-size: var(--xsmtxt);
  font-weight: 600;
}
header nav .called {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

header nav .called a {
  display: block;
  width: 150px;
  padding: 8px 15px;
  background: var(--light-gold);
  color: var(--main-gold);
  font-weight: 700;
  font-size: var(--xsmtxt);
  border-radius: 4px;
  text-align: center;
  transition: var(--ts);
}

header nav .called a:hover {
  color: var(--main-gold);
  background: none;
  border: 2px solid var(--main-gold);
}
.mobile-menu {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-gold);
  border-radius: 2px;
  padding: 10px 12px;
  display: none;
  line-height: 0;
}
.mobile-menu span {
  color: var(--main-gold);
  font-size: 30px;
  font-weight: 600;
  font-size: var(--xsmtxt);
}
/* header ends */

.elite .home {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.elite .banner {
  position: relative;
  width: 100%;
  height: 580px;
  display: inline-block;
}
.elite .banner .wrapper,
.elite .banner .wrapper .home-banner,
.elite .banner .wrapper .home-banner img {
  width: 100%;
  height: 100%;
}
.elite .banner .wrapper .home-banner img {
  object-fit: cover;
}
.elite .banner .wrapper .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  background: #000000a7;
  padding: 50px 100px;
  z-index: 10;
}
.elite .banner .wrapper .banner-overlay h1 {
  color: var(--ltwhite);
  font-size: var(--bigtxt);
  font-weight: 700;
}
.elite .banner .wrapper .banner-overlay p {
  color: var(--ltwhite);
  font-weight: 600;
}
.elite .banner .wrapper .banner-overlay a {
  padding: 8px 28px;
  border-radius: 4px;
  background: var(--main-gold);
  color: var(--white);
  font-size: var(--xsmtxt);
  font-weight: 700;
  transition: var(--ts);
}
.elite .banner .wrapper .banner-overlay a:hover {
  transform: scale(1.1);
}

.elite .briefed {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 40px 20px;
  background: var(--main-gold);
}

.elite .briefed .brief-box {
  width: 260px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 15px;
  background: var(--white);
  text-align: center;
  border-radius: 4px;
}
.elite .briefed .brief-box .icon-area {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--light-gold);
}
.elite .briefed .brief-box .icon-area span {
  font-size: var(--midtxt);
  color: var(--main-gold);
  font-weight: 800;
}
.elite .briefed .brief-box strong {
  font-size: var(--xsmtxt);
  font-weight: 800;
  color: var(--main-gold);
}
.elite .briefed .brief-box p {
  color: var(--bk);
}

.elite .we-do {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3em;
  padding: 80px 20px 20px 20px;
  background: var(--white);
}
.elite .we-do .left {
  max-width: 500px;
  width: 100%;
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
}
.elite .we-do .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elite .we-do .right {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 20px 30px;
}

.elite .we-do .right h2 {
  font-size: var(--bigtxt);
  font-weight: 800;
  color: var(--main-gold);
}

.elite .we-do .right p {
  color: var(--bk);
}

.elite .pay-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 80px 20px 20px 20px;
}
.elite .pay-options h2 {
  font-size: var(--bigtxt);
  color: var(--bk);
}

.elite .pay-options h2 span {
  color: var(--main-gold);
}

.elite .pay-options .img-txt {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.elite .pay-options .img-txt img,
.elite .pay-options .img-txt .txt {
  width: 600px;
  height: 400px;
}
.elite .pay-options .img-txt .txt {
  background: var(--light-gold);
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px 0 0 4px;
}

.elite .pay-options .img-txt .txt p {
  color: var(--bk);
}

.elite .pay-options .img-txt img {
  object-fit: cover;
  border-radius: 0 4px 4px 0;
}
.elite .videos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5em;
  padding: 80px 20px 20px 20px;
  background: var(--main-gold);
}
.elite .videos .vdiv {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.elite .videos .vdiv h2 {
  color: var(--white);
  font-size: var(--bigtxt);
}
.elite .videos .vdiv .vid {
  width: 100%;
  height: 210px;
  width: 100%;
  overflow: hidden;
}
.elite .videos .vdiv video {
  width: 100%;
  height: 100%;
}

.elite .why-us {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 80px 20px 20px 20px;
}
.elite .why-us .top,
.elite .achievement .top {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.elite .why-us .top h2 {
  font-size: var(--bigtxt);
  font-weight: 800;
  color: var(--main-gold);
}

.elite .why-us .top p {
  color: var(--bk);
}

.elite .why-us .why-area {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.elite .why-us .why-box {
  max-width: 340px;
  height: 310px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 15px;
  background: var(--light-gold);
  border-radius: 4px;
}
.elite .why-us .why-box .icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--main-gold);
}
.elite .why-us .why-box span {
  font-size: 30px;
  color: var(--white);
}
.elite .why-us .why-box h4 {
  font-size: var(--smtxt);
  color: var(--bk);
  font-weight: 800;
}
.elite .why-us .why-box p {
  color: var(--bk);
}

.elite .how-it-works {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: 80px 20px 20px 20px;
}
.elite .how-it-works .left {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 15px;
}
.elite .how-it-works .left .p,
.elite .testimonies .top .p {
  font-size: var(--xsmtxt);
  font-weight: 700;
  color: var(--main-gold);
}
.elite .how-it-works .left h2 {
  font-size: var(--bigtxt);
  color: var(--bk);
  font-weight: 800;
}
.elite .how-it-works .left p {
  color: var(--bk);
}

.elite .how-it-works .right {
  position: relative;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.elite .how-it-works .right .steps {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  z-index: 1;
}
.elite .how-it-works .right .steps .step {
  max-width: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  background: var(--light-gold);
  padding: 15px;
  border-radius: 8px;
}
.elite .how-it-works .right .steps .step .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-gold);
}
.elite .how-it-works .right .steps .step span {
  font-size: var(--midtxt);
  color: var(--white);
}

.elite .how-it-works .right .steps .step h5 {
  font-size: var(--xsmtxt);
  color: var(--bk);
  font-weight: 800;
}
.elite .how-it-works .right .steps .step p {
  color: var(--bk);
}
.elite .how-it-works .rotator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--main-gold);
  z-index: 0;
  animation: rotate 10s linear infinite;
}

.elite .how-it-works .rotator::before {
  position: absolute;
  content: "";
  top: 22%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--main-gold);
}
.elite .how-it-works .rotator::after {
  position: absolute;
  content: "";
  left: 175px;
  bottom: 20%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--main-gold);
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.elite .achievement {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 80px 20px 20px;
  background: var(--main-gold);
}

.elite .achievement .top h2 {
  font-size: var(--bigtxt);
  color: var(--white);
  font-weight: 800;
}
.elite .achievement .top {
  font-size: var(--xxsmtxt);
  color: var(--white);
}
.elite .achievement .achieve-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
}

.elite .achievement .achieve-area .achieved {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.elite .achievement .achieve-area .achieved .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-gold);
  border-radius: 50%;
}

.elite .achievement .achieve-area .achieved .icon span {
  font-size: var(--xsmtxt);
  color: var(--white);
  font-weight: 700;
}

.elite .achievement .achieve-area .achieved .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.elite .achievement .achieve-area .achieved .info h4 {
  font-size: var(--midtxt);
  font-weight: 800;
  color: var(--bk);
}
.elite .achievement .achieve-area .achieved .info p {
  color: var(--bk);
}

.elite .join-us {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 20px 20px;
  gap: 1rem;
  background: var(--light-gold);
}
.elite .join-us .left {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
.elite .join-us .left h2 {
  font-size: var(--bigtxt);
  font-weight: 800;
  color: var(--main-gold);
}
.elite .join-us .left p {
  color: var(--bk);
}
.elite .join-us .left a {
  padding: 6px 25px;
  background: var(--main-gold);
  color: var(--white);
  border-radius: 4px;
  font-weight: 800;
}
.elite .join-us .right {
  max-width: 500px;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
}
.elite .join-us .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.elite .testimonies {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 80px 20px 20px 20px;
}

.elite .testimonies .top {
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.elite .testimonies .top h2 {
  font-size: var(--bigtxt);
  font-weight: 800;
  color: var(--bk);
}
.elite .testimonies .top p {
  color: var(--bk);
}

.elite .testimonies .swiper-dom {
  width: 100%;
  overflow: hidden;
}

.elite .testimonies .testify-area {
  width: 100%;
}

.elite .testimonies .testify {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 15px;
  background: var(--light-gold);
  border-radius: 10px;
  border: 2px solid var(--main-gold);
}

.elite .testimonies .testify .star-area {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.elite .testimonies .testify .star-area span {
  font-size: var(--xsmtxt);
  font-weight: 800;
  color: var(--main-gold);
}

.elite .testimonies .testify p {
  color: var(--bk);
}
.elite .testimonies .testify .client {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.elite .testimonies .testify .client h4 {
  font-size: var(--xsmtxt);
  font-weight: 700;
}

.elite .testimonies .testify .client span {
  font-size: var(--xxsmtxt);
  font-weight: 400;
  color: var(--ltbk);
}

.elite .crypto-chart {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 80px 20px 20px 20px;
}

.elite .crypto-chart .top {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  text-align: center;
}
.elite .crypto-chart .top h2 {
  font-size: var(--bigtxt);
  color: var(--main-gold);
  font-weight: 800;
}

.elite .crypto-chart .top p {
  color: var(--bk);
}

.elite .crypto-chart .right {
  max-width: 900px;
  width: 100%;
  height: 500px;
}

.elite .recent-deposit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 80px 20px 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/deposit.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.elite .recent-deposit.withdraw {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/withdraw.jpg");
}

.elite .recent-deposit .top {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.elite .recent-deposit .right {
  width: 600px;
  overflow-x: scroll;
  scrollbar-width: 0;
}
.elite .recent-deposit .right::-webkit-scrollbar {
  display: none;
  width: 0;
}
.elite .recent-deposit .top h2 {
  color: var(--white);
  font-size: var(--bigtxt);
  font-weight: 800;
  text-align: left;
}

.elite .recent-deposit .top h2 span {
  color: var(--main-gold);
}

.elite .recent-deposit .top p {
  color: var(--ltwhite);
  text-align: left;
}
.elite .recent-deposit table thead tr th {
  background: transparent;
  border-bottom: 1px solid var(--vlwhite);
}
.elite .recent-deposit table tbody tr {
  background: transparent;
  border-left: none;
  border-right: none;
}
.elite .recent-deposit table tbody tr td {
  background: transparent;
  color: var(--vlwhite);
  border-bottom: 1px solid var(--vlwhite);
}
.elite .recent-deposit table tbody tr td.c-name {
  min-width: 180px;
}
.elite .recent-deposit table tbody tr td.trx-id {
  min-width: 200px;
}

.elite .about {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.elite .page-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 130px 20px;
}
.elite .about .page-img {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.elite .page-img h1 {
  color: var(--white);
  font-weight: 700;
  font-size: var(--bigtxt);
  text-align: center;
}
.elite .page-img .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  gap: 0.5em;
}
.elite .page-img .nav a {
  color: var(--main-gold);
  font-size: var(--xsmtxt);
  transition: var(--ts);
}
.elite .page-img p {
  color: var(--white);
  text-align: center;
}

.elite .page-img .nav a:hover {
  color: var(--light-gold);
}
.elite .about .about-us .left {
  height: 500px;
}
.elite .about .about-us .left img {
  object-position: top;
}
.elite .about .about-us .right {
  max-width: 700px;
  padding: 0 10px;
}

.elite .plan .page-img {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/plan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.elite .investment-plan {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 50px 0 20px;
}
.elite .investment-plan .top {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 20px;
}
.elite .investment-plan .top .p {
  font-size: var(--smtxt);
  font-weight: 700;
  color: var(--main-gold);
  text-transform: uppercase;
}

.elite .investment-plan .top h2 {
  font-size: 35px;
  font-weight: 800;
  color: var(--bk);
  text-align: center;
}
.elite .investment-plan .plan-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5em;
  padding: 20px;
}
.elite .investment-plan .plan-area .plan-box {
  max-width: 380px;
  width: 100%;
  min-height: 400px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.elite .investment-plan .plan-area .plan-box .up,
.elite .investment-plan .plan-area .plan-box .down {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 20px 10px;
}
.elite .investment-plan .plan-area .plan-box .up {
  padding: 20px 0;
}
.elite .investment-plan .plan-area .plan-box .down {
  gap: 0;
}
.elite .investment-plan .plan-area .plan-box .up {
  background: var(--main-gold);
  color: var(--white);
}
.elite .investment-plan .plan-area .plan-box .up h4 {
  font-size: var(--midtxt);
  font-family: "Exo 2", serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 10px;
}
.elite .investment-plan .plan-area .plan-box .up strong {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 28px;
  font-weight: 800;
  background: var(--light-gold);
  padding: 10px;
  color: var(--bk);
}

.elite .investment-plan .plan-area .plan-box .up strong sub {
  font-size: var(--xsmtxt);
  font-weight: 600;
}

.elite .investment-plan .plan-area .plan-box .down .features {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--ltbk);
}
.elite .investment-plan .plan-area .plan-box .down .features:last-child {
  border-bottom: none;
}
.elite .investment-plan .plan-area .plan-box .down .features p {
  font-size: var(--xsmtxt);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.elite .investment-plan .plan-area .plan-box .down .features span,
.elite .investment-plan .plan-area .plan-box .down .features i {
  font-size: var(--xxsmtxt);
  color: var(--white);
}

.elite .investment-plan .plan-area .plan-box .down .features .left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
}

.elite .investment-plan .plan-area .plan-box .down .features .left .icon {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--main-gold);
}

.elite .investment-plan .plan-area .plan-box .down a {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--main-gold);
  color: var(--white);
  font-size: var(--smtxt);
  margin-top: 10px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  transition: var(--ts);
}

.elite .investment-plan .plan-area .plan-box .down a:hover {
  background: transparent;
  color: var(--main-gold);
  border: 1px solid var(--main-gold);
}

.elite .faq .page-img {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/faq.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.elite .faq .faq-div {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  padding: 20px 20px 20px;
  background: var(--vlwhite);
}

.elite .faq .faq-div .faq-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.elite .faq .faq-div .faq-area .faq-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elite .faq .faq-div .faq-area .faq-box .toggler {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 10px;
  cursor: pointer;
  transition: var(--ts);
}
.elite .faq .faq-div .faq-area .faq-box .toggler:hover,
.elite .faq .faq-div .faq-area .faq-box .toggler.active {
  background: var(--light-gold);
}
.elite .faq .faq-div .faq-area .faq-box .toggler .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-gold);
  border-radius: 50%;
}
.elite .faq .faq-div .faq-area .faq-box .toggler .icon i {
  font-size: var(--midtxt);
  color: var(--white);
  transition: var(--ts);
}
.elite .faq .faq-div .faq-area .faq-box .toggler .icon i.active {
  transform: rotate(180deg);
}
.elite .faq .faq-div .faq-area .faq-box .toggler h4 {
  flex: 1;
  font-size: var(--smtxt);
  color: var(--bk);
  font-weight: 800;
}

.elite .faq .faq-div .faq-area .faq-box .response {
  width: 100%;
  max-height: 0;
  transition: var(--ts);
  overflow: hidden;
}
.elite .faq .faq-div .faq-area .faq-box .response p {
  color: var(--bk);
}
.elite .faq .faq-div .faq-area .faq-box .response.active {
  max-height: 1000px;
  padding: 10px;
  margin-top: 20px;
}

.elite .contact .page-img {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/map.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.elite .contact .contact-area {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1rem;
  padding: 50px 20px;
}

.elite .contact .contact-area .left {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.elite .contact .contact-area .left .p {
  color: var(--main-gold);
  font-size: var(--smtxt);
  font-weight: 700;
}
.elite .contact .contact-area h2 {
  font-size: var(--bigtxt);
  text-align: left;
  font-weight: 800;
}

.elite .contact .contact-area .left .contact-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.elite .contact .contact-area .left .contact-info .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--light-gold);
  border-radius: 50%;
}
.elite .contact .contact-area .left .contact-info .icon i {
  color: var(--bk);
}
.elite .contact .contact-area .left .contact-info .contact-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4em;
}

.elite .contact .contact-area .left .contact-info .contact-txt h5 {
  font-size: var(--smtxt);
  font-weight: 700;
}
.elite .contact .contact-area .left .contact-info .contact-txt h5,
.elite .contact .contact-area .left .contact-info .contact-txt p,
.elite .contact .contact-area .left .contact-info .contact-txt a {
  color: var(--bk);
  transition: var(--ts);
}
.elite .contact .contact-area .left .contact-info .contact-txt a:hover {
  color: var(--main-gold);
}
.elite .contact .contact-area .right {
  max-width: 500px;
  width: 100%;
}
.elite .contact .contact-area .right form {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--d4);
  border-radius: 4px;
  gap: 1rem;
  /* webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1); */
}
.elite .contact .contact-area .right form h5 {
  width: 100%;
  text-align: left;
  color: var(--bk);
  font-family: "Exo 2", sans-serif;
  font-size: var(--midtxt);
}
.elite .contact .contact-area .right form .input-area {
  width: 100%;
}
.elite .contact .contact-area .right form .input-area label,
.elite .contact .contact-area .right form .input-area input,
.elite .contact .contact-area .right form .input-area textarea {
  width: 100%;
  background: #ededed;
  border-radius: 4px;
  font-size: var(--xsmtxt);
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  border: 1px solid var(--d4);
  outline: none;
  transition: var(--ts);
}
.elite .contact .contact-area .right form .input-area label {
  border: none;
  background: none;
}
.elite .contact .contact-area .right form .input-area input {
  height: 50px;
  padding: 0 10px;
}
.elite .contact .contact-area .right form .input-area textarea {
  height: 200px;
  resize: none;
  padding: 10px;
}
.elite .contact .contact-area .right form .input-area input:focus,
.elite .contact .contact-area .right form .input-area textarea:focus {
  border: 1px solid var(--main-gold);
}
.elite .contact .contact-area .right form .double {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.elite .contact .contact-area .right form button {
  padding: 10px 15px;
  background: var(--light-gold);
  color: var(--bk);
  font-size: var(--xsmtxt);
  font-weight: 600;
  border-radius: 4px;
  border: none;
  transition: var(--ts);
  cursor: pointer;
}
.elite .contact .contact-area .right form button:hover {
  background: var(--main-gold);
  color: var(--white);
}
.map-area {
  width: 100%;
  padding: 30px 20px;
}
.map-area iframe {
  width: 100%;
  border-radius: 10px;
  border: none;
}

/* REGISTER / LOGIN */

.elite .account {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/eliteabout.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  padding: 50px 20px;
}

.elite .account .left {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.elite .account .left h1 {
  color: var(--white);
  font-weight: 700;
  font-size: var(--bigtxt);
}

.elite .account p {
  color: var(--white);
}
.elite .account p a {
  color: var(--main-gold);
}
.elite .account .right {
  max-width: 580px;
  width: 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
}
.elite .account .right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 4px;
}
.elite .account .right form .form-group,
.elite .account .right form .form-group label,
.elite .account .right form .form-group label input,
.elite .account .right form .form-group label select {
  width: 100%;
  font-weight: 600;
  position: relative;
}
.elite .account .right form .form-group.hidden {
  display: none;
}
.elite .account .right form .form-group .show-pass {
  font-size: var(--xsmtxt);
  color: var(--main-gold);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.elite .account .right form .form-group label input,
.elite .account .right form .form-group label select {
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--d4);
  background: var(--white);
  transition: var(--ts);
  outline: none;
  border-radius: 4px;
}
.elite .account .right form .form-group label input:hover,
.elite .account .right form .form-group label select:hover,
.elite .account .right form .form-group label input:focus,
.elite .account .right form .form-group label select:focus {
  border: 2px solid var(--main-gold);
}
.elite .account .right form .terms {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4em;
}
.elite .account .right form .terms input {
  accent-color: var(--main-gold);
  color: var(--white);
}
.elite .account .right form .terms p {
  color: var(--bk);
}
.elite .account .right form button {
  width: 100%;
  padding: 15px 10px;
  border: none;
  background: var(--main-gold);
  border-radius: 4px;
  color: var(--white);
  font-size: var(--smtxt);
  font-weight: 500;
  cursor: pointer;
}

/* Term/Policy */

.container {
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.container h1 {
  color: var(--main-gold);
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
}

.container h2 {
  color: #333;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.container p {
  line-height: 1.6;
  margin: 10px 0;
}

.container ul {
  list-style: disc;
  margin: 10px 0 10px 20px;
  padding: 0;
}

.container .highlight {
  color: var(--main-gold);
  font-weight: bold;
}

/* Client/DASBOARD */
.dashboard {
  background: var(--vlwhite);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  padding: 80px 50px 20px;
}
.dashboard .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 0 10px;
}
.dashboard .top .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}
.dashboard .top .left h2 {
  font-size: var(--bigtxt);
  color: var(--main-gold);
  font-weight: 600;
}
.dashboard .top .left p {
  color: var(--bk);
  font-weight: 700;
}
.dashboard .top .right {
  background: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 10px;
  border: 1px solid var(--vlwhite);
  border-radius: 4px;
}
.dashboard .top .right button {
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border: none;
  border-radius: 4px;
  background: var(--main-gold);
  color: var(--light-gold);
  font-weight: 600;
  font-size: var(--xsmtxt);
  transition: var(--ts);
}
.dashboard .top .right button:hover {
  background: var(--light-gold);
  color: var(--main-gold);
}
.dashboard .top .right a {
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border: none;
  border-radius: 4px;
  background: var(--light-gold);
  color: var(--main-gold);
  font-weight: 600;
  font-size: var(--xsmtxt);
  transition: var(--ts);
}
.dashboard .top .right a:hover {
  background: var(--main-gold);
  color: var(--light-gold);
}
.dashboard .top .right a span,
.dashboard .top .right button span {
  font-size: var(--xsmtxt);
}
.page-img.d-b {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/building.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dashboard .dash-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dash-area .attr {
  width: 100%;
  padding: 0 0 10px;
}
.dash-area .attr p {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  background: var(--white);
  color: var(--bk);
  padding: 20px 25px;
  border-radius: 4px;
  border: 1px solid var(--d4);
  font-weight: 700;
}
.dash-area .attr p a {
  color: var(--ltbk);
  transition: var(--ts);
}
.dash-area .attr p a:hover {
  color: var(--main-gold);
}
.dash-area .attr p span {
  color: var(--main-gold);
}
.dashboard .dash-area .dash-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0 0 10px;
}

.dashboard .dash-area .dash-div .card {
  max-width: 380px;
  width: 100%;
  display: flex;
  padding: 20px 15px;
  background: linear-gradient(var(--main-gold),var(--main-gold)),url("../image/card-bg.png");
  background-position: center;
  background-size: cover;
  background-blend-mode: color-dodge;
  border-radius: 4px;
  gap: 0.2rem;
  border: 1px solid var(--d4);
  border-bottom: 4px solid var(--bg);
  /* font-family: "Exo 2", sans-serif; */
}
.dashboard .dash-area .dash-div .card.center {
  flex-direction: column;
  align-items: center;
}
.dashboard .dash-area .dash-div .card.left {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.dashboard .dash-area .dash-div .card.left .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.dashboard .dash-area .dash-div .card.left .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gold);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard .dash-area .dash-div .card.left .icon i,
.dashboard .dash-area .dash-div .card.left .icon span {
  font-size: var(--smtxt);
  color: var(--main-gold);
}
.dashboard .dash-area .dash-div .card p {
  color: var(--light-gold);
  font-weight: 700;
  font-size: var(--xsmtxt);
}

.dashboard .dash-area .dash-div .card h4 {
  color: var(--light-gold);
  font-weight: 600;
  font-size: 35px;
}
.dashboard .dash-area .activity {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 10px;
}
.dashboard .dash-area .activity .left,
.dashboard .dash-area .activity .right {
  flex: 1;
  /* max-width: 570px;
  width: 100%; */
  height: 220px;
  display: flex;
  border: 2px solid var(--ltwhite);
  padding: 20px;
  background: linear-gradient(var(--light-gold),var(--light-gold)),url("../image/card-bg.png");
  background-position: center;
  background-size: cover;
  background-blend-mode: color-dodge;
}
.dashboard .dash-area .activity .left {
  flex-direction: column;
  gap: 1em;
  align-items: flex-start;
  border-radius: 4px 0 0 4px;
}
.dashboard .dash-area .activity .left .active {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.dashboard .dash-area .activity .left .active h6 {
  font-size: var(--xsmtxt);
  color: var(--light-gold);
  font-weight: 700;
}
.dashboard .dash-area .activity .left .act {
  width: 160px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  background: var(--main-gold);
  padding: 8px;
  border-radius: 4px;
}
.dashboard .dash-area .activity .left .act p {
  font-weight: 600;
  color: var(--light-gold);
  font-family: "Exo 2", sans-serif;
}
.dashboard .dash-area .activity h5 {
  font-size: var(--midtxt);
  font-weight: 700;
  color: var(--main-gold);
}
.dashboard .dash-area .activity .right {
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0 4px 4px 0;
  gap: 1rem;
  background: var(--white);
}
.dashboard .dash-area .activity .right h5 {
  font-size: var(--midtxt);
}
.dashboard .dash-area .activity .right .ref-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard .dash-area .activity .right .ref-txt a {
  padding: 8px 15px;
  border-radius: 4px;
  background: var(--main-gold);
  color: var(--white);
  font-size: var(--xsmtxt);
  font-weight: 600;
  text-align: center;
}
.dashboard .dash-area .activity .right .ref-input,
.dashboard .dash-area .activity .right .ref-input label,
.dashboard .dash-area .activity .right .ref-input label input {
  width: 100%;
  position: relative;
}
.dashboard .dash-area .activity .right .ref-input .link {
  position: absolute;
  top: 10px;
  left: 10px;
  /* transform: translateY(-50%); */
  font-size: var(--xsmtxt);
  font-weight: 500;
  transform: rotate(-50deg);
  color: var(--main-gold);
  z-index: 1;
}
.dashboard .dash-area .activity .right .ref-input button {
  position: absolute;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: var(--main-gold);
  font-weight: 600;
  font-size: var(--xxsmtxt);
  border: none;
  gap: 0.2em;
  cursor: pointer;
  z-index: 1;
}
.dashboard .dash-area .activity .right .ref-input button span {
  font-size: var(--xxsmtxt);
}
.dashboard .dash-area .activity .right .ref-input label input {
  height: 35px;
  background: var(--white);
  color: var(--ltbk);
  padding: 0 80px 0 40px;
  border: 1px solid var(--d4);
  outline: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: var(--xxsmtxt);
}
.dashboard .dash-area .activity .right .ref-txt .ref-i {
  max-width: 70%;
}

.elite .payment {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5em;
  padding: 50px 40px;
  background: var(--bg);
  /* background-image: url("../image/elite-favicon-180x180.png");
  background-size: 50px;
  background-repeat: repeat;
  background-position: center; */
}

.import-wallet {
  position: relative;
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: center;
  background: var(--light-gold);
  padding: 40px 10px;
  transition: var(--ts);
  visibility: hidden;
  opacity: 0;
}
.import-wallet.active {
  visibility: visible;
  opacity: 1;
}
.import-wallet form {
  max-width: 800px;
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: 6px;
  padding: 30px 25px;
}

.import-wallet form .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.import-wallet form .top h5 {
  font-size: var(--midtxt);
  font-weight: 700;
  color: var(--main-gold);
}
.import-wallet form .top span {
  font-size: var(--smtxt);
  font-weight: 700;
  color: var(--ltbk);
  cursor: pointer;
}
.import-wallet form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}
.import-wallet form .form-group label p {
  font-weight: 800;
  color: var(--ltbk);
}
.import-wallet form .form-group input,
.import-wallet form .form-group select {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--d4);
  padding: 10px;
  font-weight: 500;
  font-size: var(--xsmtxt);
}
.import-wallet form .form-group textarea {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--d4);
  padding: 10px;
  font-weight: 500;
  font-size: var(--xsmtxt);
}
.import-wallet form .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.import-wallet form button#import {
  padding: 8px 15px;
  border: none;
  background: var(--main-gold);
  color: var(--light-gold);
  border-radius: 4px;
  font-size: var(--xsmtxt);
  font-weight: 600;
}
.import-wallet form button#cancel {
  border: none;
  background: none;
  color: var(--main-gold);
  font-size: var(--xsmtxt);
  font-weight: 600;
}
.import-wallet form .form-group input,
.import-wallet form .form-group select,
.import-wallet form .form-group textarea {
  outline: none;
}

.import-wallet form .form-group input:focus,
.import-wallet form .form-group select:focus,
.import-wallet form .form-group textarea:focus {
  border: 2px solid var(--vlight-gold);
}

.elite .payment {
  background: var(--light-gold);
}

.elite .payment a {
  font-size: var(--xsmtxt);
  color: var(--ltbk);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.elite .payment a span {
  font-size: var(--xsmtxt);
}
.elite .payment h1 {
  font-size: var(--bigtxt);
  color: var(--main-gold);
  font-weight: 600;
}
.elite .payment form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 10px;
  /* background: var(--white); */
  border-radius: 4px;
}
.elite .payment form .left {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.elite .payment form .left .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.elite .payment form .left label {
  color: var(--bk);
  font-weight: 600;
  font-size: var(--smtxt);
}

.elite .payment form .left .form-group input,
.elite .payment form .left .form-group select {
  width: 100%;
  height: 55px;
  padding: 0 10px;
  font-weight: 700;
  font-size: var(--smtxt);
  color: var(--ltbk);
  background: #f5f6fa;
  border-radius: 4px;
  border: 1px solid var(--d4);
  outline: none;
}
.elite .payment form .left #con {
  width: 20px;
  height: 20px;
  accent-color: var(--main-gold);
}
.elite .payment form .left .terms {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.elite .payment form .left .terms label {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
}
.elite .payment form .left .terms label a {
  color: var(--main-gold);
}
.elite .payment form .right {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  background: var(--ltwhite);
  border: 1px solid var(--d4);
  padding-bottom: 20px;
}
.prc {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}
.prc b {
  color: var(--bk);
  font-weight: 600;
}
.prc p {
  color: var(--ltbk);
}
.elite .payment form .right button {
  padding: 10px 15px;
  margin-top: 20px;
  background: var(--main-gold);
  color: var(--light-gold);
  border: none;
  outline: none;
  font-size: var(--xsmtxt);
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}
.conf-area {
  max-width: 600px;
  width: 100%;
  padding: 15px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border-radius: 4px;
}
.conf-area h4 {
  font-size: var(--midtxt);
  color: var(--main-gold);
}
.conf-area small {
  color: var(--ltbk);
}
.conf-area button {
  padding: 10px 16px;
  border: none;
  background: var(--main-gold);
  font-size: var(--xsmtxt);
  font-weight: 700;
  border-radius: 4px;
  color: var(--light-gold);
  cursor: pointer;
}
.conf-area a {
  color: var(--main-gold);
}
.elite .payment .pay-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.elite .payment .pay-area .form-area {
  max-width: 600px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--d4);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.elite .payment .pay-area .form-area .qrcode-area {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--d4);
}

.elite .payment .pay-area .form-area .qrcode-area .qrcode {
  width: 100px;
  height: 100px;
  padding: 10px;
  background: var(--light-gold);
  overflow: hidden;
}
.elite .payment .pay-area .form-area .wallet-area {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid var(--d4);
}
.elite .payment .pay-area .form-area input {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background: var(--white);
  border: 2px solid var(--d4);
  padding: 10px;
  background: #f5f6fa;
  color: var(--bk);
  font-size: var(--xsmtxt);
  font-weight: 600;
  outline: none;
}
.elite .payment .pay-area .form-area .wallet-area button,
.elite .payment .pay-area .form-area form button {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  font-size: var(--xsmtxt);
  font-weight: 600;
  background: var(--main-gold);
  color: var(--white);
  border-radius: 4px;
}
.elite .payment .pay-area .form-area .wallet-area button span {
  font-size: var(--xsmtxt);
}
.elite .payment .pay-area .form-area .info {
  width: 100%;
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--d4);
}
.elite .payment .pay-area .form-area form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  gap: 1rem;
}
.elite .payment .pay-area .form-area form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
  padding: 0 15px;
}
.elite .payment .pay-area .form-area form .form-group input,
.elite .payment .pay-area .form-area form .form-group select {
  width: 100%;
  border: 2px solid var(--d4);
  height: 50px;
  padding: 10px;
  background: #f5f6fa;
  color: var(--bk);
  font-size: var(--xsmtxt);
  font-weight: 600;
  outline: none;
}
.elite .payment .pay-area .form-area form .form-group textarea {
  width: 100%;
  border: 2px solid var(--d4);
  height: 150px;
  padding: 10px;
  background: #f5f6fa;
  color: var(--bk);
  font-size: var(--xsmtxt);
  font-weight: 600;
  outline: none;
}
.elite .payment .pay-area .form-area form .btn-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 0 15px;
}
.elite .payment .pay-area .form-area form .btn-area .prc {
  border-bottom: 1px solid var(--d4);
  border-top: 1px solid var(--d4);
}

.elite .profile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 80px 20px 20px;
  background: var(--bg);
}
.elite .profile .left {
  max-width: 600px;
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.elite .profile form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.elite .profile form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3em;
}
.elite .profile form .form-group input {
  width: 100%;
  height: 45px;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid var(--d4);
  outline: var(--main-gold);
  background: var(--white);
  font-weight: 700;
  font-size: var(--xsmtxt);
  color: var(--bk);
}
.elite .profile form button,
.elite .profile .right .kyc-status a {
  width: 100%;
  padding: 10px;
  font-weight: 600;
  background: var(--main-gold);
  font-size: var(--xsmtxt);
  border: none;
  border-radius: 4px;
  color: var(--white);
  text-align: center;
}
.elite .profile .right {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 15px;
}
.elite .profile .right .kyc-status {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--d4);
}
.elite .profile .right .kyc-status .kyc-s {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.elite .profile .right .kyc-status .kyc-s .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--main-gold);
}
.elite .profile .right .kyc-status .kyc-s .icon span {
  color: var(--white);
  font-size: var(--xsmtxt);
}
.elite .profile .right .kyc-status .kyc-s p {
  flex: 1;
}
.elite .profile .right .kyc-status h4 {
  font-size: var(--smtxt);
  color: var(--main-gold);
}

.elite .kyc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 80px 20px 20px;
  background: var(--bg);
}
.elite .kyc .top {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.elite .kyc h1,
.elite .kyc h2 {
  font-size: var(--bigtxt);
  font-weight: 700;
  color: var(--main-gold);
}
.elite .kyc form {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--d4);
  border-radius: 4px;
  padding-bottom: 20px;
}
.elite .kyc form h2 {
  width: 100%;
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--d4);
}
.elite .kyc form .dt {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  border-bottom: 1px solid var(--d4);
}
.elite .kyc form .dt span {
  font-size: var(--bigtxt);
  color: var(--main-gold);
  font-weight: 700;
}
.elite .kyc form .dt .dt-i {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
}
.elite .kyc form .dt .dt-i strong {
  font-size: var(--smtxt);
  font-weight: 600;
}
.elite .kyc form .div1 {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--d4);
}
.elite .kyc form .div1 .form-group {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.2em;
}
.elite .kyc form .div1 .form-group input {
  width: 100%;
  height: 50px;
  padding: 10px;
  border-radius: 4px;
  background: var(--white);
  color: var(--bk);
  font-weight: 600;
  font-size: var(--xsmtxt);
  border: 1px solid var(--main-gold);
  outline: none;
}
.elite .kyc form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
  padding: 15px;
}
.elite .kyc form .form-group input,
.elite .kyc form .form-group select {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: 1px solid var(--main-gold);
  font-size: var(--xsmtxt);
  font-weight: 600;
  border-radius: 4px;
  outline: none;
}
.elite .kyc form .info {
  width: 100%;
  padding: 15px;
  color: var(--main-gold);
}

.elite .kyc form .info span {
  font-size: var(--xsmtxt);
}
.elite .kyc form button {
  padding: 8px 16px;
  font-size: var(--xsmtxt);
  font-weight: 600;
  color: var(--white);
  background: var(--main-gold);
  border-radius: 4px;
  border: none;
}
.elite .kyc .terms {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 15px;
}
.elite .kyc .terms input {
  width: 20px;
  height: 20px;
  accent-color: var(--main-gold);
}
.elite .kyc .terms a {
  color: var(--main-gold);
}
.elite .history {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 80px 20px 20px;
}
.elite .history .top {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.elite .history .top h1 {
  font-size: var(--bigtxt);
  font-weight: 700;
  color: var(--main-gold);
}
.elite .history .top a{
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--main-gold);
  color: var(--light-gold);
  font-weight: 700;
}
.elite .history .top .filter {
  width: 200px;
  height: 40px;
}
.elite .history .top .filter label {
  width: 100%;
  height: 100%;
}
.elite .history .top .filter label select {
  width: 100%;
  height: 100%;
  border: 2px solid var(--d4);
  background: var(--white);
  color: var(--bk);
  padding: 10px;
}
.elite .history .table {
  max-width: 1000px;
  width: 100%;
  max-height: 600px;
  overflow: scroll;
}
.elite .history .table table tbody {
  border-bottom: 1px solid var(--d4);
}
.elite .history .table table tbody tr .remark {
  min-width: 250px;
}
.elite .history .table table tbody tr .date,
.elite .history .table table tbody tr .trx-d {
  min-width: 150px;
}
/* Base */
.elite .actions {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 20px;
  background: var(--light-gold);
}
.elite .actions .action-box {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  background: var(--white);
  padding: 15px;
}
.elite .actions .action-box h4 {
  font-size: var(--midtxt);
  color: var(--main-gold);
  font-weight: 700;
  width: 100%;
  border-bottom: 1px solid var(--d4);
}
.elite .actions .action-box .mid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--d4);
}
.elite .actions .action-box .mid.center {
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: unset;
}
.elite .actions .action-box .mid b {
  font-size: var(--smtxt);
  font-weight: 600;
  color: var(--ltbk);
}
.elite .actions .action-box .mid a {
  width: 100%;
}
.elite .actions .action-box .mid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}
.elite .actions .action-box .mid p {
  font-size: var(--smtxt);
  font-weight: 600;
  color: var(--bk);
}
.elite .actions .action-box .mid button {
  padding: 10px 15px;
  border-radius: 4px;
  border: none;
  background: var(--main-gold);
  font-size: var(--xsmtxt);
  font-weight: 600;
  color: var(--light-gold);
}

.elite .t_method {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 80px 20px 20px;
}
.elite .t_method .top {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.elite .t_method .top h1 {
  color: var(--main-gold);
  font-weight: 700;
  font-size: var(--bigtxt);
}
.elite .t_method .tm-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.elite .t_method .tm-area .tm-box {
  max-width: 400px;
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--light-gold);
  border-radius: 6px;
}
.elite .t_method .tm-area .tm-box b {
  word-wrap: break-word;
  word-break: break-word;
  color: var(--bk);
  font-size: var(--xsmtxt);
}
.elite .t_method a {
  padding: 10px;
  background: var(--main-gold);
  color: var(--light-gold);
  border-radius: 6px;
}

.elite .clients {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 80px 20px 20px;
  background: var(--light-gold);
}
.elite .clients .top {
  max-width: 800px;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.elite .clients .top h1 {
  font-size: var(--bigtxt);
  color: var(--main-gold);
}
.elite .clients .clients-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.elite .clients .left,
.elite .clients .right {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.elite .clients .left {
  background: var(--white);
}
.elite .clients .left .prf {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px;
  border-bottom: 1px solid var(--ltbk);
}
.elite .clients .left .prf a {
  max-width: 150px;
  height: 150px;
  overflow: hidden;
}
.elite .clients .left .prf a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.elite .clients .left .actss {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 15px;
}

.elite .clients .left .actss button {
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--main-gold);
  color: var(--light-gold);
  border: none;
  font-weight: 700;
}
.elite .clients .right form {
  width: 100%;
  padding: 10px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.elite .clients .right form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.elite .clients .right form .form-group input,
.elite .clients .right form .form-group select {
  width: 100%;
  height: 40px;
  padding: 10px;
}
.elite .clients .right form .form-group textarea {
  width: 100%;
  height: 140px;
  padding: 10px;
}
.elite .clients .right form button {
  padding: 10px 16px;
  border-radius: 4px;
  border: none;
  background: var(--main-gold);
  color: var(--light-gold);
  font-weight: 700;
}
/* FOOTER */

.elite footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
}
.elite footer .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2.5rem;
  padding: 50px 40px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/footerbg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.elite footer .top .foot {
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.elite footer .top .foot.txt-area {
  min-width: 300px;
}
.elite footer .top .foot .means {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.elite footer .top .foot .means .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--main-gold);
  display: flex;
  justify-content: center;
  align-items: center;
}
.elite footer .top .foot .means .icon span {
  color: var(--white);
  font-size: var(--smtxt);
}
.elite footer .top .foot h4 {
  color: var(--main-gold);
  font-size: var(--smtxt);
  font-weight: 600;
}

.elite footer p {
  color: var(--white);
}
.elite footer a.links {
  font-size: var(--xsmtxt);
  color: var(--white);
  transition: var(--ts);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
}
.elite footer a.links:hover,
.elite footer .bottom a.links:hover {
  color: var(--main-gold);
}
.elite footer a.links span {
  font-size: var(--xxsmtxt);
}

.elite footer .bottom {
  width: 100%;
  padding: 10px 20px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bg);
}
.elite footer .bottom .left,
.elite footer .bottom .right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.elite footer .bottom a.links {
  display: unset;
}
.elite footer .bottom a.links,
.elite footer .bottom p {
  color: var(--bk);
}

@media screen and (max-width: 960px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
  }
  header nav {
    width: 100%;
    max-height: 0;
    transition: var(--ts);
    overflow: hidden;
  }
  header nav.active {
    margin-top: 40px;
    max-height: 550px;
  }
  header nav,
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav ul {
    width: 100%;
  }
  header nav ul li,
  header nav ul li a {
    width: 100%;
    text-align: left;
  }
  header nav ul li a {
    display: block;
    width: 100%;
  }
  header nav ul li {
    border-radius: 0;
    border-bottom: 1px solid var(--vlwhite);
  }
  header nav ul li:last-child {
    border-bottom: none;
  }
  header nav .called {
    max-height: 200px;
    height: 50px;
  }
  .elite .banner {
    height: 480px;
  }
  .elite .banner .wrapper .home-banner img {
    height: 480px;
  }
  .elite .banner .wrapper .banner-overlay {
    padding: 20px;
  }
  .dashboard .dash-area .activity .left .act {
    width: 100%;
  }
  .mobile-menu {
    display: flex;
  }
  .elite .how-it-works {
    flex-direction: column;
    padding: 50px 20px 20px 20px;
  }
  .elite .how-it-works .left,
  .elite .how-it-works .right {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .elite .how-it-works .rotator::before {
    left: -1px;
  }
  .elite footer .top {
    flex-wrap: wrap;
    padding: 20px 60px 20px;
  }
  /* .elite footer .top .foot {
    max-width: 350px;
  } */
  .elite .recent-deposit {
    flex-direction: column;
  }
  .elite .recent-deposit .top {
    max-width: 100%;
    align-items: center;
  }
  .elite .recent-deposit .top p,
  .elite .recent-deposit .top h2 {
    text-align: center;
  }
  .elite .recent-deposit .right {
    width: 100%;
  }
  .elite .contact .contact-area {
    flex-direction: column;
    padding-left: 90px;
    padding-right: 90px;
    gap: 2.5rem;
  }
  .elite .contact .contact-area .left,
  .elite .contact .contact-area .right {
    max-width: 800px;
  }
  .elite .account {
    flex-direction: column;
  }
  .elite .account .right {
    max-width: 600px;
  }
  .dashboard .dash-area .dash-div .card {
    max-width: 100%;
  }
  .dashboard .dash-area .activity .left,
  .dashboard .dash-area .activity {
    flex-direction: column;
  }
  .dashboard .dash-area .activity .left,
  .dashboard .dash-area .activity .right,
  .dashboard .dash-area .activity .left,
  .dashboard .dash-area .activity .left {
    max-width: 100%;
    height: max-content;
  }
  .dashboard .dash-area .activity .left,
  .dashboard .dash-area .activity .right {
    border-radius: 0 0 4px 4px;
  }
  .dashboard .dash-area .activity .left,
  .dashboard .dash-area .activity .left {
    border-radius: 4px 4px 0 0;
  }
  .dashboard .dash-area .activity .right .ref-txt {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .dashboard .dash-area .activity .right .ref-txt .ref-i {
    max-width: 100%;
  }
  .elite .payment {
    align-items: center;
    text-align: center;
  }
  .elite .payment form {
    flex-direction: column;
    align-items: center;
  }
  .elite .payment form .right {
    max-width: 600px;
  }
  .dashboard .dash-area .dash-div {
    flex-wrap: wrap;
  }
  .dashboard .dash-area .activity .left,
  .dashboard .dash-area .activity .right {
    flex: none;
    width: 100%;
  }
  .dashboard {
    padding: 80px 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .elite .home .briefed .brief-box {
    width: 100%;
  }
  .elite .we-do {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .elite .videos {
    flex-direction: column;
    align-items: center;
  }
  .elite .videos .vdiv .vid {
    height: auto;
  }
  .elite .we-do .right,
  .elite .we-do .left {
    max-width: 100%;
  }
  .elite .pay-options .img-txt {
    flex-direction: column;
  }
  .elite .pay-options .img-txt .txt,
  .elite .pay-options .img-txt img {
    width: 100%;
    height: 350px;
  }
  .elite .pay-options .img-txt img {
    border-radius: 0 0 4px 4px;
  }
  .elite .pay-options .img-txt .txt {
    border-radius: 4px 4px 0 0;
  }
  .elite .why-us .why-box {
    max-width: 100%;
  }
  .elite .join-us {
    flex-direction: column;
  }
  .elite .join-us .left,
  .elite .join-us .right {
    max-width: 100%;
    text-align: center;
  }
  .elite .join-us .left {
    align-items: center;
  }
  .elite .investment-plan .plan-area .plan-box {
    max-width: 480px;
  }
  /* table thead {
    display: none;
  }
  table tbody tr {
    border-bottom: 2px solid var(--vlwhite);
  }
  table tbody tr:last-child {
    border-bottom: none;
  }
  table tbody tr td {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    border-bottom: 1px solid var(--vlwhite);
  }
  table tbody tr td:last-child {
    border-bottom: none;
  }
  table tbody tr td h4 {
    display: block;
  } */
  .elite .profile {
    flex-direction: column;
    align-items: center;
    padding: 80px 0 20px;
  }
  .elite .profile .left,
  .elite .profile .right {
    max-width: 100%;
  }
  .elite .kyc form .div1 .form-group {
    max-width: 100%;
  }
  .elite .kyc form .div1 {
    padding: 0;
  }
  .elite .kyc form .form-group {
    padding: 10px;
  }
  .dashboard {
    padding: 80px 30px 20px;
  }
}
@media screen and (max-width: 600px) {
  .elite .banner .wrapper .banner-overlay h1,
  .elite .we-do .right h2,
  .elite .pay-options h2,
  .elite .videos .vdiv h2,
  .elite .why-us .top h2,
  .elite .how-it-works .left h2,
  .elite .achievement .top h2,
  .elite .join-us .left h2,
  .elite .testimonies .top h2,
  .elite .crypto-chart .top h2,
  .elite .recent-deposit .top h2,
  .elite .page-img h1,
  .elite .investment-plan .top h2,
  .elite .contact .contact-area .left h2,
  .elite .account .left h1,
  .elite .payment h1,
  .elite .kyc h1,
  .elite .kyc h2,
  .elite .history .top h1,
  .dashboard .top .left h2,
  .elite .t_method .top h1,
  .elite .clients .top h1 {
    font-size: var(--midtxt);
  }
  .elite .we-do .right {
    padding: 0;
  }
  p,
  .elite footer .top .foot a.links {
    font-weight: 700;
    font-size: var(--xxsmtxt);
  }
  .elite .how-it-works .right .steps {
    flex-wrap: wrap;
  }
  .elite .how-it-works .right .steps .step {
    max-width: 400px;
  }
  .elite .how-it-works .rotator {
    display: none;
    visibility: hidden;
  }
  .elite .achievement .achieve-area .achieved {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    background: var(--light-gold);
  }
  .elite .achievement .achieve-area .achieved .info h4 {
    font-size: var(--smtxt);
  }
  .elite .faq .faq-div .faq-area .faq-box .toggler .icon {
    width: 40px;
    height: 40px;
  }
  .elite .contact .contact-area {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact .contact-area .right form .double {
    flex-direction: column;
  }
  .elite .contact .contact-area .right form {
    padding: 15px;
  }
  .logo {
    width: 100px;
  }
  .elite .payment {
    padding: 50px 20px;
  }
  .dashboard .top .right {
    width: 100%;
    justify-content: center;
  }
  .dashboard {
    padding: 80px 20px 20px;
  }
}
@media screen and (max-width: 400px) {
  .elite footer .top {
    padding: 50px 20px 20px;
  }
  .elite footer .top .foot,
  .elite footer .top .foot.txt-area {
    min-width: 100%;
  }
  .elite .briefed .brief-box {
    width: 100%;
  }
  .elite .about .we-do .right {
    padding: 0;
  }
  .elite footer .bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .dashboard .dash-area .dash-div .card h4 {
    font-size: 28px;
    font-weight: 600;
  }
}
