@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: qanelas, roboto, Ubuntu, Roboto, "sans-serif";
}
/* 
######################################################################
  defaults styles
######################################################################
*/
body {
  color: white;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
p,
a {
  font-family: roboto;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: currentColor;
}
button {
  border: none;
}
.wrapper {
  width: 85%;
  margin: auto;
}

/* 
######################################################################
  margin
######################################################################
*/

.my-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}
.my-6 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mt-4 {
  margin-top: 4px;
}
.mt-6 {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-14 {
  margin-top: 14px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 24px;
}
.mt-36 {
  margin-top: 36px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-64 {
  margin-top: 64px;
}

/* margin bottom */

.mb-6 {
  margin-bottom: 6px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-14 {
  margin-top: 14px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-18 {
  margin-bottom: 18px;
}

.mb-20 {
  margin-top: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 24px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-64 {
  margin-bottom: 64px;
}

/* padding */
.p-24 {
  padding: 24px;
}

.px-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}
.px-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.px-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.px-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}
.px-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.px-18 {
  padding-top: 18px;
  padding-bottom: 18px;
}

.px-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-24 {
  padding-top: 24px;
}
.px-32 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.px-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.px-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.py-6 {
  padding-right: 6px;
  padding-left: 6px;
}
.py-8 {
  padding-left: 8px;
  padding-right: 8px;
}
.py-12 {
  padding-left: 12px;
  padding-right: 12px;
}
.py-14 {
  padding-right: 14px;
  padding-left: 14px;
}
.py-16 {
  padding-left: 16px;
  padding-right: 16px;
}
.py-18 {
  padding-right: 18px;
  padding-left: 18px;
}

.py-20 {
  padding-right: 20px;
  padding-top: 20px;
}

.py-24 {
  padding-right: 24px;
  padding-left: 24px;
}
.py-32 {
  padding-right: 32px;
  padding-left: 32px;
}
.p-36 {
  padding: 36px;
}
.py-48 {
  padding-right: 48px;
  padding-left: 48px;
}
.py-64 {
  padding-right: 64px;
  padding-left: 64px;
}

/* row  , gap */
.row {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}

.justify-content-sb {
  justify-content: space-between;
}

.column {
  flex-direction: column;
}

.gap-4 {
  gap: 4px;
}

.gap-6 {
  gap: 6px;
}
.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}
.gap-14 {
  gap: 14px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-28 {
  gap: 28px;
}
.gap-32 {
  gap: 32px;
}
.gap-36 {
  gap: 36px;
}

/* grid */

.grid {
  display: grid;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* border radius */

.round-4 {
  border-radius: 4px;
}
.round-8 {
  border-radius: 8px;
}
.round-6 {
  border-radius: 6px;
}
.round-30 {
  border-radius: 30px;
}

/* postion */
.absoulte {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}

.z-index-1 {
  z-index: 1;
}

/* text */

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

/* size */

.font-size-24 {
  font-size: 24px;
}

.font-size-12 {
  font-size: 12px;
}

.c-red {
  color: red;
}
.bold {
  font-weight: bold;
}
/* columns */

.col-1 {
  width: 100%;
}

.col-2 {
  width: 48%;
}

.col-3 {
  width: 33.3%;
}

.col-4 {
  width: 19.5%;
}

/* forms */
.form-message {
  background: black;
}
.form-content {
  border: 0.5px solid #272930;
  padding: 24px;
}
.form-content label {
  opacity: 0.7;
}
.form-group input,
.form-group select {
  background: #14161a;
  /* box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.291); */
  border: 1px solid #272930;
  outline: none;
  color: #d5d1d1;
  /* border: 1px solid #dedede; */
}

.pwd-toggle {
  position: absolute;
  top: 55%;
  right: 10px;
  opacity: 0.7;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  background: none;
}
/* 
  ####################################################
    main css styles
  ####################################################
*/

.bg-dark {
  background: #0e0f12;
  /* background: #111d32; */
}
.bg-light {
  background: #f7f7fa;
  color: #111;
}
.c-white {
  color: #fff;
}
.home-header {
  background: #0e0f12;
}
.nav-links-wrapper {
  height: 80px;
}
.nav-links li {
  display: inline-block;
  color: #9cb0c2;
}
.nav-links {
  width: 100%;
}
.nav-links .secondary-links li {
  /* background: #1a1d21; */
  background: #0f192c;
}
.nav-links .secondary-links a {
  color: #fff;
  padding: 6px 12px;
  font-weight: bold;
  display: block;
}
.nav-links .secondary-links li.active {
  /* background: #0094ff; */
  background: #015fc9;
}
.menu-icon {
  color: #ededed;
  display: none;
}
.mobile-logo {
  display: none;
}
.sm-logo {
  display: none;
}

.logo-img {
  width: 30px;
}
.main-logo {
  display: flex;
  /* dis */
}
.main-logo img {
  width: 40px;
  align-items: center;
  justify-content: center;
}

.hero {
  margin-bottom: 80px;
}

.hero-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.525), rgba(0, 0, 0, 0.653)),
    url("../img/C4D_035_13_i5.jpg");
}

.hero-2 h1 {
  font-size: 48px;
}

.hero-title {
  font-size: 74px;
  font-weight: 900;
  line-height: 96px;
}
.hero-text {
  color: #9cb0c2;
}
.hero-content {
  width: 100% !important;
}

.progress-bar {
  position: fixed;
  height: 100%;
  width: 100vw;
  top: 0;
  left: 0;
  background: #22222268;
  z-index: 9999999999999999;
  display: none;
}

.progress-bar.active {
  display: block;
}

.progress-bar::before {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 10px solid #dedede;
  border-top: 10px solid #015fc9;
  animation: mymove 0.5s infinite;
}

@keyframes mymove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-btn {
  display: block;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  background: #015fc9;
}

.hero-btn span {
  color: #ffffffc7;
  font-weight: normal;
}

.hero-img img {
  width: 100%;
  height: 80%;
  object-fit: contain;
}

.showcase {
  padding: 64px 0px;
}

.bg-showcase {
  background: linear-gradient(#111c31, #111d32), url("../img/C4D_035_13_i5.jpg");
}

.showcase-title {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 24px;
  font-weight: 800;
  width: 800px;
}
.showcase-title-2 {
  font-size: 24px;
  width: 700px;
  margin-bottom: 24px;
  color: #9cb0c2;
}

.card-bg {
  background: #0f192c;
}
/* .card:hover
{
    box-shadow:4px 8px 16px 10px rgba(0, 0, 0, 0.203);
} */

.card-header {
  display: inline-block;
}
.card-header .icon {
  font-size: 24px;
}

.light-color {
  color: #9cb0c2;
}
.card-img {
  width: 80px;
}

.start-wrapper > div {
  width: 100%;
}
.start-wrapper > div img {
  width: 80%;
}
.start-content h1 {
  font-size: 30px;
  margin-bottom: 16px;
}

.start-content p {
  color: #9cb0c2;
  margin-bottom: 48px;
  font-size: 18px;
}
.primary-btn {
  background: #015fc9;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 6px;
}
.testimonial-header {
  font-size: 36px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card .quote {
  font-size: 36px;
  opacity: 0.5;
}
.testimonial-card img {
  border-radius: 50%;
  width: 70px;
  border: 2px solid #015fc9;
}
.testimonial-card .client-details {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.showcase-3-wrapper {
  padding: 64px 0px;
}
.showcase-3-wrapper h1 {
  font-size: 36px;
  width: 50%;
  margin-bottom: 24px;
}
.showcase-3-wrapper p {
  color: #9cb0c2;
}
.home-footer {
  background: black;
  padding-top: 46px;
  margin-top: auto;
  min-height: 450px;
}
.home-footer-content > div {
  width: 100%;
}
.logo h1 {
  font-size: 24px;
}
.footer-bottom {
  background: #060911;
  margin-top: auto;
  text-align: center;
}
.footer-links h1 {
  /* font-size: 36px; */
  margin-bottom: 24px;
  text-transform: capitalize;
}

.footer-links ul li {
  /* background: red; */
  padding: 12px;
  color: #9cb0c2;
  text-transform: capitalize;
  border-top: 0.1px dotted #dedede60;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-address > div {
  /* border: 1px solid #dedede34; */
  /* border: 0.5px solid #272930; */
  border: 0.1px dotted #dedede60;

  /* background: #272930; */
  padding: 24px;
  display: flex;
  color: #9cb0c2;
  align-items: center;
  gap: 24px;
}
.footer-address > div svg {
  color: #111d32;
}

/* faq page */

.faq-content details {
  border-top: 2px solid #272930;
  /* border-bottom:2px solid #272930; */
}
.faq-content summary {
  position: relative;
  list-style: none;
  padding-right: 24px;
}
.faq-content summary::-webkit-details-marker {
  display: none;
}

.faq-content summary::before {
  position: absolute;
  content: "+";
  -webkit-font-smoothing: antialiased;
  font-family: "fontawsome";
  font-size: 24px;
  font-weight: bold;
  right: 20px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
.faq-content details[open] summary::before {
  content: "-";
  font-size: 32px;
}
.faq-content details[open] summary {
  background: #060911;
}

.faq-content p {
  color: #9cb0c2;
}

/*  dashboard styles  */

.db-header {
  background: #060911;
  z-index: 100;
}

.db-header nav {
  height: 80px;
}

.db-nav {
  position: fixed;
  top: 80px;
  width: 324px;
  height: 100%;
  overflow: auto;
  padding-bottom: 100px;
  background: #0e0f12;
  /* background: #2c2b3f; */
}
.db-nav::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.db-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.db-nav::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.db-nav.active {
  visibility: visible;
  opacity: 1;
}

.db-nav .profile {
  background: #060911;
  height: 280px;
}
.db-container-bg {
  height: 280px;
  background: #060911;
  width: 100%;
}
.db-container {
  margin-left: 324px;
  width: calc(100% - 324px);
}

.db-links .profile {
  background: #0f192c;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  position: absolute;
  /* height: 400px; */
  background: #0f192c;
  min-width: 250px;
  display: none;
  z-index: 10;
  top: 56px;
  right: 0;
}

.pointer {
  cursor: pointer;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  border-bottom: 1px solid #272930;
}

.block {
  display: block;
}

/*  nav links */

.db-nav-links {
  padding: 36px;
}

.db-nav-links ul {
  grid-template-columns: 1fr 1fr;
}

.db-nav-links ul li a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: bold;
  /* padding:16px 24px; */
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
  /* display: block; */
  color: #9cb0c2;
  border-radius: 8px;
}

.db-nav-links ul li a.active {
  background: #015fc9;
  color: #fff;
}

.db-content {
  background: #111;
  min-height: 400px;
  /* background: #2c2b3f; */
  padding: 36px 48px;
  margin-top: -200px;
}

.db-content .card {
  border: 0.5px solid #272930;
  /* box-shadow: 4px 5px 16px rgba(0, 0, 0, 0.12); */
  /* background:#000; */
}
.db-content .card h3 {
  color: #ffffffa6;
}
.db-content .card h2 {
  font-size: 20px;
}
.db-content .card-icon {
  /* background: ; */
  /* padding: 16px; */
  height: 60px;
  width: 60px;
  display: grid;
  place-items: center;
  background: #060911;
  border-radius: 50%;
  font-size: 24px;
}

.db-table-container {
  overflow: auto;
}

.db-table {
  overflow: auto;
  border-collapse: collapse;
}

.db-table th,
.db-table td {
  padding: 14px;
  white-space: nowrap;
  text-align: left;
}

.db-table th {
  background: #060911;
}

.db-table td {
  color: #9cb0c2;
  font-size: 14px;
}

.copy-inp {
  width: 100%;
  height: 40px;
  display: flex;
}

.copy-inp input {
  flex: 1;
  white-space: nowrap;
  background: #14161a;
  border: 1px solid #272930;
  outline: none;
  color: #d5d1d1;
}
.copy-inp button {
  width: 50px;
  cursor: pointer;
  background: #015fc9;
  color: #fff;
}

.modal {
  background: #0f192c86;
  width: 100%;
  height: 100vh;
  top: 0;
  /* padding-top:20%; */
  display: none;
  left: 0;
  overflow: auto;
  position: fixed;
  z-index: 99999999;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #060911;
  position: relative;
  height: fit-content;
}
.close-modal {
  position: absolute;
  right: -24px;
  background: #0f192c;
  width: 50px;
  height: 50px;
  top: -30px;
}
.modal-header {
  border-bottom: 1px solid #272930;
}
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #060818;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
/* .card */
@media (max-width: 860px) {
  .db-container {
    margin-left: 0px;
    width: 100%;
    /* padding:18px; */
  }
  .db-content {
    padding: 14px;
    /* background: red; */
    margin-top: -150px;
    width: 100%;
  }
  .profile .icon {
    font-size: 14px;
  }
  .mobile-hide {
    display: none !important;
  }
  .db-contain {
    padding: 12px;
    width: 100%;
  }

  /* .nav-con {
    height:1 !important;
  } */
  .db-nav {
    /* display:none; */
    visibility: hidden;
    opacity: 0;
    width: 100%;
  }
  .wrapper {
    width: 90%;
  }
  .nav-links .primary-links {
    /* display: none; */
    height: 100vh;
    background: rgba(0, 0, 0, 0.834);
    position: fixed;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    left: -100%;
    transition: 0.3s;
    padding: 24px 20px;
  }
  .nav-links .primary-links::before {
    position: absolute;
    width: 80%;
    z-index: -99;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    background: #0e0f12;
  }
  .nav-links .primary-links.active {
    left: 0;
  }
  .menu-icon,
  .mobile-logo {
    display: flex;
  }
  .sm-logo {
    display: block;
  }
  .mobile-logo {
    margin-bottom: 36px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .mobile-logo .menu-icon {
    font-size: 24px;
  }
  .nav-links {
    justify-content: flex-end;
  }
  .nav-links .secondary-links {
    font-size: 14px;
  }
  .xl-logo {
    display: none;
  }
  .hero-title,
  .showcase-title {
    font-size: 60px;
    line-height: 74px;
    width: 100%;
  }
  .showcase-title-2 {
    width: 100%;
  }
  .showcase-card > div,
  .testimonial-card {
    /* padding: 24px; */
    width: 87% !important;
  }
  /* 
  ########################################################
     mobile styles
  ########################################################
   */
  .mobile-column {
    flex-direction: column;
  }
  .mw-100 {
    width: 100% !important;
  }
  .col-1,
  .col-2,
  .col-3,
  .col-4 {
    width: 100%;
  }
}

/* 
  ########################################################
    upgrade card styles
  ########################################################
   */

.upgrade-card {
  border: .1px solid #eeeeee50;
}

.upgrade-title {
   display: flex;
   flex-direction: column;
   gap: 2px;
   justify-content: center;
   align-items: center;
   padding: 24px;
   background: #060911;
}
.upgrade-title span {
  color: #9cb0c2;
}
.upgrade-title h2 {
  font-size: 36px;
}

.upgrade-card-body{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.upgrade-card-body ul {
  display:  flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom:18px;
}

.upgrade-card-body li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.upgrade-btn 
{
  width:150px;
}
/* styles for tab */
.tab-header {
  height: 48px;
  margin-bottom: 20px;
  border-bottom:1px solid #272930;
}

.tab-button {
  width: 120px;
  font-size: 16px;
  background: none;
  color:#9cb0b7;
  cursor: pointer;

}

.tab-button.active {
  color: #fff;
  border-bottom: 2px solid #015fc9;
  transition: .2s ease-in;
}

.dark-label label {
  font-size:14px;
  color:#9cb0b7;
}

.btn-withdraw {
    /* display: block; */
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    background: #015fc9;
    width:clamp(100px , 100% , 250px);
    font-weight: bold;
    border-radius:4px;
}

.tab-item {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  display: hidden;
  transition: .2s ease-in;
}

.tab-item.active
{
  display: flex;
  visibility: visible;
  opacity: 1;
  height: auto;
  width: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance :none;
  margin: 0;
}

input[type=number] {
  -moz-appearance:none;
}