@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(../images/background.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #171717;
  color: #f0b90b;
  font-family: "Space Mono", monospace;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a, b, span{
  color: #fff;
}

.header {
  position: fixed;
  padding-top: 25px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1340px;
  z-index: 10;
  background-color: #000201;
  text-align: center;
}
.header .menu-buttons {
  display: flex;
  padding: 1em 0;
  justify-content: center;
}

.navbar-brand {
  font-size: 24px;
  color: #f0b90b;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.navbar-brand span {
  color: #fff;
}
.navbar-brand img {
  width: 24px;
  margin-right: 5px;
}
.navbar-brand a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: unset;
  padding: unset;
}

.nav-link {
  color: #f0b90b;
  text-underline-offset: var(--offset, 0.3em);
  transition: --offset 0.5s, text-decoration-color 0.5s;
  text-decoration: underline;
  margin-right: 10px;
}
@media (min-width: 992px) AND (max-width: 1244px) {
  .nav-link {
    font-size: 0.8rem!important;
    padding: 0.05rem 0.25rem!important;
  }
}
.nav-link:hover, .nav-link:focus {
  --offset: 0.3em;
  text-decoration-color: #fff;
}

.sbmt {
  position: relative;
  padding: 8px 16px;
  font-size: 1rem;
  color: var(--color);
  border: 2px solid rgb(242, 188, 7);
  border-radius: 4px;
  text-shadow: 0 0 15px var(--color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: 0.5s;
  z-index: 1;
  background-color: transparent;
}

.sbmt:hover {
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 0px var(--color);
}

.sbmt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  z-index: -1;
  transform: scale(0);
  transition: 0.5s;
}

.sbmt:hover::before {
  transform: scale(1);
  transition-delay: 0.5s;
  box-shadow: 0 0 10px var(--color), 0 0 30px var(--color), 0 0 60px var(--color);
}

.sbmt span {
  position: absolute;
  background: var(--color);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color), 0 0 20px var(--color), 0 0 30px var(--color), 0 0 50px var(--color), 0 0 100px var(--color);
  transition: 0.5s ease-in-out;
  transition-delay: 0.25s;
}

.sbmt:hover span {
  opacity: 0;
  transition-delay: 0s;
}

.sbmt span:nth-child(1),
.sbmt span:nth-child(3) {
  width: 5px;
  height: 4px;
}

.sbmt:hover span:nth-child(1),
.sbmt:hover span:nth-child(3) {
  transform: translateX(0);
}

.sbmt span:nth-child(2),
.sbmt span:nth-child(4) {
  width: 4px;
  height: 5px;
}

.sbmt:hover span:nth-child(1),
.sbmt:hover span:nth-child(3) {
  transform: translateY(0);
}

.sbmt span:nth-child(1) {
  top: calc(50% - 2px);
  left: -50px;
  transform-origin: left;
}

.sbmt:hover span:nth-child(1) {
  left: 50%;
}

.sbmt span:nth-child(3) {
  top: calc(50% - 2px);
  right: -50px;
  transform-origin: right;
}

.sbmt:hover span:nth-child(3) {
  right: 50%;
}

.sbmt span:nth-child(2) {
  left: calc(50% - 2px);
  top: -50px;
  transform-origin: top;
}

.sbmt:hover span:nth-child(2) {
  top: 50%;
}

.sbmt span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -50px;
  transform-origin: bottom;
}

.sbmt:hover span:nth-child(4) {
  bottom: 50%;
}

.menu-buttons {
  position: relative;
  display: flex;
}
.menu-buttons a {
  text-decoration: none;
  color: #fff;
  padding: 8px 16px;
  border: #f0b90b solid 1px;
  margin-left: 5px;
  border-radius: 10px;
}

