@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  font-family: "Josefin Sans", sans-serif;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --tertiary-color: #8230ff;
}
/* common class  */
.container {
  max-width: 1525px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container2 {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-60 {
  width: 60%;
  padding: 0 15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}
.col-40 {
  width: 40%;
  padding: 0 15px;
}
.col-33 {
  width: 33.33%;
  padding: 0 15px;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.col-14 {
  width: 14%;
  padding: 0 15px;
}

/* header section  */
.hdr-sec {
  padding: 50px 0;
  background-color: var(--secondary-color);
  position: relative;
}

nav,
.navbar-collapsed,
.navbar-collapsed > ul {
  display: flex;
  align-items: center;
}
.navbar-collapsed {
  /* margin:  0 auto; */
  text-align: start;
}
.nav-logo {
  max-width: 233.06px;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  margin-left: 50px;
  text-transform: capitalize;
}
.nav-links:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
}
.nav-links {
  position: relative;
}
.nav-links::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tertiary-color);
  /* transition: width 0.3s ease; */
}
.nav-links:hover::after {
  width: 100%;
  transition: 0.5s linear;
}

.nav-btn {
  margin-left: auto;
   display: flex;
  align-items: center;
}
.primary-btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  padding: 16px 14px;
}
.primary-btn:hover {
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(1px);
}


.secondary-btn {
 background-color: var(--tertiary-color);
  padding: 6px 14px;
  color: var(--primary-color);
  font-size: 16px;
   font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  margin-left: 14.38px;
  border: 1px solid var(--tertiary-color);
}

.secondary-btn img {
  border-radius: 50%;
  padding: 1px 5px;
}
.secondary-btn:hover {
  /* border: 1px solid var(--tertiary-color); */
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(1px);
}


.navbar-toggler {
  display: none;
}
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 40px;
  min-width: 200px;
  width: 100%;
  padding: 10px 0;
  display: none;
}
.dropdown-content li a {
  font-size: 16px;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  padding: 6px;
  max-width: 55px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.5s;
}

/* banner section  */
.banner-sec {
  padding: 15px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
}

.banner-content {
  position: relative;
  top: 49px;
  bottom: 57px;
}

.banner-box {
  background-color: var(--tertiary-color);
  max-width: 937px;
  top: 59px;
  position: absolute;
}

.banner-box h1 {
  font-size: 38px;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  padding: 44px 0px 0px 64px;
}
.banner-text {
  text-decoration: underline;
  font-size: 38px;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  padding: 44px 0px 0px 0px;
}
.banner-para {
  font-size: 32px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  padding: 10px 0px 0px 64px;
  line-height: 1.4;
  text-transform: capitalize;
}
.banner-list {
  padding: 22px 64px;
}

.banner-list li {
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  list-style-type: disc;
  list-style-position: inside;
}

.banner-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 17.5px 19.5px;
  font-size: 30px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  margin: 23px 0px 58px 64px;
  box-shadow: 5px 5px 10px #d5befd;
  text-transform: capitalize;
}

.banner-btn:hover {
  border: 2px solid var(--secondary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  cursor: pointer;
}

.play-btn {
  position: absolute;
  bottom: 66px;
  right: 53.5px;
  padding: 25px 26px;
  background: #8230ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn:hover {
  background-color: var(--secondary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  cursor: pointer;
}

.banner-img {
  /* max-width: 687; */
   display: flex;
  justify-content: center;
  align-items: center; 
}
  .banner-img img{
   width: 100%;
   height: 100%;
   object-fit: cover;
  }  
 
/* platform section  */
.platform-sec {
  padding: 80px 0px;
    background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  ); 
}
.platform-sec:hover{
    /* background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  );  */
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}
.platform-sec h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
  max-width: 790px;
  text-transform: capitalize;
  line-height: 1.2;
}
span {
  color: var(--tertiary-color);
}
.platform-sec p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
  max-width: 960px;
  line-height: 1.2;
  padding: 20px 0px 0px 0px;
}
/* investment section  */
.investment-sec {
  padding: 60px 0px;
   
}

.investment-sec h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
  max-width: 360px;
}
.box {
  background-color: var(--secondary-color);
  /* color: var(--primary-color); */
  max-width: 457px;
  margin: 0 auto;
  text-align: center;
}

.box h3 {
  font-size: 70px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  padding: 24px 72.5px;
  margin: 33px 0px 0px 0px;
}
.box h3:hover {
  cursor: pointer;
 
}

.investment-sec p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
  padding: 16px 0px 53px 0px;
}

.stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.stat-item {
  position: relative;
  text-align: center;
  width: 30%;
}

