@import url('../../../css2');

:root {
  --textPrimary: #202071;
  --textWhite: #FFFFFF;
  --bodybg: #FDFAFF;
  --whitebg: #FFFFFF;
  --thirdbg: rgb(197 41 244 / 5%);

  --darkTextPrimary: #FFFFFF;
  --darkBodybg: #05053E;
  --darkWhitebg: #121C59;

  --gradientSetOne: linear-gradient(to right, #47ADFA, #CD6FE0);
  --gradientSetTwo: linear-gradient(to right, #6CD8FF, #2D7DF6);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow: hidden auto;
  background: var(--bodybg);
  color: var(--textPrimary);
  font: 400 1.6rem 'Exo 2', sans-serif;
}

body.darkmode {
  background: var(--darkBodybg);
  color: var(--darkTextPrimary);
}

img {
  width: 100%;
}

h2 {
  margin-bottom: 0;
}

a {
  color: var(--textPrimary);
  text-decoration: none !important;
}

a {
  color: var(--darkTextPrimary);
}

a:hover {
  color: var(--textPrimary);
}

p {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

/* ==========================
          header
========================== */
#header {
  top: 0;
  z-index: 1024;
  position: sticky;
  transition: all 0.3s ease;
}

#header.shadow {
  background: rgb(251 238 255);
}

.darkmode #header.shadow {
  background: var(--darkWhitebg);
}

.nav-bar {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  max-width: 15rem;
}

.nav-links {
  gap: 2rem;
  display: flex;
  font-weight: 400;
}

.nav-links a {
  font-weight: 500;
  color: var(--textPrimary);
  font-size: 1.8rem;
  position: relative;
}

.darkmode .nav-links a {
  color: var(--darkTextPrimary);
}

.nav-links a::before {
  left: 0;
  bottom: -6px;
  content: '';
  width: 100%;
  height: 1px;
  transform: scale(0);
  position: absolute;
  transition: all 0.4s ease;
  background-color: var(--textPrimary);
}

.darkmode .nav-links a::before {
  background-color: var(--darkTextPrimary);
}

.nav-links a > i {
  display: none;
}

.nav-links a:hover::before {
  transform: scale(1);
  transform-origin: center;
}

.btntopsm {
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradientSetOne);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.75rem;
  border: 2px solid #47ADFA;
  transition: 0.3s all ease;
}

.btn_gradient_one {
  padding: 8px 20px;
  display: inline-block;
  justify-content: center;
  align-items: center;
  background: var(--gradientSetOne);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.75rem;
  border: 2px solid #47ADFA;
  transition: 0.3s all ease;
}

.btn_gradient_two {
  padding: 8px 20px;
  display: inline-block;
  justify-content: center;
  align-items: center;
  background: var(--gradientSetTwo);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.75rem;
  border: 2px solid #47ADFA;
  transition: 0.3s all ease;
}

.btn_gradient_one:hover, .btn_gradient_two:hover, .btntopsm:hover {
  background: transparent;
  color: #47ADFA;
}

/* theme toggler */
.theme-toggler {
  width: 7.5rem;
  height: 3rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 99rem;
  background: var(--gradientSetOne);
}

.theme-toggler .round {
  top: 0;
  right: 0;
  width: 4rem;
  height: 3rem;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 99rem;
  justify-content: center;
  transition: all 300ms ease;
  background: #47ADFA;
}

.theme-toggler .round img {
  max-width: 2rem;
}

.theme-toggler .round.active {
  right: initial;
}

/* responsive menu toggler */
.nav-toggler {
  width: 4rem;
  height: 4rem;
  display: none;
  cursor: pointer;
  margin-left: 2rem;
  font-size: 2.6rem;
  align-items: center;
  justify-content: center;
  color: #62c9fd;
}

@media screen and (max-width: 991.9px) {
  .nav-toggler {
    display: flex;
  }

  .btn_colored_top {
    display: none;
  }
}

/* responsive */
@media screen and (max-width: 991.9px) {
  .nav-links {
    top: 0;
    right: 0;
    width: 280px;
    padding: 4rem;
    height: 100vh;
    position: fixed;
    margin-right: -284px;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background: linear-gradient(to right bottom, #CD6FE0, #0077FF);
  }

  .darkmode .nav-links {
    background: var(--darkWhitebg);
  }

  .nav-links a {
    color: #fff;
    font-weight: bold;
  }

  .nav-links a > i {
    display: inline;
  }

  .nav-links.show {
    margin-right: 0;
  }

  .backdrop-filter {
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: hsl(216deg 77% 15% / 50%);
  }

  .backdrop-filter.show {
    opacity: 1;
    display: block;
  }
}

@media screen and (max-width: 375.9px) {
  .nav-links {
    max-width: 240px;
  }
}

/* ==========================
        hero section
========================== */
#hero {
  padding: 5rem 0;
  overflow: hidden;
  margin-top: -8rem;
  background: url('../img/bg.svg') center no-repeat;
  background-size: cover;
}

.darkmode #hero {
  background: url('../img/bgdark.svg') center no-repeat;
}

#hero .row {
  /* gap: 2rem; */
  min-height: 100vh;
  align-items: center;
}

