@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  box-sizing: border-box;
}

header {
  position: relative;
}

body {
  font-family: "Karla", sans-serif;
}

.myNavbar {
  padding: 15px 20px;
  position: relative;
  z-index: 99;
  background-color: #fff;
  background-color: rgb(25, 30, 41);
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.myNavbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 25px;
  position: relative;
  color: #02867d;
  margin-bottom: 10px;
}

.sub-title::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #02867d;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.logo-cont {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-cont .logo-txt {
  margin: 0;
  display: block;
  margin-right: -15px;
  position: relative;
  left: -9px;
  color: #fefefe;
  font-weight: 600;
  font-size: 18pt;
}

.logo-cont img {
  height: 40px;
}

.hide-sm {
  display: none !important;
}

.sm-navlinks {
  position: absolute;
  left: 0;
  padding: 0;
  right: 0;
  bottom: 0;
  transform: translateY(0);
  z-index: 9;
  margin: 0;
  list-style: none;
  background-color: rgb(25, 30, 41);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: transform 0.7s ease-in-out;
}

.sm-navlinks li a {
  padding: 15px 20px;
  display: block;
  text-decoration: none;
  color: #fefefe;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .sm-navlinks li a {
    padding-left: 0;
  }
}
.sm-navlinks.active {
  transform: translateY(100%);
}

.nav-cta-group {
  background-color: #f7f7f9;
  padding: 20px;
}

.nav-cta-group li {
  margin-right: 20px;
  padding: 0;
}

#side-screen {
  display: none;
}

.sm-navlinks.active ~ #side-screen {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4745098039);
  z-index: 8;
}

.nav-links {
  display: none;
}

.accent-color {
  color: rgb(1, 195, 141) !important;
}