.icon-circle-top {
  width: 140px;
  /* height: 140px; */
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 20px;
  border: 1px dashed #ccc3cc;
}
.icon-circle-mid {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 17px 44px rgba(57, 0, 57, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-circle-inner {
  width: 60px;
  height: 60px;
  padding: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 17px 44px rgba(57, 0, 57, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-circle-inner img {
  width: 50px;
  aspect-ratio: 1;
}
.icon-circle-inner img:hover {
  cursor: pointer;
  transform: rotate(20deg);
  transition: 0.5s linear;
}
/* dotted connector line */
.stat-item::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -50%;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #ccc3cc;
  z-index: -3;
}

.stat-item.last::after {
  display: none;
}
/* funds section  */
.funds-sec {
  /* background-color: var(--secondary-color); */
  background-image: url("../assets/assets/RECT\ IMG.png");
  position: relative;
  /* min-height: 70vh; */
}
.fund-sub-img{
  position: absolute;
  top: 93%;
}
.funds-sec h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  margin: 0 auto;
  text-align: center;
  text-transform: capitalize;
  padding: 60px 0px 0px 0px;
}
.card {
  margin: 28px 0px 48px 0px;
}
.funds-img {
  background-color: #23242e;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.funds-img img {
  position: absolute;
  top: 25px;
  right: 20px;
}
.card p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--tertiary-color);
  text-align: center;
  padding: 25px 0px 0px 0px;
  text-transform: capitalize;
}
/* .card-text{
  display: flex;
  justify-content: center;
  align-items: end;
} */
.card p:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--primary-color);
}
.card-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-text {
  position: relative;
  text-align: center;
}

.card-text.active::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #800080, transparent);
}

.card-text.active::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #800080, transparent);
}
.arrow {
  background: var(--tertiary-color);
  border-radius: 50%;
  padding: 7px 5px;
  margin: 18px 0px 0px 12px;
}
.arrow:hover {
  background-color: var(--primary-color);
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}
/* onboarding section  */
.onboarding-sec {
  background-color: #f8f8f8;
  padding: 79px 0px 0px 0px;
}
.onboarding-sec h2 {
  color: var(--secondary-color);
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  max-width: 639px;
  margin: 0 auto;
  text-transform: capitalize;
}
.onboarding-text {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  padding: 25px 0px 0px 0px;
}
.text1 {
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--tertiary-color);
  text-decoration: underline;
}
.text1:hover{
  cursor: pointer;
  text-decoration:underline;
  color: var(--secondary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.text2 {
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
  margin-left: 34.5px;
}
.text2:hover{
  cursor: pointer;
  text-decoration:underline;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.onboarding-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0px;
}
.onboarding-part h3 {
  color: var(--tertiary-color);
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}
.onboarding-part h4 {
  color: #868686;
  font-size: 18px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}
.onboarding-img {
  position: relative;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border-radius: 50px;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.onboarding-img::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border: 2px dashed #800080;
  border-radius: 50%;
}
.onboarding-img:hover {
  background-color: var(--secondary-color);
  cursor: pointer;
  transition: 0.5s linear;
  transform: rotate(20deg);
}

.onboarding-img1 {
  position: relative;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border-radius: 50px;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.onboarding-img1::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border: 2px dashed #800080;
  border-radius: 50%;
}
.onboarding-img1:hover {
  background-color: rgb(229, 245, 251);
  cursor: pointer;
  transition: 0.5s linear;
  transform: rotate(20deg);
}
.icon:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}

.data-img {
  max-width: 652px;
}

.data-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.data-img img:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}
/* team section  */
.team-sec {
  padding: 80px 0px 0px 0px;
}
.leadership-part {
  display: flex;
  justify-content: space-between;
}
.leadership-part h2 {
  color: var(--secondary-color);
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  max-width: 500px;
  text-transform: capitalize;
}
.leadership-part p {
  max-width: 606px;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}

.members-part {
  background-color: #eef1f2;
  max-width: 211.79px;
  margin: 50px 0px;
}
.members-part:hover{
   background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  ); 
   cursor: pointer;
}
.members-part h3 {
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  padding: 33px 0px 9px 0px;
}
.members-part h3:hover {
  color: var(--tertiary-color);
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(1px);
}
.members-part h4 {
  font-size: 17px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}

