@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

:root {
  --dark: #191B2D;
  --white: #ffffff;
  --shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: var(--dark);
  overflow: hidden auto;
  background: #F9FCFF;
  font-family: 'Ubuntu', sans-serif;
}

a,
a:hover,
a:focus {
  color: var(--dark);
  text-decoration: none;
}

ul {
  list-style-type: none;
}

ul,
p,
h2 {
  margin-bottom: 0;
}

h2 {
  color: var(--dark);
}

img,
svg {
  width: 100%;
}

.bold {
  font-weight: 600 !important;
}

.bold-xl {
  font-weight: 700 !important;
}

.underline {
  text-decoration: underline !important;
}

/* ===============
      header
=============== */
#header {
  top: 0;
  z-index: 1056;
  position: sticky;
  background: transparent;
  transition: all 0.3s ease;
  color: var(--dark);
}

#header.shadow {
  background: #FBFEFF;
}

.nav-wrap {
  height: 10rem;
  display: flex;
  border-radius: 2rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 120px;
}

.nav-list {
  width: 67%;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}

.nav-list .nav-link {
  transition: all 0.3s;
  border-radius: 9rem;
}

.nav-list .nav-link a {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--dark);
  padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav-list .nav-link.active a,
.nav-list .nav-link:hover a {
  border-color: var(--dark);
}

.nav-toggler {
  display: none;
  font-size: 3rem;
  cursor: pointer;
  position: relative;
}

.btn-one {
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  padding: 6px 4rem;
  align-items: center;
  color: var(--white);
  border-radius: 3rem;
  background: linear-gradient(45deg, #7ED2FF, #9D81FC);
}

.btn-one.onlybordered {
  background: transparent;
  border: 2px solid #9A89FC;
  color: #9A89FC;
}

.btn-one.sm {
  font-size: 80%;
  border-width: 2px;
}

.btn-one:hover {
  background-color: #fff;
}

/* responsive */
@media only screen and (min-width:1024px) {
  .btn-one.sm {
    margin-left: auto;
  }
}

@media only screen and (max-width:1023.9px) {
  .nav-list {
    left: 0;
    width: 100%;
    top: -33rem;
    height: fit-content;
    z-index: 1096;
    padding: 2rem;
    text-align: center;
    position: absolute;
    flex-direction: column;
    background: #fbfeff;
  }

  .nav-list.show {
    top: 7rem;
    box-shadow: 0 .5rem 1rem rgb(124 170 255 / 41%);
  }

  .nav-list .nav-link {
    width: max-content;
    margin: 0 auto 2rem auto;
  }

  .nav-list .nav-link:not(:last-child) {
    margin-right: auto;
  }

  .nav-toggler {
    display: block;
    color: var(--dark);
  }

  .hero-btn {
    padding-bottom: 5rem;
  }
}

@media only screen and (max-width:978.9px) {
  .nav-list {
    width: 100%;
  }
}

@media only screen and (max-width:767.9px) {
  .container {
    padding: 0 2rem;
  }

  .nav-wrap {
    height: 7rem;
  }
}

@media only screen and (max-width:425.9px) {
  p {
    font-size: 1.5rem;
  }

  .nav-list {
    width: 100%;
  }

  .btn-one,
  .btn-two {
    font-size: 1.5rem;
    padding: 7px 3rem;
  }
}

/* =====================
      hero section
====================== */
#hero {
  padding-top: 12rem;
  margin-top: -10rem;
  background: url('../img/herobg.svg') no-repeat bottom;
  background-size: cover;
}

@media only screen and (max-width:425.9px) {
  #hero {
    background: url('../img/herobg.svg') no-repeat left;
    background-size: cover;
  }
}

#hero .row {
  min-height: 55vh;
  align-items: center;
}

#hero .hero-heading {
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  font-size: calc(2.225rem + 2.4vw);
}

#hero .hero-sub {
  font-weight: 300;
  font-size: calc(1.6rem + 0.6vw);
  color: var(--dark);
}

.herocryptos img {
  width: 50px;
  margin: 10px;
}

/* common */
#features, #stats, #faq {
  padding: 50px 0px;
}

.section_title {
  text-align: center;
  margin-bottom: 30px;
}

.section_title > h2 {
  font-size: 3rem;
  font-weight: bold;
}

.section_title > p {
  font-size: 1.75rem;
  font-weight: 300;
}

/* features */
.feature_card {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}

.feature_card > img {
  width: 85px;
  margin-right: 20px;
}

.fc_content > h3 {
  font-weight: bold;
  font-size: 2.2rem;
}

/* stats */
#stats {
  background: url('../img/statbg.svg') no-repeat center;
  background-size: cover;
}

@media only screen and (max-width:425.9px) {
  #stats {
    background-position: left;
  }
}

.stat_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 30px 0px;
}

.stat_card > img {
  width: 85px;
  margin-bottom: 20px;
}

.sc_content > h3 {
  font-size: 2.2rem;
  font-weight: bold;
}

/* faq section */
.faq_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left_faqc {
  width: 60%;
}

.right_faqc > img {
  width: 300px;
}

.faq_title {
  margin-bottom: 30px;
}

.faq_title > h2 {
  font-size: 3rem;
  font-weight: bold;
}

.faq_title > p {
  font-size: 1.75rem;
  font-weight: 300;
}

.accordion-item {
  border: 0;
  overflow: hidden;
  color: var(--text-primary);
  border-radius: 1rem !important;
}

.accordion-button:not(.collapsed),
.accordion-button {
  border: 0;
  color: #000;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  padding-left: 4rem;
  background: #F9FCFF;
  font-weight: bold;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  border-top: 0;
  padding: 2rem 3rem;
  background: #F9FCFF;
}

.accordion-header {
  position: relative;
}

.accordion-button::before {
  top: 50%;
  left: .5rem;
  width: 2rem;
  height: 2rem;
  content: '';
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  background: #191B2D;
}

.accordion-button::after {
  display: none;
}

@media only screen and (max-width:767.9px) {
  .faq_content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .left_faqc {
    width: 100%;
  }

  .right_faqc {
    width: 100%;
    margin-bottom: 50px;
  }
}

/* footer section */

#footer {
  margin-top: 1rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  color: #fff;
  background: #191B2D;
}

#footer a {
  color: #fff;
}

#footer .site-name {
  margin-left: 0;
}

#footer .site-name > img{
  width: 150px;
  margin-bottom: 30px;
}

.footer_content {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer_content > i {
  font-size: 3.5rem;
  margin-right: 20px;
}

.footer_section_heading {
  color: var(--white);
}

#footer .link {
  font-weight: 500;
  color: rgb(221 229 245 / 42%);
}

#footer .footer-list {
  padding-left: 0;
}

#footer .footer-list li {
  width: max-content;
}

#footer .footer-list li:not(:last-child) {
  margin-bottom: 1.5rem;
}

#footer .footer-list li:hover {
  text-decoration: underline;
}

.footer_fp {
  width: 150px;
}

/* responsive */
@media only screen and (max-width:424.9px) {
  #footer .link {
    font-size: 1.5rem;
  }
}

.c_protected_txt {
  text-align: center;
  padding-bottom: 10px;
}

.cp_txt {
  color: #00ff00;
}

.copyr_txt {
  color: rgb(221 229 245 / 42%);
}