body {
  font-family: "Asap", sans-serif;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--color-1E1E1E);
}

p,
a,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease-in;
}

p {
  color: rgba(0, 0, 0, 0.75);
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-bottom: 10px;
}

input,
select,
textarea {
  width: 100%;
}

input[type="checkbox"] {
  height: auto;
  width: auto;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-tranaparent: #0000;
  --color-1E1E1E: #1e1e1e;
  --color-000000BF: #000000bf;
  --color-505050: #505050;
  --color-F2F5F9: #f2f5f9;
  --color-0B1A31: #0b1a31;
  --color-F5F7F8: #f5f7f8;
  --color-7B7C7C: #7b7c7c;
  --gradient-right: linear-gradient(90deg, #0b1a31 0%, #7b9fc4 100%);
  --gradient-left: linear-gradient(90deg, #7b9fc4 0%, #0b1a31 100%);
  --fs-55: 55px;
  --lh-65: 65px;
  --fs-25: 25px;
  --lh-35: 35px;
  --fs-20: 20px;
  --fs-24: 24px;
  --fs-18: 18px;
  --fs-30: 30px;
  --fs-40: 40px;
  --fs-16: 16px;
  --lh-30: 30px;
  --lh-28: 28px;
  --lh-40: 40px;
}

/* HEADER  */

.custom-header {
  position: fixed;
  background: var(--color-white);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--color-grey);
  /* padding: 25px 0px; */
}

.main-logo {
  max-width: 260px;
  width: 100%;
}

.grid-headers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

ul.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

ul.account-lists {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 100%;
  max-width: fit-content;
}

.no-phone {
  max-width: fit-content;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
}

ul.nav-list li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  transition: 0.2s linear;
}

ul.nav-list li.menu-item-has-children {
  position: relative;
  padding-right: 15px;
}

ul.nav-list li.menu-item-has-children::after {
  content: "";
  height: 6px;
  width: 6px;
  right: 0px;
  top: 50%;
  border-bottom: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  cursor: pointer;
}

ul.sub-menu {
  position: absolute;
  width: 1435px;
  padding-bottom: 0px;
  left: -980px;
  border: none;
  background: rgba(245, 247, 248, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  top: 100%;
  display: none;
}

.main-mega-menu {
  padding: 25px 35px;
}

.main-mega-menu {
  display: flex;
}

.links-menu {
  display: flex;
  padding-top: 40px;
}

.mega-menu-title h3 {
  color: #1e1e1e;
  /* font-family: Poppins; */
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.mega-menu-title p {
  padding-bottom: 0px;
  max-width: 280px;
  width: 100%;
  color: #505050;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  /* 112.5% */
}

.mega-menu-title {
  padding-right: 90px;
}

.links-menu ul {
  padding: 0px 36px;
  border-left: 1px solid #d9d9d9;
}

.links-menu ul li a {
  color: #7b7c7c;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 112.5% */
}

.links-menu ul li {
  list-style: disc;
}

.links-menu ul li::marker {
  color: #7b7c7c;
}

ul.nav-list li {
  padding: 43px 0px;
}

ul.nav-list .links-menu ul li {
  padding: 0px;
}

ul.nav-list li.menu-item-has-children:nth-last-child(2) ul.sub-menu {
  width: 1428px;
  left: -1060px;
}

ul.nav-list
  li.menu-item-has-children:nth-last-child(2)
  ul.sub-menu
  .mega-menu-title {
  max-width: 450px;
  width: 100%;
}

ul.nav-list
  li.menu-item-has-children:nth-last-child(2)
  ul.sub-menu
  .mega-menu-title
  p {
  max-width: 350px;
}

ul.nav-list li ul.sub-menu li {
  padding: 0;
}

/* ul.sub-menu li{
    list-style: disc;
} */

@keyframes submenu {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

ul.sub-menu li a {
  display: block;
}

li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
  left: 100%;
  top: 0;
}

li.menu-item-has-children .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  padding-top: 0px;
}

.no-phone a {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-323D5B);
}

.menu-icon {
  max-width: 35px;
  width: 100%;
  display: none;
}

.margin-top {
  margin-top: 110px;
}

/* HEADER END */

/* MENU ICON ANIMATED  */
.bars {
  width: 40px;
  cursor: pointer;
  background: var(--color-black);
}

header.custom-header.inner .bars {
  background: var(--color-white);
}

header.custom-header.inner .grid-header.white .bars {
  background: var(--color-black);
}

header.custom-header.inner .grid-header.white .bars .line {
  stroke: var(--color-white) !important;
}

header.custom-header.inner .bars .line {
  stroke: var(--color-black);
}

header.custom-header.inner .menuicon-grid span {
  color: var(--color-white);
}

.bars .line {
  fill: none;
  stroke: var(--color-white);
  stroke-width: 4;
  stroke-linecap: square;
  transition: stroke-dasharray 400ms, stroke-dashoffset 1s;
}

.bars .line.top {
  stroke-dasharray: 40 172;
}

.bars .line.middle {
  stroke-dasharray: 40 111;
}

.bars .line.bottom {
  stroke-dasharray: 40 172;
}

.bars.active .top {
  stroke-dashoffset: -132px;
}

.bars.active .middle {
  stroke-dashoffset: -71px;
}

.bars.active .bottom {
  stroke-dashoffset: -132px;
}

/* MENU ICON ANIMATED END */

/* HOME FINANCING MAIN SEC  */

section.financing-sec {
  padding: 45px 0px 100px 0px;
}

.financing-image {
  max-width: 836px;
  width: 100%;
  margin-left: auto;
}

.financing-holder {
  max-width: 560px;
  width: 100%;
}

.fs-55 {
  font-size: var(--fs-55);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-65);
  padding-bottom: 20px;
}