.members-img {
  max-width: 214px;
  padding: 52px 0px 0px 0px;
}
.members-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member2,
.member3 {
  margin: 50px 0px;
}
.member2 {
  background-color: var(--secondary-color);
  max-width: 211.79px;
}
.member2:hover{
   /* background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  );  */
   cursor: pointer;
}
.member2 h3 {
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  padding: 33px 0px 9px 0px;
  color: var(--primary-color);
}
.member2 h3:hover {
  color: var(--tertiary-color);
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(1px);
}
.member2 h4 {
  font-size: 17px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  color: var(--primary-color);
}
.member2 p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  text-align: center;
  max-width: 190px;
  color: var(--primary-color);
  padding: 20px 17px 80px 17px;
}
.member3 {
  background-color: #eef1f2;
  max-width: 211.79px;
}
.member3:hover{
   background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  ); 
  cursor: pointer;
}
.member3 h3 {
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  padding: 33px 0px 9px 0px;
  color: var(--secondary-color);
}
.member3 h3:hover {
  color: var(--tertiary-color);
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(1px);
}
.member3 h4 {
  font-size: 17px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  color: var(--secondary-color);
}

.members-img4 {
  max-width: 230px;
  padding: 60px 0px 0px 0px;
}
.members-img4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.members-img5 {
  max-width: 268px;
  padding: 60px 0px 0px 0px;
}
.members-img5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* logo section  */
.logo-sec {
  padding: 30px 0px;
}
.logo-sec h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  color: var(--secondary-color);
}
.brandname1 {
  max-width: 155px;
  padding: 91px 0px 0px 0px;
}
.brandname2 {
  max-width: 155px;
  padding: 78px 0px 0px 0px;
}
.brandname3 {
  max-width: 155px;
  padding: 57px 0px 0px 0px;
}
.brandname4 {
  max-width: 155px;
  padding: 73px 0px 0px 0px;
}
.brandname5 {
  max-width: 155px;
  padding: 60px 0px 0px 0px;
}
.brandname6 {
  max-width: 155px;
  padding: 96px 0px 0px 0px;
}
.brandname7 {
  max-width: 155px;
  padding: 72px 0px 0px 0px;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}
.swiper-slide {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.swiper-pagination {
  display: none;
}
/* footer section  */
.footer-sec {
  background-color: var(--secondary-color);
}
.footer-logo {
  padding: 54.12px 0px 0px 0px;
}
.footer-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  max-width: 418px;
  line-height: 1.4;
  padding: 24px 0px;
}
.footer-btn {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-size: 21px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  padding: 11px 30.5px;
}
.footer-btn:hover {
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.footer-icon1 {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: x-large;
  margin: 37.5px 0px;
}
.footer-icon1:hover {
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.footer-icon2 {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: x-large;
  margin: 37.5px 10.37px;
}
.footer-icon2:hover {
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.footer-title{
  font-size: 20px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  padding: 54.12px 0px 0px 0px;
}
.footer-links {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
  padding: 9.93px 0px 0px 0px;
}
hr {
  margin: 59px 0px 0px 0px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  padding: 20px 0px;
}
.footer-bottom p:hover {
  color: var(--tertiary-color);
}
.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--tertiary-color);
}
/* header media section  */
@media screen and (max-width: 1200px) {
  .navbar-collapsed {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    z-index: 999;
    padding: 20px 0;
  }
  .nav-btn {
    display: none;
  }
  .navbar-toggler {
    display: block;
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--secondary-color);
  }
  .navbar-collapsed ul {
    flex-direction: column;
  }
  .nav-links {
    margin-top: 10px;
    color: var(--secondary-color);
  }
}
@media screen and (max-width: 567px) {
  .nav-logo {
    max-width: 180px;
  }
.navbar-collapsed ul{
  transform: translateX(-18px);
}

}
/* banner media section  */
@media screen and (max-width: 1200px) {
  .banner-content {
    top: 0;
    bottom: 0;
     text-align: center;
  }

  .banner-box {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: auto;
    padding: 60px;
    margin: 0 auto;
  }

  .banner-box h1 {
    font-size: 34px;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
  }
  .banner-text {
    font-size: 34px;
    padding-left: 0;
  }
  .banner-para {
    font-size: 22px;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
    max-width: 400px;
  }

  .banner-list li {
    font-size: 15px;
    margin: 0 auto;
    text-align: center;
  }

 
  .banner-btn {
    display: inline-block;
     margin: 0 auto;
    text-align: center;
    font-size: 20px;
  }
  .col-60,
  .col-40 {
    width: 100%;
  }
  .banner-img {
    width: 100%;
    margin-top: 30px;
  }
  .play-btn {
    position: relative;
    margin: 20px auto 0;
    right: auto;
    bottom: auto;
    width: 55px;
    height: 55px;
  }

  .banner .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .banner {
    padding: 40px 0;
  }

   .banner-content {
    top: 0;
    bottom: 0;
      text-align: center;
  } 

  .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .col-40,
  .col-60 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .banner-img img {
    max-width: 320px;
    width: 100%;
    margin-top: 70px;
  }

  .play-btn {
    width: 45px;
    height: 45px;
    margin-top: 10px;
  }

  .banner-box {
    padding: 30px 20px;
    max-width: 95%;
    margin-top: 80px;
  }

  .banner-box h1 {
    font-size: 20px;
  }
  .banner-text {
    font-size: 20px;
  }
  .banner-para {
    font-size: 16px;
    line-height: 1.4;
    max-width: 250px;
  }

  .banner-list li {
    font-size: 10px;
    line-height: 1.2;
    max-width: 350px;
  }

  .banner-btn {
    display: inline-block;
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
  }
  
}