.hero-title {
  font-weight: 300;
  margin-bottom: 2rem;
  text-transform: capitalize;
  font-size: calc(2.65rem + 2vw);
}

.hero-title .bold {
  font-weight: 600;
}

.hero-title~p {
  margin-bottom: 4rem;
  font-size: calc(1.6rem + 0.4vw);
}

.crypto_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.crypto {
  width: 45px;
  margin: 0px 10px 20px 10px;
}

/* section_title */
.section_title {
  margin-bottom: 20px;
}

.sect_title_minitxt {
  font-size: 1.5rem;
}

.sect_title {
  font-size: 2.5rem;
  font-weight: bold;
}


/* weoffer section */
#weoffer {
  padding: 50px 0px;
}

.wo_box {
  display: flex;
  align-items: center;
  background: var(--whitebg);
  box-shadow: 4px 8px 13px rgb(139 96 223 / 19%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.darkmode .wo_box {
  background: var(--darkWhitebg);
  box-shadow: 4px 8px 13px rgb(27 5 71 / 77%);
}

.wo_box_img > img {
  width: 100px;
  margin-right: 20px;
}

.wo_box_content > h3 {
  font-size: 2rem;
  font-weight: bold;
}

/* advbenefit_content */
#advbenefit {
  background: var(--thirdbg);
  padding: 50px 0px;
}

.advbenefit_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.advc_left {
  width: 45%;
  margin-right: 50px;
}

.advc_right {
  width: 40%;
}


@media screen and (max-width: 939.9px){
  .advbenefit_content {
    flex-direction: column;
  }
  .advc_left, .advc_right {
    width: 100%;;
  }

  .advc_left {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}


/* stats */
#stats {
  padding: 50px 0px;
  background: var(--whitebg);
}

.darkmode #stats {
  background: var(--darkWhitebg);
}

.stats_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.stats_left {
  width: 45%;
  margin-right: 50px;
}


.stats_num {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sn_icon img{
  height: 100px;
  margin-right: 30px;
}

.sn_content > h3 {
  font-weight: bold;
  font-size: 2.5rem;
}

.stats_right {
  width: 40%;
}


@media screen and (max-width: 939.9px){
  .stats_content {
    flex-direction: column-reverse;
  }
  .stats_left, .stats_right {
    width: 100%;;
  }

  .stats_left {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}


/* myfaq */
#myfaq {
  padding: 50px 0px;
}

.accordion-item {
  border: 0;
  overflow: hidden;
  color: var(--textPrimary) !important;
  background: transparent;
  border-radius: 1rem !important;
  box-shadow: 3px 9px 11px 0px rgb(9 81 203 / 17%);
}

.darkmode .accordion-item {
  box-shadow: 4px 8px 13px rgb(27 5 71 / 77%);
  color: var(--darkTextPrimary) !important;
}

.accordion-button:not(.collapsed),
.accordion-button {
  border: 0;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 2rem 3rem;
  box-shadow: 0 0 1rem hsla(250, 80%, 10%, 0.35);
  background: var(--whitebg);
}

.darkmode .accordion-button:not(.collapsed),
.darkmode .accordion-button {
  background: var(--darkWhitebg);
  color: var(--darkTextPrimary);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button .icon {
  font-size: 2.6rem;
  margin-right: 1rem;
}

.accordion-body {
  border-top: 0;
  padding: 2rem 3rem;
}

.accordion-header {
  position: relative;
}

.accordion-button .float {
  right: 1.6rem;
  max-width: 5rem;
  position: absolute;
}

.accordion-button::after {
  width: 2rem;
  height: 2rem;
  background: url(../img/arrowdown.svg) center no-repeat;
  background-size: contain;
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
  background: url(../img/arrowup.svg) center no-repeat;
  background-size: contain;
  transform: rotate(-360deg);
}
/* ==========================
          Footer
========================== */
#footer {
  padding: 7rem 0rem;
  color: hsl(0, 0%, 80%);
  background-color: #081945;
  border-top: 2px solid hsla(49, 76%, 13%, 0.15);
}

.footer_title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section#footer::after {
  display: none;
}

.section#footer .row {
  height: max-content;
  align-items: flex-start;
}

.footer-desc {
  margin-top: 2rem;
  font-size: 1.7rem;
  padding-right: 1rem;
}

.footer-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-list li:not(:last-child) {
  margin-bottom: 1.2rem;
}

.footer-list li a {
  font-weight: 300;
  font-size: 1.7rem;
}

.socials {
  display: flex;
}

.social {
  background: var(--gradientSetOne);
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 5px;
  border: 2px solid #47ADFA;
  transition: 0.3s all ease;
}

.social:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.dropdown-menu {
  --bs-dropdown-bg: #FDFAFF;
}

.darkmode .dropdown-menu {
  --bs-dropdown-bg: #05053E;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: var(--whitebg);
}

.darkmode .dropdown-item:focus, .darkmode .dropdown-item:hover {
  background-color: var(--darkWhitebg);
}

@media screen and (max-width: 991.9px) {
  .dropdown-item {
    color: var(--textPrimary) !important;
    font-weight: 400 !important;
  }
  
  .darkmode .dropdown-item {
    color: var(--darkTextPrimary) !important;
    font-weight: 400 !important;
  }
}