.hero {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(../images/hero-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero .right-hero {
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: center;
}
.hero .rotation {
  animation: rotation 9s linear infinite;
  transform: rotate3d(10, -90, 1, 0deg) rotatey(1deg);
  transform-style: preserve-3d;
}
@keyframes rotation {
  0% {
    transform: rotatey(0deg);
  }
  50% {
    transform: rotatey(360deg);
  }
  100% {
    transform: rotatey(0deg);
  }
}
.hero #cube {
  display: block;
  margin-top: 150px;
  width: 350px;
  height: 350px;
  transform-style: preserve-3d;
  transform: rotatey(0deg) rotateX(-30deg) rotatez(-20deg);
}
.hero #cube img {
  max-width: 150px;
  margin: unset;
}
.hero .face {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-backface-visibility: inherit;
  backface-visibility: inherit;
  font-size: 60px;
  color: #fff;
}
.hero .front {
  background: linear-gradient(#151515, #F2BC07);
  transform: translateZ(99px);
  transform-style: preverse-3d;
}
.hero .back {
  background: linear-gradient(#151515, #F2BC07);
  transform: rotateY(180deg) translateZ(99px);
  transform-style: preverse-3d;
}
.hero .right {
  transform-style: preverse-3d;
  background: linear-gradient(#151515, #F2BC07);
  transform: rotateY(90deg) translateZ(99px);
}
.hero .left {
  background: linear-gradient(#151515, #F2BC07);
  transform: rotateY(-90deg) translateZ(99px);
  transform-style: preverse-3d;
}
.hero .top {
  background: linear-gradient(#151515, #F2BC07);
  transform: rotateX(90deg) translateZ(99px);
  transform-style: preverse-3d;
}
.hero .glow {
  transform: rotatex(-90deg) translateZ(160px);
  transform-style: preverse-3d;
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  background: #F2BC07;
  filter: blur(30px);
  box-shadow: 0 0 120px rgba(242, 188, 7, 0.2), 0 0 350px rgba(242, 188, 7, 0.4), 0 0 350px rgba(242, 188, 7, 0.6), 0 0 350px rgba(242, 188, 7, 0.8), 0 0 350px rgb(0, 255, 0);
}
.hero .bottom {
  background: #F2BC07;
  transform: rotateX(-90deg) translateZ(99px);
  transform-style: preverse-3d;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 660px;
  padding-top: 120px;
}
.hero .hero-content .title {
  padding-top: 45px;
}
.hero .title {
  position: relative;
}
.hero .title h4 {
  color: #fff;
  margin: 0;
}
.hero .title h1 {
  font-size: 3rem;
  line-height: 55px;
  font-weight: 700;
  margin: 0;
  stroke: #fff 1px;
  fill: #f0b90b;
}
@media(max-width: 400){
  .hero .title h1 {
    font-size: 2.5rem !important;
  }
}

.statistics {
  margin-top: 30px;
  position: relative;
  padding: 1em 0.7em;
  max-height: 218px;
  background: linear-gradient(90deg, rgba(242, 188, 7, 0.3) -9.61%, rgba(242, 188, 7, 0) 93.92%);
}
.statistics .stats-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.statistics .stats-item img {
  padding-top: unset;
}
.statistics .stats-item p {
  margin: unset;
  margin-left: 10px;
}
.statistics .stats-item:last-child span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .statistics .stats-item:last-child span {
    font-size: 0.95rem;
  }
}
@media (max-width: 368px) {
  .statistics {
    max-height: max-content;
  }
}

.features {
  position: relative;
  padding: 40px 0 20px 0;
}
.features .features-card {
  position: relative;
}
.features .card-header {
  display: flex;
  align-items: end;
}
.features img {
  margin-right: 5px;
  width: 32px;
  height: 32px;
}
.features h4 {
  margin: unset;
  font-family: Space Mono;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.features .card-body {
  color: #fff;
  padding: 1em 0;
}

.investment-plans {
  position: relative;
  background-image: url(../images/plans-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.investment-plans .investment-card-left {
  display: block;
  background: rgba(52, 179, 68, 0.03);
  position: relative;
  padding: 1em;
  border: 1px solid;
  -o-border-image: linear-gradient(96.41deg, #f0b90b 4.02%, rgba(52, 179, 68, 0) 55.05%);
  border-image: linear-gradient(96.41deg, #f0b90b 4.02%, rgba(52, 179, 68, 0) 55.05%);
  -webkit-border-image-slice: 2;
  border-image-slice: 2;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}
.investment-plans .investment-card-left .investment-card-header {
  display: flex;
  justify-content: space-between;
}
.investment-plans .investment-card-left .investment-card-header h3 {
  color: #fff;
  font-weight: 700;
}
.investment-plans .investment-card-left .investment-card-header p {
  font-weight: 700;
  font-size: 1.3em;
}
.investment-plans .investment-card-left .investment-card-body {
  display: block;
}
.investment-plans .investment-card-left .investment-card-body p {
  margin: Unset;
  width: 100%;
  display: flex;
}
.investment-plans .investment-card-left .investment-card-body p span {
  color: #fff;
}
.investment-plans .investment-plan-footer {
  margin-top: 25px;
}
.investment-plans .investment-card-right {
  display: block;
  background: rgba(52, 179, 68, 0.03);
  position: relative;
  padding: 1em;
  border: 1px solid;
  -o-border-image: linear-gradient(286deg, #f0b90b 4.02%, rgba(52, 179, 68, 0) 55.05%);
  border-image: linear-gradient(286deg, #f0b90b 4.02%, rgba(52, 179, 68, 0) 55.05%);
  -webkit-border-image-slice: 2;
  border-image-slice: 2;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}
.investment-plans .investment-card-right .investment-card-header {
  display: flex;
  justify-content: space-between;
}
.investment-plans .investment-card-right .investment-card-header h3 {
  color: #fff;
  font-weight: 700;
}
.investment-plans .investment-card-right .investment-card-header p {
  font-weight: 700;
  font-size: 1.3em;
}
.investment-plans .investment-card-right .investment-card-body {
  display: block;
}
.investment-plans .investment-card-right .investment-card-body p {
  margin: Unset;
  width: 100%;
  display: flex;
}
.investment-plans .investment-card-right .investment-card-body p span {
  color: #fff;
}
.investment-plans .investment-plan-footer {
  margin-top: 25px;
}

.how-it-works {
  padding: 60px 0 20px 0;
}
.container h2:first-child {
  margin: unset;
  font-weight: 700;
}
.how-it-works h4 {
  margin: unset;
  font-weight: 700;
}
.how-it-works p {
  margin: unset;
  color: #fff;
}

.last-10 {
  position: relative;
  padding: 40px 0;
  width: 100%;
  height: auto;
  background-image: url(../images/stats-bg.svg);
  background-position: center;
  background-position-y: 150px;
  background-size: cover;
  background-repeat: no-repeat;
}
.last-10 .last-10-card {
  position: relative;
  padding: 2em 0;
}
.last-10 .last-10-card .last-10-card-header {
  position: relative;
  background: linear-gradient(180deg, #f0b90b 0%, rgba(52, 179, 68, 0) 100%);
  padding: 0.5em 0 0.5em 1em;
}
.last-10 .last-10-card h3 {
  color: #fff;
  font-weight: 700;
}
.last-10 .last-10-card .last-10-card-body {
  position: relative;
}
.last-10 .last-10-card .last-10-card-body .item-left {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 1em;
  background: linear-gradient(92.55deg, rgb(40, 33, 0) 10.31%, #a48013 70%);
}
@media (max-width: 1198px) {
  .last-10 .last-10-card .last-10-card-body .item-left {
    display: block;
    margin-top: 20px;
    padding: 1em;
    background: linear-gradient(92.55deg, rgb(40, 33, 0) 10.31%, #a48013 70%);
  }
}
.last-10 .last-10-card .last-10-card-body .item-left p {
  color: #fff;
  margin: unset;
}
.last-10 .last-10-card .last-10-card-body .item-right {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 1em;
  background: linear-gradient(273deg, #f0b90b 10.31%, rgba(52, 179, 68, 0) 99.33%);
}
.last-10 .last-10-card .last-10-card-body .item-right p {
  color: #fff;
  margin: unset;
}

.crypto-card {
  display: flex;
  padding: 0.2em 1em;
  border: #f0b90b solid 1px;
}

.crypto-symbol {
  margin-right: 5px;
}

.crypto-price {
  color: #fff;
}

.widget-container {
  position: fixed;
  top: 10%;
  left: -150px;
  width: 150px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-in-out;
}

.widget {
  position: relative;
  height: 100%;
}

.widget-toggle {
  position: absolute;
  top: 121px;
  right: -124px;
  width: 217px;
  height: 32px;
  background-color: rgba(242, 188, 7, 0.18);
  border: solid 1px #f0b90b;
  color: #fff;
  outline: none;
  cursor: pointer;
  transition: right 0.3s ease-in-out;
  writing-mode: tb-rl;
  transform: rotate(270deg);
  transition: ease-in-out 0.3s;
}
.widget-toggle:hover {
  box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #f0b90b, 0 0 70px #f0b90b, 0 0 80px #f0b90b, 0 0 100px #f0b90b, 0 0 150px #f0b90b;
}

.widget-container.open {
  left: -15px;
}

.widget-content {
  padding: 0;
}

.partnership {
  padding: 80px 0 20px 0;
}
.partnership h3 {
  margin: unset;
  font-weight: 700;
}
.partnership p {
  margin: unset;
  color: #fff;
}
.partnership h2:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4em;
}
@media(max-width: 520px){
  .partnership h2:last-child {
    font-size: 3em;
  }
}
.partnership .comm {
  position: relative;
  height: 166px;
  display: flex;
  justify-content: center;
  background: radial-gradient(75.99% 75.99% at 50% 50%, rgba(52, 179, 68, 0.13) 0%, rgba(217, 217, 217, 0) 55.35%, rgba(217, 217, 217, 0) 100%);
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
.about-company {
  padding: 80px 0 20px 0;
  background-image: url(../images/about-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-company h3 {
  font-weight: 700;
}
.about-company .company-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.about-company .company-info h4 {
  margin: unset;
  font-size: 2em;
  font-weight: 700;
}
.about-company .company-info h5 {
  margin: unset;
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
}
.about-company img.company-house-logo {
  width: 55px;
  margin-right: 10px;
  margin-top: 10px;
}
.about-company .address {
  color: #fff;
}
.about-company p {
  color: #fff;
}

.space {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}
.space .about-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.space a.width-arrow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #f0b90b;
  width: 200px;
  margin-left: 10px;
}
.space a.width-arrow img.arrow {
  width: 100%;
  max-width: 55px;
  margin-right: 5px;
}
.space a.dl-cert {
  padding: 8px 16px;
  border: 1px solid #f0b90b;
  border-radius: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #f0b90b;
  max-width: 250px;
}
.space a.dl-cert img.pdf-cert {
  margin-right: 5px;
}

.we-accept {
  padding: 60px 0;
}

.image-slider {
  overflow: hidden;
}

.image-container {
  display: flex;
  animation: slide 30s linear infinite;
}

.image-container img {
  padding: 10px;
  border: #f0b90b 0.1px solid;
  border-radius: 50%;
  max-width: 55px;
  height: auto;
  margin: 10px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.account-balances{
  display: flex;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .account-balances{
    display: block;
  }
}

#main {
  transition: margin-left 0.5s;
  padding: 16px;
}

.dashboard {
  padding: 7em 1.4em 1em 1.4em;
  min-height: 80vh;
}

body::-webkit-scrollbar {
  width: 0.6em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #f0b90b;
  outline: 1px solid none !important;
}

.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(51, 51, 51, 0);
  border: #f0b90b solid 1px;
  color: #f0b90b;
  border-radius: 50%;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.back-to-top-btn svg {
  display: flex;
  margin: 0 auto;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(242, 188, 7, 0.11);
  min-height: 40px;
  margin-top: 30px;
}
.breadcrumbs a {
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 992px) {
  .dashboard {
    padding: 7em 0em 1em 0em;
    min-height: 80vh;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
.accordion {
  max-width: 100%;
  margin: 0 auto;
}

.accordion__title {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125em;
}

.accordion__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion__item {
  border-bottom: 1px solid #000;
  visibility: hidden;
}

.accordion__item:last-child {
  border-bottom: 0;
}

.accordion__item.is-active .accordion__itemIconWrap {
  transform: rotate(180deg);
}

.accordion__itemTitleWrap {
  display: flex;
  min-height: 2.5em;
  align-items: center;
  padding: 0.5em 1em;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.accordion__itemTitleWrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgb(242, 188, 7);
  border-radius: 4px;
  z-index: 1;
  transition: transform 0.4s ease;
}

.accordion__itemIconWrap {
  width: 1.25em;
  height: 1.8em;
  margin-left: auto;
  position: relative;
  z-index: 10;
}

.accordion__itemTitle {
  margin: 0;
  font-weight: 700;
  font-size: 1.2em;
  position: relative;
  z-index: 10;
}

.accordion__itemContent {
  font-size: 0.875em;
  height: 0;
  overflow: hidden;
  background-color: transparent;
  padding: 0 1.25em;
}

.accordion__itemContent p {
  margin: 2em 0;
}

.pagination {
  cursor: pointer;
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.3rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: #f0b90b;
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: #f0b90b;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem #f0b90b;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #f0b90b;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-top: 10px;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: #fff;
  text-decoration: none;
  background-color: #FAD338;
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #fff;
  background-color: #F0B90BFF;
  border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
  z-index: 3;
  color: #fff;
  background-color: #FAD338;
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}

.active > .page-link,
.page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #f0b90b;
  border-color: #f0b90b;
}

.disabled > .page-link,
.page-link.disabled {
  color: #f0f0f0;
  pointer-events: none;
  background-color: #b6a56d;
  border-color: #f0b90b;
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: 0.5rem ;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem ;
}

form input[type=text],
form input[type=email],
form input[type=password],
form textarea{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #f0b90b;
  color: #f0b90b !important;
}
form input[type=text]::placeholder{
  color: #f0b90b !important;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form textarea:focus {
  background-color: transparent !important;
  color: #fff;
}
form input[type=text]:active,
form input[type=email]:active,
form input[type=password]:active,
form textarea:active {
  background-color: transparent !important;
  color: #fff;
}

input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 100);
}

.contact-form {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #f0b90b;
  color: #f0b90b !important;
  min-height: 100px !important;
}

.contact-info {
  border: #f0b90b solid 1px;
  padding: 2em 0.5em;
}
.contact-info p {
  margin: unset;
}
.contact-info a {
  color: #fff;
  text-decoration: none;
}
.contact-info img {
  position: relative;
  border-radius: 50%;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

.form-control {
  background-color: transparent !important;
  color: #f0b90b;
}

.form-control:focus {
  background-color: transparent;
  border: none;
  border-bottom: #f0b90b solid 1px;
  color: #fff !important;
  box-shadow: none !important;
}

.login-form {
  padding: 80px 0;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
.login-form p {
  font-size: 1.1em;
}
.loginForm p:before { content: attr(data-task-owner)"Or Sign In With" ; }
@media (max-width: 992px) {
  .loginForm p:before { content: attr(data-task-owner)"OR" ; }
}
.login-form p a {
  color: #fff;
}


.scan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scan h3 {
  text-transform: uppercase;
  font-size: 2em;
  letter-spacing: 2px;
  margin-top: 20px;
  color: #f0b90b;
  filter: drop-shadow(0 0 20px #F2BC07) drop-shadow(0 0 60px #F2BC07);
  animation: animate_text 0.5s steps(1) infinite;
}
.scan .fingerprint {
  position: relative;
  width: 300px;
  height: 380px;
  background-image: url(../images/fingerPrint_01.png);
  background-size: 300px;
}
.scan .fingerprint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/fingerPrint_02.png);
  background-size: 300px;
  animation: animate 4s ease-in-out infinite;
}
.scan .fingerprint::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #f0b90b;
  border-radius: 8px;
  filter: drop-shadow(0 0 20px #F2BC07) drop-shadow(0 0 60px #F2BC07);
  animation: animate_line 4s ease-in-out infinite;
}

@keyframes animate {
  0%, 100% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
}
@keyframes animate_line {
  0%, 100% {
    top: 0%;
  }
  50% {
    top: 100%;
  }
}
@keyframes animate_text {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171717;
  z-index: 9999;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #333;
  border-top-color: #f0b90b;
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  outline: none;
  cursor: pointer;
}

input[type=checkbox]:checked::before {
  position: absolute;
  top: -2px;
  left: -2px;
  content: "•";
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  background-color: #f0b90b;
  border-radius: 50%;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #f0b90b;
  outline: none;
  cursor: pointer;
}

input[type=radio]:checked::before {
  position: absolute;
  top: -2px;
  left: -2px;
  content: "•";
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  background-color: #f0b90b;
  border-radius: 50%;
}

#crypto-chart {
  background-color: transparent;
  max-height: 200px;
}

canvas {
  background-color: transparent;
}

.card {
  background-color: transparent;
  border: #f0b90b 1px solid;
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid #dcad0e;
}

.card {
  position: relative;
  overflow: hidden;
}

.card {
  --size: 6rem;
  --transition-duration: 500ms;
  --transition-easing: ease-out;
  text-decoration: none;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 0.5rem;
  box-shadow: 0px calc(var(--size) / 6) calc(var(--size) / 3) rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-duration) var(--transition-easing);
  overflow: hidden;
}
.card::before {
  content: "";
  background: rgba(242, 188, 7, 0.4);
  width: 60%;
  height: 100%;
  top: 0%;
  left: -125%;
  transform: skew(45deg);
  position: absolute;
  transition: left var(--transition-duration) var(--transition-easing);
}
.card:hover {
  transform: translateY(-10px);
}
.card:hover::before {
  left: 150%;
}

.profile-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  font-size: 0.87rem;
}
.profile-card h4 {
  font-size: 1em;
  margin: unset;
}
.profile-card h4 span {
  color: #fff;
  font-size: 0.7rem;
}
.profile-card .left {
  display: flex;
}
.profile-card .right-ref {
  display: flex;
}
.profile-card .profile-img {
  position: relative;
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: solid 1px #fff;
  margin-right: 20px;
}
.profile-card .profile-img img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 0px 0px 4px;
  max-height: 35px;
}

.address-body{
  display: block;
  justify-content: space-between;
}
.all-balance {
  position: relative;
}
.all-balance span {
  float: right;
  color: #fff;
}

.plan-card {
  position: relative;
}
.plan-card h4, .plan-card p {
  margin: unset;
}
.plan-card .card-header {
  display: flex;
  align-items: center;
}
.plan-card .card-header h4 {
  margin-left: 15px;
}
.plan-card:hover .reward-img{
  filter: none !important;
}

select {
  font-size: 17px;
  color: #f0b90b;
  background-color: rgba(45, 48, 60, 0);
  width: 100%;
  height: 64px;
  border: 1px solid #f0b90b;
  text-align: center;
}

.select-items {
  position: absolute;
  background-color: #151515;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-items:hover {
  background-color: #000201;
}

.select-items div, .select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  background-color: #000201;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

select option {
  background-color: #171717;
}/*# sourceMappingURL=main.css.map */

sup{
  top: 0!important;
}
.text-right{
    text-align: right!important;
}
tbody td {
  color: #fff;
}
.reward-img{
  width: 100%;
}
.metamask img{
  width: 20px;
  height: auto;
  padding-top: 0!important;
}
.footer-links{
  display: block;
  align-items: center;
}
@media (max-width: 600px) {
  .profile-card .left {
    display: block;
  }

  .account-balances, .account-balances span, .account-balances b{
    font-size: 0.8rem;
  }
}
@media (max-width: 992px) {
  .footer-links{
    display: flex;
    justify-content: space-between;
  }
  .card-body h5 span,.card-body h5 b {
    font-size: 1rem;
  }
}
@media (max-width: 1398px) {
  .address-body{
    display: block;
  }
  .deposit-address-memo{
    margin-bottom: 1rem;
  }
  .deposit-address{
    font-size: 1rem;
  }
}
.no-decoration{
  text-decoration: none!important;
  color: #f0b90b;
}