.cta-btn {
  padding: 9px 20px !important;
  background-color: rgb(1, 195, 141);
  border: 1px solid rgb(1, 195, 141);
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .logo-cont {
    position: relative;
  }
  .logo-cont img {
    position: absolute;
  }
  .logo-cont .logo-txt {
    display: block;
    position: relative;
    left: 40px;
    color: #fefefe;
    font-weight: 600;
    font-size: 18pt;
  }
}
@media (min-width: 999px) {
  .sm-navlinks {
    display: none;
  }
  .menu-icon {
    display: none;
  }
  .nav-links {
    display: block;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .nav-links li {
    display: grid;
    place-items: center;
    margin-left: 30px;
  }
  .nav-links li a {
    display: block;
    font-size: 11pt;
    text-decoration: none;
    color: #fefefe;
    text-transform: uppercase;
  }
}
.myNavbar.light-mode {
  background-color: #fefefe;
}
.myNavbar.light-mode .nav-links li a {
  color: rgb(25, 30, 41);
}
.myNavbar.light-mode ~ .sm-navlinks {
  background-color: #fefefe !important;
}
.myNavbar.light-mode ~ .sm-navlinks li a {
  color: rgb(25, 30, 41);
}
.myNavbar.light-mode .menu-icon span {
  background-color: rgb(25, 30, 41);
}
.myNavbar.light-mode .logo-cont .logo-txt {
  color: rgb(29, 35, 48);
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.landing {
  min-height: 600px;
  width: 100%;
  background-image:
    linear-gradient(to right, #0000007c, #0000007c),
    url("../assets/img/landing-bg.jpg");
  background-color: rgba(0, 0, 0, 1);
  background-size: cover;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.landing .content {
  padding-top: 100px;
  color: #fff;
  text-align: center;
}
.landing .content-txt {
  max-width: 700px;
  margin: 0 auto;
}
.body-title {
  font-weight: 700;
  font-size: 20pt;
  line-height: 1.2;
}

.title {
  line-height: 1.15;
}

.title-sub {
  line-height: 1.8;
}

.about {
  padding: 60px 0;
}
.about .col-sm-12:not(:last-child) {
  margin-bottom: 40px;
}
.about .row {
  margin-bottom: 80px;
}

.shareholder-section {
  padding: 0 0 80px;
}

.shareholder-section .container,
.onboarding-section .container {
  max-width: 1180px;
}

.shareholder-card {
  background: linear-gradient(135deg, #f8fafc 0%, #eefcf7 100%);
  border: 1px solid rgba(1, 195, 141, 0.15);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(25, 30, 41, 0.08);
  display: grid;
  gap: 24px;
}

.shareholder-copy .body-title {
  margin-bottom: 16px;
}

.shareholder-highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shareholder-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #01c38d 0%, #02867d 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(1, 195, 141, 0.2);
}

.shareholder-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shareholder-highlight h3 {
  color: rgb(25, 30, 41);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.shareholder-highlight p {
  margin: 0;
  color: #5b6474;
  line-height: 1.7;
}

.shareholder-highlight blockquote {
  margin: 14px 0 0;
  padding-left: 16px;
  border-left: 3px solid #01c38d;
  color: #243041;
  font-style: italic;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shareholder-quote-name {
  font-style: normal;
  font-weight: 700;
  color: #02867d;
}

.onboarding-section {
  padding: 0 0 80px;
}

.onboarding-shell {
  background: linear-gradient(135deg, #0f172a 0%, #1d2942 100%);
  border-radius: 28px;
  padding: 40px 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.onboarding-intro {
  text-align: center;
  margin-bottom: 28px;
  color: #f8fafc;
}

.onboarding-intro .sub-title {
  color: #7ee7c9;
  padding-left: 0;
}

.onboarding-intro .sub-title::before {
  display: none;
}

.onboarding-intro .body-title {
  color: #ffffff;
}

.onboarding-intro .title-sub {
  color: rgba(248, 250, 252, 0.84);
  max-width: 720px;
  margin: 0 auto;
}

.onboarding-steps {
  display: grid;
  gap: 16px;
  position: relative;
}

.onboarding-step {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 16px;
  backdrop-filter: blur(14px);
  min-height: 150px;
  box-shadow: 0 10px 25px rgba(2, 8, 23, 0.16);
}

.onboarding-step::after {
  content: "→";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translate(100%, -50%);
  color: #7ee7c9;
  font-size: 1.2rem;
  font-weight: 700;
  display: none;
}

.onboarding-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #01c38d 0%, #02867d 100%);
  color: #fff;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.onboarding-step h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.onboarding-step p {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.7;
  margin: 0;
}

.about-item {
  display: flex;
  padding: 0 15px;
  align-items: center;
}

.body-title {
  color: rgb(25, 30, 41);
}

.ai-illus {
  margin-right: 10px;
}

.ai-txt h4 {
  font-weight: 500;
  color: rgb(40, 48, 65);
  font-size: 18pt;
  margin: 0;
}

.ba-row {
  max-width: 850px;
  margin: 0 auto;
}

.ba-col {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ba-stat {
  color: #01c38d;
  margin: 0;
  margin-right: 10px;
  font-size: 25pt;
}

.ba-sub {
  margin: 0;
}

@media (min-width: 768px) {
  .body-title {
    font-size: 25pt;
  }
  .shareholder-card {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  .onboarding-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
  .onboarding-step {
    min-height: 190px;
  }
  .onboarding-step::after {
    display: block;
  }
  .about-item {
    flex-direction: column;
    text-align: center;
  }
  .ai-illus {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .ai-illus img {
    height: 50px;
  }
  .ba-row {
    display: flex;
    justify-content: space-between;
  }
  .ba-col {
    flex-direction: column;
    align-items: center;
  }
  .ba-stat {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 30pt;
  }
  .ba-sub {
    font-size: 11pt;
  }
}

@media (max-width: 767px) {
  .onboarding-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .onboarding-step {
    min-height: auto;
    padding: 16px 14px;
  }
  .onboarding-step::after {
    content: "↓";
    right: auto;
    top: auto;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%, 100%);
    display: block;
  }
  .onboarding-step:last-child::after {
    display: none;
  }
}

.rates {
  padding-top: 60px;
}

.rates-slider-cont {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
  width: 100%;
}

.rates-slider-cont:hover .rates-slider {
  animation-play-state: paused;
}

.rates-slider {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 0;
  animation: 60s linear 0s infinite reverse none running animateRates;
}

.rates-item {
  margin: 0 5px;
  padding: 2rem 1rem 1.8rem;
  flex: 0 1 210px;
  min-width: 210px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.rates-item .rates-item-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rates-item .rates-item-cont img {
  width: 80px;
  margin-bottom: 20px;
}
.rates-item .rates-item-cont .ri-val {
  font-size: 17pt;
  line-height: 1.15em;
  font-weight: 500;
}

@keyframes animateRates {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-100%);
  }
}
.join {
  padding: 60px 0;
}

.join-cont {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  padding: 20px 0 30px;
}

.join-item {
  display: flex;
  flex: 0 1 300px;
  min-width: 400px;
  padding: 15px;
  margin-right: 10px;
  box-shadow: rgba(25, 30, 41, 0.1) 0px 3px 16px;
}
.join-item:first-child {
  margin-left: 10px;
}
.join-item .join-illus {
  margin-right: 20px;
}
.join-item .join-illus img {
  width: 46px;
}
.join-item .join-txt {
  display: flex;
  flex-direction: column;
}
.join-item .site {
  font-weight: 500;
  margin-top: auto;
  color: #01c38d;
}

.why {
  padding: 60px 0;
  background-color: #f3f6fa;
}

.services {
  padding: 60px 0;
  background-color: #f3f6fa;
}

.aib-illus {
  width: 75px;
  margin-bottom: 15px;
}

.faq {
  padding: 60px 0;
}

.accordion-button:not(.collapsed) {
  color: #02867d;
  background-color: rgba(2, 134, 125, 0.1529411765);
}

.accordion-button:focus {
  z-index: 3;
  border-color: #000000;
  outline: 0;
  box-shadow: rgba(2, 134, 125, 0.2549019608) 0px 2px 4px;
}

.contact {
  background-color: #f3f6fa;
}

.contact-cnt {
  display: flex;
}
.contact-socials {
  display: flex;
}
.cs-item {
  margin-right: 10px;
}
.cs-item img {
  height: 40px;
}

@media (min-width: 999px) {
  .contact-desc {
    flex: 0 1 50%;
  }
}

@media (max-width: 767px) {
  .auth-page-shell {
    padding: 20px 12px 24px;
  }
  .auth-hero {
    padding: 24px 20px;
  }
  .auth-hero h1 {
    font-size: 1.7rem;
  }
  .auth-hero p {
    font-size: 0.95rem;
  }
  .auth-form-grid {
    grid-template-columns: 1fr;
  }
  .auth-card {
    border-radius: 18px;
  }
}
.contact-desc {
  padding: 90px 0;
  position: relative;
}

@media (min-width: 999px) {
  .contact-illus {
    height: auto;
    flex: 0 1 50%;
    width: 50%;
    background-image: url(../assets/img/contact.jpg);
    background-size: cover;
  }
}
/* Sign in / Sign up auth layout */
.auth-page-shell {
  min-height: 100vh;
  padding: 40px 20px 24px;
  background: linear-gradient(135deg, #f5f9ff 0%, #eefcf7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.auth-hero {
  width: min(100%, 980px);
  background:
    linear-gradient(
      135deg,
      rgba(1, 195, 141, 0.2) 0%,
      rgba(2, 134, 125, 0.05) 100%
    ),
    linear-gradient(135deg, #0f172a 0%, #1d2942 100%);
  border-radius: 32px;
  padding: 40px 32px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}

.auth-hero::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(126, 231, 201, 0.28) 0%,
    rgba(126, 231, 201, 0) 72%
  );
  pointer-events: none;
}

.auth-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7ee7c9;
}

.auth-breadcrumb a {
  color: #7ee7c9;
  text-decoration: none;
}

.auth-breadcrumb a:hover {
  text-decoration: underline;
}

.auth-breadcrumb .current {
  color: rgba(248, 250, 252, 0.8);
}

.auth-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.auth-hero p {
  margin: 0;
  color: rgba(248, 250, 252, 0.84);
  max-width: 660px;
  line-height: 1.8;
  font-size: 1rem;
}

.auth-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.nk-auth-body {
  width: min(100%, 480px);
  margin: 0;
}

.auth-body-wide {
  width: min(100%, 760px);
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.auth-form-grid .form-group {
  margin-bottom: 0;
}

.auth-form-grid .form-control {
  border-radius: 12px;
}

.auth-form-grid .form-label {
  font-weight: 600;
  color: #334155;
}

.auth-form-grid .full-row {
  grid-column: 1 / -1;
}

.auth-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.auth-card .cta-btn {
  width: 100%;
  border-radius: 12px;
  padding: 12px 20px !important;
  box-shadow: 0 10px 20px rgba(1, 195, 141, 0.18);
}

footer {
  padding: 40px 0;
  background-color: #141c23;
}

footer .title-sub {
  color: #cfdae0;
}

footer .col-sm-12 {
  margin-bottom: 40px;
}

.foot-logo-cont {
  display: flex;
  flex-direction: column;
}

.foot-logo-cont div {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}

.foot-logo-cont img {
  width: 160px;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
}

.foot-logo-cont .foot-txt {
  font-weight: 600;
  font-size: 20pt;
  margin-bottom: 0;
  color: #cfdae0;
}

.foot-title {
  color: #6b7b8b;
  font-size: 13pt;
  font-weight: 500;
  text-transform: uppercase;
}

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

.foot-links li {
  margin-bottom: 10px;
}

.foot-links a {
  color: #cfdae0;
  text-decoration: none;
}

.foot-form form {
  display: flex;
}

.foot-form input {
  border: 1px solid rgba(207, 218, 224, 0.2901960784);
  background-color: rgba(0, 0, 0, 0.2352941176);
  color: #cfdae0;
}

.foot-form input::-moz-placeholder {
  color: #cfdae0;
  font-size: 11pt;
}

.foot-form input::placeholder {
  color: #cfdae0;
  font-size: 11pt;
}

.foot-form .cta-btn {
  margin-left: -10px;
  border-radius: 0 3px 3px 0;
}

.foot-btm {
  background-color: #10161c;
  border-top: 1px solid #222e3a;
}

.foot-btm p {
  margin-bottom: 0;
} /*# sourceMappingURL=style.css.map */