.fs-25 {
  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-35);
  padding-bottom: 10px;
}
.universal-anchor button,
.universal-anchor a {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  padding: 13px 0px;
  border-radius: 5px;
  text-decoration: none;
  background: linear-gradient(90deg, #0b1a31 0%, #7b9fc4 50%, #0b1a31 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.4s ease-in-out;
  display: block;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.universal-anchor button {
  border: none;
  outline: none;
}

.universal-anchor {
  max-width: 230px;
  width: 100%;
}
.universal-anchor button:hover,
.universal-anchor a:hover {
  background-position: 100% 0%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.financing-holder .universal-anchor {
  padding-top: 30px;
}

/* HOME FINANCING MAIN SEC END */

/* DIGIT SEC  */
.grid-digit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  padding: 80px 60px 80px 0px;
}

.grid-digit.left-datas {
  padding: 80px 0px 80px 60px;
}

.grid-digit::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 72%;
  background: var(--color-F5F7F8);
  z-index: -1;
}

.digit-details {
  max-width: 50%;
  width: 100%;
}

.image-digit {
  max-width: 38%;
  width: 100%;
}

.grid-button {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 60px;
}

.fs-20 {
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30);
  padding-bottom: 10px;
}

.universal-anchor.borders a {
  position: relative;
  display: inline-block;
  color: var(--color-0B1A31);
  background: transparent;
  border: 1px solid var(--color-0B1A31);
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.universal-anchor.borders a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0b1a31, #7b9fc4, #0b1a31);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.universal-anchor.borders a:hover::before {
  opacity: 1;
}

.universal-anchor.borders a:hover {
  color: var(--color-white);
  border-color: 1px solid transparent;
}

.image-containers {
  max-width: fit-content;
  margin: 0 auto;
}

section.doubledigit-sec {
  padding: 80px 0px;
}

/* DIGIT SEC END */

