@import url(../fonts/font.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a:not(.fund_link) {
  text-decoration: none !important;
}
html {
  font-size: clamp(11px, 10.4px + 0.4vw, 16px);
}
body {
    font-family: Archivo_Expanded;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.858;
    background: rgba(250, 250, 250, 1);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
   body.no-scroll {
            overflow: hidden;
        }
:root {
  --primary: #01b7e2;
  --secondary: #03f599;
  --white: #fff;
  --black: #191818;
  --grey:rgba(255, 255, 255, 0.4);
}
/* primary units */
.theme_btn {
    background: #03F599;
    color: var(--white);
    border-radius: 16px;
    padding: 10px 33px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.theme_fade_btn {
    background: linear-gradient(277.91deg, #03F797 2.6%, #01B1EA 97.47%);
    border-radius: 16px;
    padding: 15px 24px;
    font-size: 16px;
    color: var(--white);
    line-height: 26px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.fade_card {
  border: 1px solid #999999;
  background: #141414;
  padding: 1.25rem 1.875rem;
  border-radius: 20px;
}
.p_14 {
  padding: 0.875rem;
}
.pt115 {
  padding-top: 7.1875rem;
}
.pb140 {
  padding-bottom: 8.75rem;
}
.py143 {
  padding-block: 8.875rem;
}
.fs12 {
  font-size: 12px;
}
.fs16 {
  font-size: 1rem;
}
.fs18 {
  font-size: 1.125rem;
}
.fs20 {
  font-size: 1.25rem;
}
.fs24 {
  font-size: 1.5rem;
}
.fs22 {
  font-size: 1.375rem;
}
.fs26 {
  font-size: clamp(14px, 1.9vw, 26px);
}
.fs28 {
  font-size: 1.75rem;
}
.fs32 {
  font-size: 2rem;
}
.fs35 {
  font-size: 2.1875rem;
}
.fs38 {
  font-size: 2.375rem;
}
.fs45 {
  font-size: clamp(22px, 3.3vw, 45px);
}
.fs48 {
  font-size: 3rem;
}
.fs60 {
  font-size: 3.75rem;
}
.fs30 {
    font-size: 30px;
}
.text-white {
  color: var(--white);
}
.colorLytGrey {
  color: #eaeaea;
}
.bg_fade {
  background: rgba(255, 255, 255, 0.1);
}
.mainHeading {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}
.discription_ {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
    font-weight: normal;
}
.commonPadding{
  padding: 100px 0;
}
/* \ primary units */
/* navbar */
.header_ .navbar {
    backdrop-filter: blur(34px);
    margin-top: 27px;
    display: inline-block;
    width: 100%;
}

.header_ {
    position: absolute;
    width: 100%;
}
.navbar_inner {
  width: calc(100% - 2.5rem);
  position: fixed;
  top: 1.25rem;
  transform: translateX(-50%);
  left: 50%;
  z-index: 999;
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(44px);
  border: 1px solid #ffffff1a;
  background: #ffffff1a;
  border-radius: 0.875rem;
  z-index: -1;
}
.navbar-brand {
  display: inline-block;
}
.navbar-brand img {
  width: 144px;
  height: 30px;
}
.navdrop_btn {
  color: var(--white);
  background-color: transparent;
  border: none;
  font-size: clamp(12px, 0.875rem, 14px);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  outline: none;
}
.nav_drop_menu {
  background: #ffffff1a;
  border: 1px solid #ffffff1a;
  backdrop-filter: blur(44px);
  padding: 1.1875rem 2.3125rem;
  max-width: fit-content;
  width: 90vw;
  top: 3.2rem !important;
}
.minw470 {
  max-width: 29.375rem;
}
.nav_tab_btns {
  gap: 2.125rem;
  padding-right: 2.375rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.navdrop_inner_btn {
  color: var(--white);
  background-color: transparent;
  border: none;
  font-size: 1rem;
  gap: 0.75rem;
  min-width: 8.5625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  padding-bottom: 15px;
  position: relative;
  transition: all 0.3s linear;
}
.navdrop_inner_btn::before {
  content: "";
  width: 100%;
  top: 100%;
  left: 0;
  height: 1.5px;
  background: linear-gradient(
    277.91deg,
    var(--secondary) 2.6%,
    var(--primary) 97.47%
  );
  z-index: 1;
  position: absolute;
  transition: all 0.3s linear;
}
.navdrop_inner_btn > img {
  filter: invert(1) brightness(10) grayscale(1);
  width: 0.4375rem;
  transition: all 0.3s linear;
}
.navdrop_inner_btn.active {
  color: var(--primary);
}
.navdrop_inner_btn:not(.active)::before {
  opacity: 0;
  width: 0;
}
.navdrop_inner_btn.active > img {
  filter: none;
}
.nav_drop_links {
  flex-direction: column;
  gap: 2.875rem;
}
.nav_drop_links.show.active {
  display: flex;
}
.nav_drop_link {
  font-size: clamp(12px, 0.875rem, 14px);
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.nav_link {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.nav_fade_btn {
    background: #07C0FE;
    border-radius: 16px;
    padding: 10px 33px;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}
/* \ navbar */
/* banner */
.banner {
  background: url(../images/bannerbg.png) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_content {
    min-height: calc(100vh - 48px);
    display: flex;
    justify-content: start;
    align-items: center;
    padding-top: 9.875rem;
    flex-direction: column;
}
.banner_content_text {
    text-align: center;
}
.banner_img {
  width: 100%;
  max-width: 26.6875rem;
  margin: auto;
}

/*  banner */

/* who we are section */
.whoweare_ {
    background: #F7F6F5;
}
/*  who we are section */

/*Capital Flows*/
.custom-wrapper {
  border: 1px solid #eee;
  border-radius: 28px;
}
.vision-card {
  background: #ffeef7;
  border: 1px solid #ff86c7;
}
.mission-card {
  background: #f2e8ff;
  border: 1px solid #9d6bff;
}
/*Capital Flows*/

/* Our Programs */
.program-card {
  border: 1px solid #e9e9e9;
}

.program-icon {
  width: 58px;
  height: auto;
  object-fit: contain;
}
.program-card .discription_ {
    line-height: 21px;
    font-size: 14px;
}
/*Our Programs*/

/* Why work matters*/

.whywork-section {
  background: #f8f8f8;
}

.why-card {
    background: linear-gradient(284.25deg, rgba(1, 177, 234, 0.1) 13.24%, rgba(255, 255, 255, 0.1) 82.91%);
    border-radius: 22px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    border: 1px solid #0000001A;
}

.badge-count {
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
}

.why-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-num {
  font-size: 60px;
  font-weight: 700;
  opacity: 0.08;
  margin-right: 10px;
}

.why-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
}

.why-img {
  width: 140px;
  height: auto;
}

.whySwiper .swiper-slide {
  padding-right: 10px;
}

.whySwiper {
  padding-bottom: 20px;
}

/* Pagination Bar (the thin blue/green bar at bottom) */
.swiper-pagination-progressbar {
  background: #ddd !important;
  height: 4px !important;
}

.swiper-pagination-progressbar-fill {
  background: #00c1ff !important;
}

/*Featured News and project */
.featured-section {
  background: linear-gradient(90deg, #f7ebe8, #e4eff0, #c8e3f7);
  padding-top: 80px;
  padding-bottom: 80px;
}
.project-card {
    border-radius: 16px;
    transition: transform 0.25s ease;
    text-align: left;
    padding: 15px 15px 35px;
}

.project-card:hover {
  transform: translateY(-5px);
}
.project-card h6 {
    color: #242424;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.primarybtn {
    padding: 15px;
    background: #01B7E2;
    color: #fff;
    border-radius: 16px;
    font-size: 16px;
    border: 1px solid transparent;
}
.subprimebtn {
    background: #FF6F61;
    color: #fff;
    border-radius: 16px;
    padding: 17px 20px;
}
.badge-status {
    border-radius: 66px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
}
.yellowStatus {
    background: rgba(255, 174, 0, 0.7);
}
.redStatus {
    background: rgba(255, 111, 97, 0.7);
}
.greenStatus {
    background: rgba(0, 212, 129, 0.7);
}
.primarybtn:hover {
  background-color: transparent;
  border: 1px solid #0d99ff;
  color: #0d99ff;
}
/*Featured News and project */

/* Revolution Section */
.revolution-box {
    background-image: url(../images/revolutionbg.png);
    background-repeat: no-repeat;
    border-radius: 50px;
    background-size: cover;
}
.rev-subtitle {
    font-size: 35px;
    font-weight: 400;
    color: #01B1EA;
}
.rev-title {
    font-size: 88px;
    color: #fff;
    font-weight: 600;
}
/* Revolution SEction */

/* Blog Section */


.blog-card {
    padding-bottom: 26px;
}
.blog-img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    height: 100%;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.tag {
  font-size: 13px;
  background: #eee;
  padding: 6px 14px;
  border-radius: 20px;
}

.date {
  font-size: 13px;
  color: #555;
}
.blog-title {
    margin: 15px 0 31px;
    font-size: 16px;
    font-weight: 600;
    color: #242424;
}
.blog-btn {
  background: #0d99ff;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}

.blog-btn:hover {
  background: #0a82d5;
}
.blogSwiper .swiper-slide {
  width: 330px;
}
/* Faq Section */
.faq-section {
  background: #ffffff;
}
.accordion-item.active-faq {
    background: linear-gradient(90deg, #e9f4ff, #fdecea);
    border-radius: 18px;
    border: none !important;
    padding: 5px 0;
}
.accordion-item.active-faq .accordion-button {
    background: transparent !important;
}
.accordion-item {
    transition: 0.3s ease;
    background: #fff;
}
.faq-card {
  border-radius: 18px;
  background: linear-gradient(90deg, #e9f4ff, #fdecea);
  border: none;
}
.accordion-button {
    background: transparent;
    font-weight: 400;
    font-size: 18px;
    padding: 1.2rem;
}
.accordion-body {
  padding: 1.2rem 1.5rem;
  color: #555;
  font-size: 0.95rem;
}
.accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
}

.accordion-item:first-child {
  border-bottom: none;
}
.accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    line-height: 0;
    transform: none !important;
    border: 1px solid #0000001A;
    border-radius: 27px;
    width: 35px;
    height: 35px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.accordion-button:not(.collapsed)::after {
  content: "−"; 
  font-size: 1.8rem;
}
.accordion-button::after {
  background-image: none !important;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-color: transparent!important;
}
.accordion-item:first-of-type {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* Faq Section */

/* Footer Section */

.footer-section {
  background: #111;
  color: #fff;
}

.footerlogo {
    max-width: 120px;
    width: 100%;
}

.footer-desc {
    max-width: 330px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}

.footer-form input::placeholder {
  color: #777;
}

.email-group {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-form .form-control {
    padding: 13px 2px;
    font-size: 16px;
    color: #fff;
}
.footer-form {
    max-width: 452px;
    width: 100%;
}
.submit-btn {
    background: #01B1EA;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
}

.footer-line {
  border-color: #333;
}
.social-btn {
    display: inline-flex
;
    align-items: center;
    padding: 11px 18px;
    border: 1px solid #444;
    border-radius: 49px;
    color: #ddd;
    text-decoration: none;
    transition: 0.2s;
    font-size: 16px;
    gap: 6px;
}
.social-btn:hover {
  background: #222;
  color: #fff;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links li a {
    color: var(--grey);
    font-size: 16px;
}
.copyrightText{
  color: var(--grey);
  font-size: 16px;
}