html,
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  transition: background 0.25s ease-in-out;
  background: #1e239e;
  color: #ffffff;
}
.home_navbar ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.home_navbar ul li {
  display: inline-flex;
  align-items: center;
  margin: 0 15px;
}
.home_navbar ul li a {
  color: #9ca8ff;
  text-decoration: none;
}
.home_navbar .primary_btn {
  font-size: 18px;
  font-weight: 400;
  padding: 8px 30px;
}
.home_navbar {
  padding: 20px 0;
  background: transparent;
  z-index: 1000;
}
.auth_btn_grp {
  display: flex;
  gap: 15px;
}
.primary_btn {
  background: linear-gradient(45deg, #373eff, #161df7);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  padding: 12px 40px;
  border-radius: 10px;
  border: 1px solid #373eff;
  box-shadow: 0 0 7px 0 #373eff;
}
.page_header {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page_header::before {
  content: "";
  background: url("../images/banner_bg.png") no-repeat center top;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-size: cover;
  opacity: 0.2;
  top: -90px;
}
.page_header h1 {
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  margin: 0 auto 30px !important;
}
.page_header h1 span {
  color: var(--home-headspan);
}
.page_header p {
  font-size: 20px;
}
/* Custom Scrollbar */
*::-webkit-scrollbar {
  width: 4px;
  height: 5px;
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
*::-webkit-scrollbar-thumb {
  background-color: #9ca8ff;
}
.bluebg {
  background-color: #161a81;
}
.section {
  padding: 80px 0;
}
.inner_heading {
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  margin-bottom: 20px !important;
}
.inner_para {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 30px !important;
}
.feature_box_row [class*="col-"] {
  margin-bottom: 30px;
}
.feature_box {
  border: 1px solid transparent;
  border-radius: 10px;
  background: #21247f;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  padding: 30px;
  height: 100%;
}
.feature_box h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.feature_box p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}
.feature_box a {
    color: #9ca8ff;
}
.feature_box_flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.faq_accordian .accordion-item {
  margin: 10px 0;
  border-radius: 10px;
  background: #21247f;
  border-color: #21247f;
  color: #fff;
}
.faq_accordian .accordion-button {
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  color: #fff;
}
.accordion-button::after {
  filter: invert(1);
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.main_footer {
  background: #161a81;
  padding: 30px 0;
}
ul.social_links {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.footer_content p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 300;
  max-width: 80%;
}
.footer_top h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px !important;
}
.footer_top li {
  margin-bottom: 10px;
}
.footer_top li a {
  font-size: 14px;
  font-weight: 300;
  color: rgb(255 255 255 / 70%) !important;
  transition: 0.2s all;
  text-decoration: none;
}
.social_links li {
  margin: 0 20px 15px 0;
  display: flex;
  align-items: center;
}
.social_links li a {
  font-size: 18px;
  color: #9ca8ff !important;
  text-decoration: none;
}
.social_links li a span {
  font-size: 16px;
}
.footer_top {
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  padding: 50px 0 30px;
}
.footer_bottom p {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  margin: 15px 0 0;
  color: #618afb !important;
}

/* Media Queries */
@media screen and (max-width:991px) {
  .page_header {
    text-align: center;
  }
  .footer_content {
    margin-bottom: 15px;
  }
  button.navbar-toggler {
    filter: invert(1);
    box-shadow: none !important;
  }
  .home_navbar ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width:767px) {
  .feature_box_flex {
    flex-direction: column;
    text-align: center;
  }
  .inner_heading {
    font-size: 28px;
    line-height: 36px;
  }
  .feature_box h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .page_header h1 {
    font-size: 40px;
  }  
}
@media screen and (max-width:575px) {
  .auth_btn_grp {
    flex-direction: column;
  }
}