/* OUR PARTNERS MAIN SEC  */
.ourpartner-holder {
  max-width: 725px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.section-padding {
  padding: 80px 0px;
}

.slider-holders {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
}

.partner-image {
  max-width: fit-content;
  margin: 0 auto;
  width: 100%;
}

.slider-holders .swiper-wrapper {
  align-items: center;
}

section.ourpartners-sec .universal-anchor {
  margin: 0 auto;
  padding-top: 80px;
}

/* OUR PARTNERS MAIN SEC END */

/* ESSTETE SLIDER MAIN SEC  */
.grid-realestate {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.contain-estate {
  background: var(--color-F5F7F8);
  padding: 35px 19px;
  max-width: 309px;
  width: 100%;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.icon-state {
  max-width: fit-content;
  margin-bottom: 20px;
  width: 100%;
}

.learn-more a {
  color: var(--color-0B1A31);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.real-esteteimage {
  max-width: 32%;
  width: 100%;
}

.estete-sliders {
  padding-top: 55px;
  transform: translateX(-10%);
}

.details-realestate {
  max-width: 68%;
  width: 100%;
}

.top-estate-holders {
  max-width: 735px;
  width: 100%;
  margin-left: 10%;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after {
  font-size: 12px;
  color: var(--color-7B7C7C);
  padding: 18px;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-7B7C7C);
  font-weight: 600;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
  position: static;
}

.slider-btn {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  max-width: fit-content;
  margin-top: 50px;
  margin-left: 27%;
}

/* ESSTETE SLIDER MAIN SEC END */

/* LENDCART FUNDING MAIN SEC  */
.grid-digit.left-datas {
  flex-direction: row-reverse;
}

.grid-digit.left-datas::after {
  right: initial;
  left: 0;
}

/* LENDCART FUNDING MAIN SEC END */

/* FOOTER  */
.custom-footer {
  padding-top: 60px;
}

.custom-footer .links .fs-20 {
  color: #1e1e1e;
  font-style: normal;
  font-weight: 400;
}

.custom-footer .links ul li a {
  color: #505050;

  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 156.25% */
}

ul.Solutions {
  max-width: 380px;
  width: 100%;
}

ul.Solutions li {
  list-style: disc;
}

.footer-logo {
  padding-bottom: 33px;
}

.footer-logo p {
  font-size: var(--fs-18);
}

.footer-links {
  display: flex;
  gap: 122px;
}

.footer-details {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

footer.custom-footer {
  background: var(--color-F5F7F8);
}

.copyrightd-footer {
  border-top: 1px solid var(--color-black);
  padding: 25px 0px;
}

.copyrightd-footer p {
  padding-bottom: 0px;
}

.grid-copyrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

footer.custom-footer a,
footer.custom-footer p {
  color: var(--color-black);
}

ul.sub-menu li {
  padding: 0px;
}

.grid-copyrights p {
  font-size: var(--fs-18);
}

/* FOOTER END */

/* INNER BANNER START  */
.inner-banner {
  padding: 40px 0px;
}

.banner-data {
  display: flex;

  width: 100%;
  margin: 0 auto;
  background: rgba(123, 159, 196, 0.1);
  align-items: center;
  height: 670px;
}

.banner-img,
.banner-content {
  width: 50%;
  height: 100%;
}

.banner-content {
  padding: 0px 50px;
  display: flex;
  align-items: center;
}

.banner-content p {
  max-width: 635px;
  width: 100%;
  font-size: var(--fs-20);
  line-height: var(--lh-30);
  padding-bottom: 30px;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INNER BANNER END  */

/* LEND CART STEP START */
.step {
  padding-top: 54px;
  padding-bottom: 90px;
}

.lend-cart-step {
  margin: 0 auto;
  display: flex;
  gap: 67px;
  align-items: flex-end;
}

.step-img {
  max-width: 457px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.fs-40 {
  color: #1e1e1e;
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.step-content {
  width: 100%;
}

.step-content p {
  max-width: 735px;
  width: 100%;
}

.step-list {
  padding-top: 35px;
}

.step-list ul {
  display: flex;
  column-gap: 124px;
  row-gap: 43px;
  flex-wrap: wrap;
}

.step-list ul li {
  max-width: 380px;
  width: 100%;
  background: #f5f7f8;
  border-left: 1px solid #000;
}

.step-details {
  padding: 20px;
  padding-bottom: 25px;
}

.icon {
  width: fit-content;
  margin-left: auto;
  margin-bottom: 13px;
}

.title h3 {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.title h3 p {
  padding: 0px;
  color: #505050;
  font-size: var(--fs-30);
  font-weight: 500;
  line-height: var(--lh-40);
  /* 133.333% */
}

.title h3 span {
  color: #505050;
  font-size: 100px;
  font-style: normal;
  font-weight: 600;
  line-height: 100px;
  /* 100% */
}

/* LEND CART STEP END */

/* FAQ START */
.tite-faq {
  max-width: 824px;
  width: 100%;
  padding-right: 120px;
  padding-top: 43px;
  padding-bottom: 43px;
  background: rgba(123, 159, 196, 0.2);
  text-align: right;
  margin-bottom: 32px;
}

ul.accordion {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 0px;
  cursor: pointer;
}

.arrow {
  width: 21px;
  height: 21px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow img {
  position: absolute;
  transition: 0.3s ease-in;
}

.accordion-header p {
  padding-bottom: 0px;
  color: #000;

  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-40);
  /* 133.333% */
}

ul.accordion li {
  border-bottom: 1px solid #7b7c7c;
}

.accordion-content {
  padding-bottom: 25px;
}

ul.accordion li:last-child {
  border-bottom: none;
}

.accordion-header.active img.plus {
  opacity: 0;
}

.faq {
  padding-bottom: 35px;
}

/* FAQ END */

/* inner banner two */

.inner-banner.inner-banner-2 .banner-data {
  height: 670px;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner.inner-banner-2 .banner-data .full-content .fs-55 {
  color: #fff;
}

.inner-banner.inner-banner-2 .banner-data .full-content p {
  color: #fff;
  max-width: 620px;
}

.invest-step {
  background: #f5f7f8;
  padding: 50px;
  display: flex;
  gap: 28px;
}

.step-title {
  max-width: 485px;
  width: 100%;
}

.step-title .fs-40 {
  margin-bottom: 25px;
}

.step-title p {
  font-size: var(--fs-20);
  line-height: var(--lh-30);
  margin-bottom: 40px;
}

.main-title {
  display: flex;
  flex-wrap: wrap;
  row-gap: 65px;
}

.step-data {
  max-width: 445px;
  width: 100%;
  padding: 0px 35px;
  border-left: 1px solid #505050;
}

.step-data h3 {
  color: #1e1e1e;
  /* font-family: "Open Sans"; */
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-40);
  /* 133.333% */
  margin-bottom: 20px;
}

.investing-step {
  padding-bottom: 60px;
}

/* inner banner three */

/* Why invest */
.invest-content {
  padding-top: 35px;
}

.invest-content b {
  color: #1e1e1e;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  padding-bottom: 15px;
  line-height: var(--lh-30);
  /* 166.667% */
  display: block;
}

.invest-content p {
  color: #505050;
  font-weight: 400;
}

.points {
  padding-top: 35px;
  padding-bottom: 35px;
}

.fs-30 {
  font-size: var(--fs-30);
  line-height: var(--lh-40);
}

.points .fs-30 {
  color: #7598bc;
  padding-bottom: 35px;
}

.points ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 95px;
}

.points ul li {
  background: #f5f7f8;
  width: 46.8%;
}

.point-details {
  padding: 15px 45px;
  position: relative;
}

.points ul li .point-details::after {
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 27px;
  z-index: 9;
  background: #505050;
}

.points ul.list-points {
  column-gap: 50px;
  row-gap: 15px;
  padding-top: 15px;
}

.points ul.list-points li {
  width: 48.3%;
  border-left: 1px solid #000;
}

.points ul.list-points li:last-child {
  background-color: #fff;
  padding: 15px 45px;
  border-left: none;
}

.point-details h3 {
  color: #505050;
  font-weight: 600;
  /* 150% */
  font-size: var(--fs-18);
  padding-bottom: 5px;
}

.normal-points ul.list {
  column-gap: 60px;
  row-gap: 40px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 65px;
  padding-bottom: 75px;
}

.normal-points ul.list li {
  width: 48%;
}

.points-other h3 {
  color: #7b9fc4;
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-40);
  /* 133.333% */
  margin-bottom: 15px;
}

.normal-points ul.list li ul.disc li {
  width: 100%;
  padding-bottom: 10px;
  list-style: disc;
  color: #505050;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-28);
  /* 150% */
}

.normal-points ul.list li ul.disc {
  margin-left: 20px;
}

.tite-faq.w-1160 {
  max-width: 1400px;
  padding-right: 150px;
}

.main-list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.main-list li {
  width: 48.5%;
}

.main-list li ul li {
  width: 100%;
}

.main-list li {
  list-style: disc;
}

.main-list li h3 {
  color: #7b9fc4;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 150% */
  padding-bottom: 15px;
}

.main-list li {
  color: #505050;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  padding-bottom: 10px;
}

.main-list li ul {
  margin-left: 30px;
}

.main-list li::marker {
  color: #7b9fc4;
}

.main-list li ul li::marker {
  color: #000;
}

.main-list {
  padding-bottom: 60px;
}

.concluding-content {
  background: #f5f7f8;
  padding: 42px 78px;
}

.concluding-content .fs-30 {
  color: #1e1e1e;
  text-align: center;
  padding-bottom: 15px;
  font-weight: 600;
}

.concluding-content p {
  text-align: center;
}

.concluding-remarks {
  padding-bottom: 60px;
}

/*why invest */

/* main css bold */

.invest-content.bold b {
  font-weight: 600;
}

.invest-content.bold ul li b {
  display: inline;
}

.invest-content.bold ul li {
  color: #505050;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  padding-bottom: 15px;
}

.invest-content.bold ul {
  padding-top: 20px;
}

.invest-content.bold {
  padding-bottom: 45px;
}

.login-authetication {
  height: 385px;
  background: #f5f7f8;
  margin-bottom: 40px;
}

.login-authetication .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-login .fs-40 {
  text-align: center;
  margin-bottom: 15px;
}

.main-login p {
  color: #505050;
  font-size: var(--fs-24);
  font-style: normal;
  text-align: center;
  font-weight: 400;
  line-height: var(--lh-40);
  /* 153.846% */
}

.main-login .grid-button {
  padding-top: 40px;
}

.invest-content .fs-30 {
  padding-bottom: 10px;
}

.key-features {
  padding-top: 40px;
}

.key-features ul li {
  list-style: disc;
  margin-left: 25px;
  padding-bottom: 5px;
  color: #505050;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 150% */
}

.key-features ul {
  padding-bottom: 25px;
}

.key-features-img {
  display: flex;
  padding-top: 30px;
  padding-bottom: 20px;
  align-items: center;
  gap: 236px;
  position: relative;
  z-index: 0;
  margin-bottom: 120px;
  margin-top: 42px;
}

.key-features-img strong {
  color: #505050;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30);
  /* 125% */
}

.key-features-img ul {
  padding-top: 20px;
  margin-left: 25px;
}

.key-features-img ul li {
  color: #505050;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-28);
  /* 150% */
  padding-bottom: 5px;
  list-style: decimal;
}

.key-features-img .fs-30.pt {
  padding-top: 20px;
}

.key-features-img::after {
  position: absolute;
  width: 70%;
  right: 0;
  z-index: -1;
  height: 100%;
  background: rgba(123, 159, 196, 0.1);
  top: 0;
  content: "";
}

.benefits-process {
  display: flex;
  justify-content: space-between;
}

.benefits-process h3 {
  color: #000;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 166.667% */
  padding-bottom: 10px;
}

.benefits-process ul li {
  color: #505050;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 150% */
  list-style: disc;
  margin-left: 25px;
  padding-bottom: 5px;
}

.benefits-process span {
  color: #505050;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30);
  /* 125% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: block;
  margin-bottom: 20px;
}

.benefits-process ul.decimal li {
  list-style: decimal;
}

.benefits-process {
  padding-bottom: 50px;
}

.pension {
  background: #f5f7f8;
  padding: 40px;
}

.pension .fs-30 {
  text-align: center;
  padding-bottom: 15px;
}

.pension p {
  text-align: center;
}

.trem-condtion-data {
  padding-bottom: 0px;
  text-align: center;
  padding-top: 40px;
  color: #000;
}

.invest-content {
  padding-bottom: 40px;
}

/* main css end */
/* partnes css start */
.all-even-odd .key-features-img {
  gap: 88px;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-left: 50px;
  /* padding-top: 100px;
  padding-bottom: 100px; */
  padding-top: 30px;
  padding-bottom: 30px;
}

.all-even-odd .key-features-img::after {
  left: 0px;
}

.all-even-odd .key-features-img .key-fetaures-content {
  max-width: 767px;
  width: 100%;
}

.all-even-odd .key-features-img .key-fetaures-content strong {
  padding-bottom: 50px;
  display: block;
}

.all-even-odd .key-features-img .key-fetaures-content p {
  padding-bottom: 50px;
}

.all-even-odd .invest-content .fs-30 {
  padding-bottom: 15px;
}

.all-even-odd .key-features-img:nth-child(even) {
  flex-direction: row;
  padding-right: 50px;
  padding-left: 0px;
}

.all-even-odd .key-features-img:nth-child(even)::after {
  right: 0;
  left: auto;
}

.all-even-odd .key-features-img {
  margin-bottom: 90px;
}

.all-even-odd .key-features-img:last-child {
  margin-bottom: 0px;
}

.invest-content.main-mb {
  padding-bottom: 20px;
}

/* partenrs css end */

/* our experts */

.our-expert {
  background: rgba(123, 159, 196, 0.1);
  padding-top: 50px;
  padding-bottom: 126px;
  margin-top: 60px;
}

.header-expert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 90px;
}

.team {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.team-cart {
  position: relative;
  max-width: 330px;
  width: 100%;
  height: 375px;
}

.team-cart .content {
  position: absolute;
  background: #f2f5f9;
  bottom: 0px;
  right: 0;
  width: 86%;
  padding: 23px 20px;
  border-left: 1px solid #000;
}

.team-cart .content h3 {
  color: #505050;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-40);
  /* 133.333% */
}

.team-cart .content p {
  color: #7b7c7c;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 166.667% */
}

/* our experts end */

.invest-content.shariah .fs-30 {
  padding: 20px 0px;
}

.invest-content.shariah p {
  padding-bottom: 20px;
}

.invest-content.shariah ul li {
  list-style: disc;
  color: #505050;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 150% */
  padding-bottom: 15px;
}

.invest-content.shariah ul {
  margin-left: 30px;
}

.hr {
  padding: 0px 30px;
}

.hr hr {
  margin: 10px 0px;
}

/* conatct us */

.contact-us-form {
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
  padding: 100px;
  background: rgba(123, 159, 196, 0.2);
}

.input-feilds {
  margin-bottom: 15px;
  display: flex;
  gap: 30px;
}

.input-value {
  width: 50%;
}

.input-value label {
  color: rgba(0, 0, 0, 0.75);
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  padding-bottom: 10px;
}

.input-value input {
  padding: 10px;
  border: 1px solid #c4c4c4;
  outline: none;
}

.input-title label span {
  color: rgba(0, 0, 0, 0.75);
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  display: block;
}

.input-title label {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.contact-us-form h2 {
  font-weight: 500;
  font-size: var(--fs-30);
  font-style: normal;
  line-height: var(--lh-40);
  /* 125% */
  margin-bottom: 20px;
}

.input-title .submit-btn {
  max-width: 173px;
  width: 100%;
  position: relative;
  margin-left: auto;
  z-index: 0;
}

.input-title .submit-btn input {
  padding: 0px;
  border: none;
  outline: none;
  padding: 10px;
  background-color: transparent;
  color: #fff;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
}

.input-title .submit-btn::after {
  border-radius: 5px;
  background: linear-gradient(90deg, #7598bc 0%, #364656 100%);
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
}

.contact-us {
  padding-bottom: 50px;
}

.contact-us-info {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 90px;
  padding-top: 90px;
}

.contact-us-info .info {
  padding-left: 50px;
  border-left: 1px solid #000;
  padding-top: 8px;
  padding-bottom: 8px;
}

.contact-us-info .info h3 {
  color: #1e1e1e;
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-35);
  /* 166.667% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 20px;
}

.contact-us-info .info a,
.contact-us-info .info span {
  display: block;
  color: #505050;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30);
  /* 125% */
}

.contact-us-info .info p,
.contact-us-info .info a {
  color: #505050;
  font-weight: 600;
  padding-bottom: 0px;
  margin-bottom: 30px;
}

.faq.pt {
  padding-top: 40px;
}

.input-title {
  padding-top: 20px;
}

/* contact us */

/* chat bot*/

.chat-with-us {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.chat-with-us img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inner-banner.inner-banner-2
  .banner-data
  .banner-content.w-100
  .full-content
  p {
  max-width: 100%;
}

.term-condtion-content h4 {
  font-size: var(--fs-25);
  line-height: var(--lh-35);
  /* font-family: Poppins, sans-serif; */
  padding: 15px 0px;
  font-weight: bold;
}

.term-condtion-content p {
  font-size: var(--fs-18);
  line-height: var(--lh-28);
  padding-bottom: 15px;
  font-weight: 400;
}

.inner-banner.inner-banner-2.p p {
  padding-bottom: 10px;
}

/* news page css end */

.top-header {
  border-bottom: 1px solid #c4c4c4;
}

.top-header ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.top-header ul li {
  padding: 10px 0px;
}

.top-header ul li a {
  font-size: var(--fs-18);
  line-height: var(--lh-30);
  color: #061a32;
}

.all-news {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.news-tab {
  width: 10%;
}

.news-tab ul {
  padding: 15px 0px;
  border-left: 1px solid #c4c4c4;
}

.news-tab ul li {
  padding: 10px 30px;
  font-size: var(--fs-16);
  line-height: var(--lh-28);
  font-weight: 400;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in;
}

.news-tab ul li.active::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: #000;
  left: -1px;
  top: 0;
  transition: 0.3s ease-in;
}

.news-tab ul li.active {
  font-weight: bold;
}

.news-cart {
  display: flex;
  gap: 20px;
  padding: 30px;
  background-color: #f5f7f8;
  width: 90%;
  flex-wrap: wrap;
  display: none;
}

.news-cart-data {
  max-width: 385px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
}

.news-cart-data .fs-20 {
  font-weight: 500;
}

.news-cart-data span {
  font-size: var(--fs-16);
  line-height: var(--lh-28);
  display: block;
  padding-bottom: 10px;
}

.news-cart-data p {
  font-size: var(--fs-16);
  line-height: 25px;
  height: 150px;
}

.news-cart-data a {
  font-size: var(--fs-16);
  display: block;
  color: #061a32;
  padding-right: 30px;
  width: fit-content;
  position: relative;
}

.news-cart-data a::after {
  width: 10px;
  height: 10px;
  border: 1px solid #061a32;
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: none;
  border-left: none;
}

.news-cart.curent {
  display: flex;
}

.alllist-media ul li {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
  background-color: #f5f7f8;
}

.media-img {
  max-width: 600px;
  width: 100%;
}

.alllist-media ul li:nth-child(even) {
  flex-direction: row-reverse;
}

.alllist-media ul li:nth-child(odd) h2,
.alllist-media ul li:nth-child(odd) p {
  text-align: right;
}

.alllist-media ul li:nth-child(odd) .universal-anchor {
  margin-left: auto;
}

.media-content {
  max-width: 100%;
  width: 100%;
  padding: 20px;
}

.media-content .fs-30 {
  padding: 20px 0px;
}

.media-content a {
  display: block;
  margin: 20px 0px;
}

section.media-section {
  padding-bottom: 50px;
}

.top-header ul li {
  position: relative;
}

.top-header ul li.active::after {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -1px;
}

.top-header ul li.active a {
  font-weight: bold;
}

.inner-banner.inner-banner-2 .banner-data {
  position: relative;
  z-index: 0;
}

.inner-banner.inner-banner-2 .banner-data::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background: linear-gradient(270deg, rgba(123, 159, 196, 0) 0%, #1e1e1e 100%),
    url(<path-to-image>) lightgray 50% / cover no-repeat;
  mix-blend-mode: multiply;
  z-index: -1;
}

.login-signup {
  position: fixed;
  top: 0;
  top: 50px;
  right: 50px;
  max-width: 450px;
  width: 100%;
  z-index: 1200;
  background: #ffff;
  padding-bottom: 15px;
  padding-right: 15px;
  transform: translateX(150%);
  transition: 0.3s ease-in;
}

.lgin-process {
  display: flex;
  align-items: center;
}

.lgin-process ul {
  padding: 0px;
  margin: 0px;
}

.lgin-process ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #adb5bd;
  max-width: 192px;
  width: 100%;
}

.lgin-process ul li:last-child a {
  border-bottom: none;
}

.lgin-process ul li {
  padding-left: 32px;
  padding-right: 10px;
  background: #f5f7f8;
}

.login-link span {
  color: #0b1a31;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.login-link p {
  color: #505050;
  padding-top: 5px;
  padding-bottom: 0px;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  /* 116.667% */
}

.login-process-start {
  max-width: 234px;
  width: 100%;
}

.login-process-start .forget-password {
  color: #7b7c7c;
  display: block;

  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  width: fit-content;
  margin: 0 auto;
  margin-top: 12px;
}

.logo-login {
  padding: 15px 0px;
}

.logo-login img {
  margin: 0 auto;
  display: block;
}

.login-img {
  width: 200px;
  height: 200px;
}

.login-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-span {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 1100;
  width: 100%;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
}

.key-features-img.gap-flex {
  gap: 130px;
  padding-right: 50px;
}

/* new woork css start */

/*login-process-poup  css start */

.login-process-poup {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 1250;
  background: #ffff;
  max-width: 550px;
  width: 100%;
  transform: translateX(150%);
  transition: 0.3s ease-in;
  padding: 25px;
}

.login-process-poup .main-logo {
  display: block;
  margin: 0 auto;
}

.login-process {
  padding-top: 15px;
}
.login-prcess label {
  font-size: var(--fs-16);
  line-height: var(--lh-28);
  margin-bottom: 4px;
}
.login-prcess {
  margin-bottom: 15px;
}
.login-prcess select,
.login-prcess input {
  border: 1px solid #c4c4c4;
  padding: 10px 15px;
  font-size: 15px;
}
.forget-passwrd a {
  color: #000;
  display: block;
  width: fit-content;
  margin-bottom: 20px;
}
.login-process-poup .fs-20 {
  margin-top: 20px;
  padding-bottom: 0px;
}

/* custom radio button */

/* The container */
.container-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
  /* top: 9px;
	left: 9px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
/*login-process-poup  css end */
.login-process-poup.register {
  max-width: 900px;
}
.fs-18 {
  font-size: var(--fs-18);
  line-height: var(--lh-28);
}

.register-type {
  display: flex;
  padding-top: 15px;
  gap: 15px;
  padding-bottom: 15px;
}

.container-radio {
  margin-bottom: 0px;
  font-size: var(--fs-16);
}

.input-full-details {
  display: flex;
  gap: 15px;
}

.input-full-details .login-prcess {
  width: 50%;
}

.login-prcess.login-prcess-type {
  display: flex;
  gap: 10px;
}

span.close-poup {
  position: absolute;
  top: 15px;
  left: 15px;
  cursor: pointer;
  color: red;
  font-size: 25px;
}

/*  profile css start */

.profile-header {
  max-width: 350px;
  width: 100%;
  padding: 50px 0px;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
  border-left: 4px solid gray;
}
.profile-header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0b1a31e3;
  z-index: -1;
}

.profile-header ul {
  padding: 0px;
  margin: 0px;
}

.profile-header ul li a {
  padding: 30px 30px;
  border-bottom: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  position: relative;
  z-index: 2;
}
.profile-header ul li.active a::after {
  position: absolute;
  left: -4px;
  width: 4px;
  height: 100%;
  content: "";
  top: 0;
  z-index: -1;
  background-color: #0b1a31;
}
section.profile {
  padding: 60px 0px;
}

.profile-header ul li a {
  display: flex;
  position: relative;
  align-items: center;
  gap: 5px;
}

.profile-header ul li a strong {
  font-size: var(--fs-18);
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.profile-header ul li.active {
  background-color: #fff;
}
.profile-header ul li.active strong {
  color: #061a32;
}
.profile-header ul li .checkmark {
  width: 25px;
  height: 25px;
}
.profile-header ul li label span {
  display: none;
}
.profile-header ul li.active label span {
  display: flex;
}
.navigations ul {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 30px;
}
.navigations ul li,
.navigations ul li a {
  font-size: var(--fs-18);
  color: #c4c4c4;
  text-transform: uppercase;
  font-weight: 600;
}
.navigations ul li.active a {
  color: #0b1a31;
}

.main-content-profile {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.details {
  padding: 30px 0px;
  max-width: 100%;
  width: 100%;
}
.details .fs-25 {
  text-transform: uppercase;
  padding-bottom: 15px;
}
.frist-name {
  width: 100%;
}
.login-prcess select {
  height: 44.5px;
}

.details .fs-20 {
  padding: 15px 0px;
  font-weight: 400;
  padding-bottom: 0px;
}
.scaner-type {
  display: flex;
  gap: 30px;
  padding: 30px;
}
.scenner-coenent p {
  padding-bottom: 5px;
  max-width: 760px;
  width: 100%;
  width: 100%;
}
.login-prcess label.font-bold {
  font-weight: bold;
}
.grid-button.pt-n {
  padding-top: 20px;
  justify-content: flex-end;
}
.input-full-details .login-prcess.w {
  width: 49.5%;
}
span.checkmark {
  justify-content: center;
  align-items: center;
}
span.checkmark .point {
  width: 10px;
  height: 10px;
  background-color: #243146;
  border-radius: 50%;
}
.profile-header ul li.active img {
  display: none;
}
.details p {
  padding-bottom: 5px;
}
.universal-anchor.space {
  margin: 15px 0px;
}
.universal-anchor.space a {
  text-transform: uppercase;
}
.cart-of-guide ul {
  padding: 30px 0px;
  display: flex;
  gap: 30px;
}
.guide-cart {
  padding: 30px;
}
.main-img {
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 15px;
  border: 2px solid #000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-cart .fs-18 {
  text-transform: uppercase;
  line-height: var(--lh-28);
}
.cart-of-guide ul li {
  max-width: 350px;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  cursor: pointer;
  transition: 0.3s ease-in;
  border: 2px solid transparent;
}
.cart-of-guide ul li.active {
  border: 2px solid #0b1a31;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tabs {
  padding-top: 30px;
}
.tabs p {
  font-size: var(--fs-16);
  margin-bottom: 10px;
}
.tabs ul {
  padding-bottom: 10px;
  padding-left: 15px;
}
.details .tabs .fs-20 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.lable label {
  display: block;
  margin-bottom: 10px;
}
.lable {
  padding-top: 15px;
}
.tabs li {
  padding-bottom: 15px;
}
ul.checkbox li label {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
ul.checkbox li label {
  cursor: pointer;
}
ul.checkbox li label input {
  transform: scale(1.5);
}
.lable label {
  cursor: pointer;
  display: flex;
  gap: 10px;
}
ul.mainlist {
  display: flex;
  padding-bottom: 35px;
  border-bottom: 1px solid #c4c4c4;
}
ul.mainlist li {
  width: 87px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-20);
  position: relative;
  color: #898f9a;
  background-color: #f2f6f9;
}
ul.mainlist li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
ul.mainlist li:last-child {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
ul.mainlist li.active {
  color: #fff;
  background-color: #0b1a31;
}
ul.mainlist li.active::after {
  position: absolute;
  bottom: -12px;
  background-color: #0b1a31;
  content: "";
  width: 25px;
  height: 25px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.details h3.fs-20.full {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 20px;
}
.list-radio {
  padding-top: 25px;
}

.list-radio label {
  margin: 10px 0px;
}
.grid-button.pt-n.data-x {
  justify-content: flex-start;
  align-items: center;
}

h3.fs-16 {
  font-size: var(--fs-16);
  margin-top: 15px;
}
.grid-button.pt-n.data-x span {
  font-size: var(--fs-18);
  padding-bottom: 10px;
  max-width: 70px;
  width: 100%;
  border-bottom: 2px solid #253246;
  text-align: center;
  font-weight: 600;
}
/*  profile css end */

/* auto invest css */

.full-content {
  padding: 15px 0px;
  padding-top: 30px;
}

.full-content p {
  padding-bottom: 10px;
}

.full-content ul {
  padding-bottom: 25px;
  margin-left: 30px;
  margin-top: 10px;
}
.full-content ul li {
  font-size: var(--fs-18);
  line-height: var(--lh-28);
  padding-bottom: 10px;
  list-style: disc;
}
label.auto-invest {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  margin-bottom: 15px;
}
label.auto-invest span {
  font-size: var(--fs-25);
  font-weight: bold;
  line-height: var(--lh-35);
}
label.auto-invest input {
  transform: scale(1.6);
}

span.total-retun {
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: var(--lh-30);
  margin: 25px 0px;
  display: block;
}

.line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5px;
  background: #e0eaf0;
  margin: 20px 0px;
  position: relative;
}
.line .line-c {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  border: 4px solid #e0eaf0;
  background-color: #fff;
  left: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
}
.line .line-c:nth-child(5) {
  right: 0;
  left: auto;
}

.lis-num {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 30px;
}
.lis-num li {
  font-size: var(--fs-20);
  font-weight: 600;
  color: #0b1a31;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.b-c {
  width: 35px;
  height: 35px;
  border: 5px solid #0b1a31;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.blue-line {
  width: 0%;
  height: 10px;
  position: absolute;
  background: #0b1a31;
  left: 0;
  top: 0;
  transition: 0.3s ease-in;
}
.click-line {
  height: 10px;
  width: 25%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.input {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #253246;
}

.input input {
  border: none;
  padding-bottom: 10px;
  font-size: var(--fs-18);
  padding-bottom: 10px;
  max-width: 150px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  text-align: left;
  padding: 10px;
}

.grid-button.pt-n.data-x .input span {
  border: none;
  width: 20px;
  padding: 0px;
}

.invest-calations {
  padding: 50px;
  background-color: #dbe5ed;
  display: flex;
  justify-content: center;
}

.invest-calations .feilds {
  width: 50%;
  padding: 30px;
}

.calculation-data p {
  text-align: center;
}

.calculation-data span {
  display: block;
  text-align: center;
}

.all-details {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 10px 0px;
}

.calculation-data p {
  font-size: var(--fs-20);
  padding-bottom: 20px;
}
.calculation-data span {
  font-size: var(--fs-24);
  padding-bottom: 15px;
}

.all-details strong {
  display: block;
  text-align: center;
  font-size: var(--fs-20);
}
.calculation-data p {
  padding-bottom: 10px;
}

.head-of-cal {
  padding: 20px 0px;
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  margin: 10px 0px;
}
.calculation-data .head-of-cal strong {
  display: block;
  text-align: center;
  font-size: var(--fs-30);
}
.monthy-return h3 {
  font-size: var(--fs-20);
  text-align: center;
  padding-bottom: 20px;
}
.monthy-return {
  padding: 20px 0px;
}

.monthy-return table {
  width: 100%;
}
.monthy-return table th {
  padding: 15px;
  background-color: #000;
  color: #fff;
}

.monthy-return table tr {
  background-color: #fff;
  border-bottom: 1px solid #c4c4c4;
}
.monthy-return table td {
  padding: 15px;
  font-size: var(--fs-18);
}

.top-titles-navigations {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-titles-navigations .grid-button {
  max-width: 500px;
  width: 100%;
  justify-content: flex-end;
}

.top-titles-navigations {
  /* margin-top: 15px; */
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 2px solid #0b1a31;
}
.top-titles-navigations .fs-30 {
  text-transform: uppercase;
}

.navigation-retuns ul {
  display: flex;
  gap: 50px;
}
.totel-retuns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0px;
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}
.grid-button.pt-0 {
  max-width: 550px;
  width: 100%;
  justify-content: flex-end;
}

.totel-retuns .grid-button.pt-0 .universal-anchor {
  /* width: fit-content; */
  max-width: 150px;
}
.navigation-retuns ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.navigation-retuns ul li span.title {
  font-size: var(--fs-20);
  text-align: center;
}

.navigation-retuns ul li strong {
  display: block;
  text-align: center;
  font-size: var(--fs-25);
}
.navigation-retuns ul li strong span {
  font-size: var(--fs-16);
}

.main-list-data {
  padding: 30px 0px;
  padding-top: 0px !important;
}
.main-list-data ul {
  display: flex;
  background-color: #F5F7F8;
}
.main-list-data ul li {
  padding: 25px 40px;
  cursor: pointer;
  text-transform: uppercase;
  color: #0b1a31;
  font-size: var(--fs-18);
  border-right: 1px solid #F5F7F8;
}
.main-list-data ul li.active {
  background-color: #fff;
  color: #0b1a31;
}
.main-list-data ul li {
  background-color: #0b1a31;
  color: #fff;
}

.all-tabes .tabs {
  padding: 30px;
  display: none;
}
.all-tabes .tabs.active{
  display: block;
}
.all-tabes .tabs h3 {
  text-transform: uppercase;
  padding-bottom: 35px;
}

section.profile .table-responsive table {
  width: 100%;
}
section.profile .table-responsive table .main-titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.main-titles span {
  font-size: var(--fs-18);
  font-weight: 300;
}
.main-titles strong {
  font-size: var(--fs-16);
}
section.profile .table-responsive table tr td:first-child {
  min-width: 150px;
}

section.profile .table-responsive table tr td:first-child span {
  font-size: var(--fs-20);
  text-transform: uppercase;
  color: rgb(12 83 135 / 50%);
}

section.profile .table-responsive table tr td {
  padding: 15px 0px;
}

section.profile .table-responsive table tr {
  border-top: 1px solid #c4c4c4;
  cursor: pointer;
}

/* main */

.parent-row {
  cursor: pointer;
  /* background-color: #f7fbff; */
  /* transition: background-color 0.2s ease; */
}

.child-table-row table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

section.profile .table-responsive table tr table {
  width: 98%;
  margin-left: auto;
}
section.profile .table-responsive table tr table tr {
  border-bottom: none;
}
section.profile .table-responsive table tr table tr th {
  padding: 20px;
}

section.profile .table-responsive table tr table tr td {
  background-color: #E8E8E8;
  padding: 10px 20px;
}
section.profile .table-responsive table tr table tr.parent-row.data span {
text-transform: none;
}
section.profile .table-responsive table tr table tr.parent-row.data  td
{
background-color: #fff;

}

section.profile .table-responsive table tr table tr.parent-row.data  td .main-titles span{
  color: #000;
  font-size: var(--fs-18);
}



.table-responsive{
  border-bottom: 1px solid #c4c4c4;
}

.parent-row td:last-child img {
  transition:  0.3s ease;
}

.table-responsive.my-investment table th{
  padding: 25px 10px;
  min-width: 200px;
}
section.profile .table-responsive table tr td.data-bg-gray:first-child{
  background-color: #E8E8E8;
}
section.profile .table-responsive table tr td.data-bg-gray:first-child span{
  font-size: var(--fs-16);
  text-transform: none;
  color: #000;
  padding: 10px;
}
.form{
  padding: 30px;
  background-color: #F5F7F8;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.form .input-feilds{
  margin-bottom: 0px;
}
.form .input-feilds{
  width: 100%;
} 
.form .input-feilds:last-child{
  width: auto;
}
.form .input-feilds{
  align-items: center;
  display: flex;
}
.form .input-feilds span{
  font-size: var(--fs-16);
}
.form .input-feilds select,
.form .input-feilds input{
  padding: 10px;
  border: 1px solid #c4c4c4;
}

.form .input-feilds{
gap: 15px;
}

.form .input-feilds .universal-anchor button{
  padding: 10px 20px;
}

.table-responsive.filter-table{
  padding: 30px;
}
.table-responsive.filter-table td{
  min-width: 250px;
  font-size: var(--fs-18);
  font-weight: 600;
}

.full-data{
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px ;
  display: flex;
}
.full-data span{
  font-weight: 600;
}
.table-responsive.filter-table{
  padding: 0px;
  padding: 30px 0px;
}
ul.list{
  display: flex;
  padding: 15px;
  margin-top: 20px;
  gap: 20px;
}
ul.list li {
  padding-bottom: 0px;
}
ul.list li  a span{
  font-size: var(--fs-18);
  color: #000;
}

ul.list li a{
  display: flex;
  align-items: center;
  gap: 10px;
}
ul.list li  i {
  color: #000;
}



/* charts */

.charts-data{
  display: flex;
}

.circle-charts{
  max-width: 400px;
  width: 100%;
  min-height: 200px;
  
}
.bar-charts{
  max-width: 800px;
  width: 100%;
  min-height: 200px;
}



/* main data */


/* chart css */

    .container-data {
      display: flex;
      gap: 40px ;
      align-items: center;
      width: 100%;
      padding: 50px 0px;
    }

    .donut-wrapper {
      position: relative;
      width: 250px;
      height: 250px;
    }

    .donut-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .donut-center p:first-child {
      font-size: 1.875rem;
      font-weight: bold;
      color: #2d3748;
      margin: 0;
    }

    .donut-center p:last-child {
      font-size: 0.875rem;
      color: #6b7280;
      letter-spacing: 0.05em;
      margin: 0;
    }

    .bar-chart-container {
      flex: 1;
    }

    .bar-chart-wrapper {
      width: 100%;
      height: 400px;
      position: relative;
    }

    .bar-chart-wrapper canvas {
      width: 100% !important;
      height: 100% !important;
    }

    .legend {
      display: flex;
      gap: 16px;
      font-size: 0.875rem;
      color: #4b5563;
   
    }

    .legend span {
      cursor: pointer;
      opacity: 1;
      transition: opacity 0.3s;
    }

    .legend span.inactive {
      opacity: 0.4;
    }

    .legend .teal { color: #2dd4bf; }
    .legend .orange { color: #fb923c; }
    .legend .blue { color: #60a5fa; }
    .legend .purple { color: #a78bfa; }
    .legend .yellow { color: #facc15; }

    .toggle-buttons {
      display: flex;

    }

    .toggle-buttons button {
      padding: 0.5rem 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-size: var(--fs-16);
    }

    .toggle-buttons button:first-child {
      background-color: #0f1f38;
      color: white;
    }

    .toggle-buttons button:not(:first-child) {
      background-color: #d1d5db;
      color: #374151;
      margin-left: 0.25rem;
    }

    .all-actions{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
    }

    .toggle-btn.active {
  background-color: #0f1f38 !important;
  color: white !important;
}


    /* chart css end */