@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --color-primary: #091235;
  --primary-color: #091235;
  --logobrand-color: #5B7BF8;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--color-primary);
  overflow: hidden auto;
  background: #FDFDFD;
  font: 400 1.6rem 'Inter', sans-serif;
}

img {
  width: 100%;
}

h2 {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none !important;
}

a:hover {
  color: var(--color-primary);
}

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-color: #ffffff;
  box-shadow: 1px 0rem 1rem  rgb(111 159 237 / 36%) !important;
}

.nav-bar {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  max-width: 18rem;
}

.nav-links {
  gap: 2rem;
  display: flex;
  font-weight: 400;
  align-items: center;
}

.nav-links a {
  font-size: 1.8rem;
  position: relative;
}

.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(--color-primary);
}

.nav-links a:hover::before {
  transform: scale(1);
  transform-origin: center;
}

.btn-one {
  display: flex;
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
  border-radius: 5px;
  padding: 6px 3.4rem 8px;
  transition: all 0.4s ease;
  text-transform: capitalize;
  background: var(--primary-color);
}

.btn-one.lightdark {
  background: #E1E6F7;
  color: var(--color-primary);
}

.btn-one.bg-none,
.btn-one.bg-none:hover {
  color: #fff;
  box-shadow: none;
  background: transparent;
}

.btn-one:hover {
  color: #fff;
  background: #374269;
}

/* 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: var(--color-primary);
}

@media screen and (max-width: 991.9px) {
  .nav-toggler {
    display: flex;
  }

  .btn-one.sm {
    display: none;
  }
}

/* responsive */
@media screen and (max-width: 991.9px) {
  .nav-links {
    top: 0;
    left: 0;
    width: 280px;
    padding: 4rem;
    height: 100vh;
    position: fixed;
    margin-left: -284px;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background: var(--primary-color);
    color: #fff;
  }

  .nav-links a {
    color: #fff;
  }

  .nav-links.show {
    margin-left: 0;
  }

  .backdrop-filter {
    top: 0;
    left: 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 {
  margin-top: -8rem;
  padding-top: 8rem;
  background: url('../img/herobg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#hero .row {
  min-height: 90vh;
  align-items: center;
}

.hero-title {
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-primary);
  text-transform: capitalize;
  font-size: calc(2.65rem + 2vw);
  font-weight: bold;
}

.hero-p {
  font-size: calc(1.65rem + 0.4vw);
  font-weight: 100;
  margin-bottom: 30px;
}

.hero-btn-wrap {
  gap: 1.6rem;
  display: flex;
  margin-bottom: 4rem;
}

.section-img {
  max-width: 75%;
  margin-left: auto;
}


/* responsive hero */
@media screen and (max-width: 991.9px) {
  .hero-btn-wrap {
    justify-content: center;
  }

  .section-img {
    max-width: 50%;
    margin-right: auto;
  }

  .hero-title {
    text-align: center;
  }

  .hero-p {
    text-align: center;
  }
}

@media screen and (max-width: 575.9px) {
  .section-img {
    min-width: 80%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 399.9px) {
  .hero-title .bar {
    display: block;
    margin: 0 auto;
    width: max-content;
  }
}

/* common */
.section_title h2 {
  font-weight: bold;
  font-size: 2.75rem;
  margin-top: 10px;
}

.section_title p {
  color: var(--primary-color);
  font-weight: lighter;
  font-size: 1.85rem;
  width: 50%;
  margin: 10px auto;
}

@media screen and (max-width: 991.9px) {
  .section_title p {
    width: 90%;
  }
}


/* start_earning_section */
.start_earning_section {
  padding: 50px 0px;
}

.se_card {
  padding: 20px;
  margin: 50px 0px;
  text-align: center;
}

@media screen and (max-width: 991.9px) {
  .se_card {
    margin: 20px;
  }
}

.se_card p {
  font-size: 1.85rem;
  font-weight: bold;
}

.se_img {
  margin-bottom: 20px;
}

.se_img img{
  height: 150px;
}

/* earning_option_section */
.earning_option_section {
  padding: 50px 0px;
}

.eo_content_li, .eo_content_ri {
  margin: 50px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.eo_content_left_img {
  width: 40%;
}

.eo_content_right_img {
  width: 40%;
  margin-left: 50px;
}

.eo_content_right, .eo_content_left {
  width: 50%;
}

.eo_content_right i, .eo_content_left i {
  font-size: 4rem;
  margin-bottom: 20px;
}

.eo_content_right h3, .eo_content_left h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.eo_content_right p, .eo_content_left p {
  font-size: 1.85rem;
  font-weight: 300;
}

@media screen and (max-width: 768.9px) {
  .eo_content_right, .eo_content_left, .eo_content_right_img, .eo_content_left_img {
    width: 100%;
    text-align: center;
  }

  .eo_content_right_img, .eo_content_left_img {
    margin-bottom: 30px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .eo_content_ri {
    flex-direction: column-reverse;
  }
}


/* ==========================
              FAQ
========================== */
.faq_section {
  width: 60%;
  height: auto;
  padding: 50px 0px;
  margin: 0px auto;
}


@media screen and (max-width: 768.9px) {
  .faq_section {
    width: 90%;
  }
}

.accordion-item {
  border: 0;
  margin-top: 30px;
  background: #fff !important;
  overflow: hidden;
  color: var(--text-primary);
  border-radius: 1rem !important;
  border: 2px solid var(--color-primary);
}

.accordion-button:not(.collapsed),
.accordion-button {
  border: 0;
  color: #000;
  padding: 3rem;
  font-size: 1.8rem;
  padding-left: 6rem;
  background: #fff;
  border-top: 2px solid var(--color-primary);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  border-top: 0;
  padding: 2rem 3rem;
}

.accordion-header {
  position: relative;
}

.accordion-button::before {
  top: 50%;
  left: 2.5rem;
  width: 2rem;
  height: 2rem;
  content: '';
  border-radius: 4px;
  position: absolute;
  background: var(--color-primary);
  transform: translateY(-50%) rotate(90deg);
}

/* stats_section */
.stats_section {
  padding: 50px 0px;
}

.statdivs {
  width: 40%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stat_card {
  margin: 30px auto;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  height: 100px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.stat_card h3 {
  font-size: 2.3rem;
  font-weight: bold;
}

/* ==========================
          Footer
========================== */
#footer {
  color: #ffffff;
  padding: 8rem 0 2rem;
  background-color: #191B2D;
  border-top: 2px solid hsla(49, 76%, 13%, 0.15);
}

.section#footer::after {
  display: none;
}

.section#footer .row {
  height: max-content;
  align-items: flex-start;
}

.footer-desc {
  margin: 2rem 0;
  font-size: 1.7rem;
  padding-right: 1rem;
}

.footer-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-list .title {
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.footer-list li:not(:last-child) {
  margin-bottom: 1.6rem;
}

.footer-list li a {
  font-weight: 300;
  font-size: 1.6rem;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  color: #fff;
}

.footer-list li a:hover {
  border-color: var(--color-primary);
}

.social-link {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: center;
}

.social-link a {
  width: 4rem;
  display: grid;
  height: 3.5rem;
  color: #ffffff;
  border-radius: 6px;
  place-items: center;
  background: #374269;
  border: 2px solid #374269;
  transition: background 300ms ease;
}

.social-link a:hover {
  background: transparent;
}

.copyright {
  font-weight: 600;
  margin-top: 8rem;
}

@media all and (max-width: 991.9px) {
  .copyright {
    margin-top: 2rem;
  }
}