/* platform media section  */
@media screen and (max-width: 758px) {
  .platform-sec h2 {
    font-size: 35px;
    margin: 0 auto;
    text-align: center;
  }
  .platform-sec p {
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
  }
}
/* investment media section  */
@media screen and (max-width: 768px) {
  .icon-circle-top {
    width: 120px;
    height: 120px;
  }
  .icon-circle-mid {
    width: 100px;
    height: 100px;
  }
  .icon-circle-inner {
    width: 40px;
    height: 40px;
    padding: 20px;
  }
  .icon-circle-inner img {
    width: 35px;
    height: 35px;
  }
  .stat-item::after {
    top: 60px;
  }
}

@media screen and (max-width: 576px) {
  .investment-sec h2 {
    font-size: 35px;
  }

  .investment-sec h3 {
    font-size: 30px;
  }
  .box {
    max-width: 370px;
  }
  .icon-circle-top {
    width: 60px;
    height: 60px;
  }
  .icon-circle-mid {
    width: 50px;
    height: 50px;
  }
  .icon-circle-inner {
    width: 20px;
    height: 20px;
    padding: 10px;
  }
  .icon-circle-inner img {
    width: 20px;
    height: 20px;
  }
  .stat-item::after {
    top: 30px;
  }

  .stat-item h2 {
    font-size: 25px;
  }
  .stat-item p {
    font-size: 14px;
  }
}
/* funds media section  */
@media screen and (max-width: 1200px){
  .fund-sub-img{
    position: absolute;
    top: 97%;
  }
}
@media screen and (max-width: 993px) {
  .funds-sec {
    background-image: none;
    background-color: var(--secondary-color);
  }
  .funds-sec h2 {
    font-size: 35px;
  }
  .funds-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .arrow {
    border-radius: 50px;
    padding: 5px 5px;
  }
}
/* onboarding media section  */
@media screen and (max-width: 1200px) {
  .onboarding-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .data-img{
     margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 758px) {
  .onboarding-sec h2 {
    margin: 0 auto;
    text-align: center;
    font-size: 35px;
    line-height: 1.2;
  }

  .onboarding-text {
    margin: 0 auto;
    text-align: center;
  }
  .text1,
  .text2 {
    font-size: 20px;
  }
  .onboarding-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .data-img {
    text-align: center;
    margin: 0 auto;
  }
  .onboarding-img::before {
    width: 45px;
    height: 45px;
  }
  .onboarding-img {
    width: 40px;
    height: 40px;
  }
  .onboarding-img1::before {
    width: 45px;
    height: 45px;
  }
  .onboarding-img1 {
    width: 40px;
    height: 40px;
  }
  .onboarding-part h3 {
    font-size: 18px;
  }
  .onboarding-part h4 {
    font-size: 14px;
  }
}

/* team media section  */
@media screen and (max-width: 1200px) {
  .member-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .leadership-part {
    flex-direction: column;
    align-items: flex-start;
  }

  .leadership-part h2 {
    font-size: 35px;
    line-height: 1.4;
    margin: 0 auto;
    text-align: center;
  }

  .leadership-part p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .leadership-part {
    flex-direction: column;
    align-items: flex-start;
  }

  .leadership-part h2 {
    font-size: 30px;
    line-height: 1.4;
    margin: 0 auto;
    text-align: center;
  }

  .leadership-part p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    max-width: 300px;
  }
}
/* logo media section   */
/* @media screen and (max-width:1200px){
   .logo-sec h2{
    font-size: 40px;
   }
  .logo-c{
      width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
   justify-content: center;
}
} */
/* footer media section  */
@media screen and (max-width: 1200px) {
  .footer-logo {
    font-size: medium;
  }
  .footer-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .footer-text {
    margin: 0 auto;
    text-align: center;
  }
  hr {
    margin-top: 20px;
  }
}
