/* body,html{
    overflow-x: hidden;
} */


.pt-15 {
    padding-top: 15px;
}

.let-grow-together h1 {
    font-size: 45px;
    margin-top: 15px;
    text-transform: capitalize;
    font-weight: 700;
}
.paragraph-leader-team h3{
    font-size: 21px;
    text-align: center;
}
.paragraph-leader-team p{
    font-size: 13px;
    color: #ccbdbd;
    text-align: center;
}


.let-grow-together p {
    text-align: justify;
    margin-top: 13px;
}

.about-page-img {
    display: flex;
    /* margin: 0 auto; */
    width: 100%;
    align-items: center;
    justify-content: end;
}

.margin-about {
    margin-top: 45px;
    margin-bottom: 45px;

}

.story-page-img {
    display: flex !important;   
    flex-direction: column;
    /* margin: 0 auto; */
    width: 100%;
    align-items: center;
    justify-content: center;
}

.story-page-img img {
    box-shadow: 0 16px 20px 0 rgb(0 0 0 / 51%);
}

.border-10 {
    border: 10px solid black;
}

.main-bg-story .our-story-title {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-p-relative {
    position: relative;
    padding: 0;
}
.main-bg-story .heading-title h2{
    color: white !important;
}
.main-p-relative .all-story {
    position: absolute;
    background: #100049;
    height: 40%;
    width: 100%;
}

.main-p-relative .story-main {
    position: relative;
}

.story-paragraph {
    padding: 65px 90px;
}

.story-paragraph p {
    text-align: justify;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
}

/* .story-paragraph p::first-letter{
    font-size: 200%;
    color: #8A2BE2;
} */
/*  */

.has-dropcap:first-letter {
    /* font-family: "Source Sans Pro", Arial, Helvetica, sans-serif; */
    float: left;
    font-size: 6rem;
    line-height: 0.65;
    margin: 0.1em 0.1em 0.2em 0;
}

.dropcap {
    background: #ffffff;
    color: #ff9c1a;
    float: left;
    font-size: 74px;
    line-height: 0.8px;
    margin: 0 0 0 0;
    padding: 10px 6px 0 0;
    font-weight: 600;
}

.dropcap:before,
.dropcap:after {
    content: "";
    display: block;
}

.dropcap:before {
    margin-top: -0.2em;
}

.dropcap:after {
    margin-bottom: -0.15em;
}


.img-our-team img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block !important;
    object-position: top center;

}

.paragraph-leader-team {
    padding: 18px 0 18px 0;
    position: relative;
    z-index: 99999999999999;
}




.bg-lead1{
    width: 100%;
    height: 260px;
    position: absolute;
    background: #ffbc01;
    /* top: 87px; */
    bottom: 0px;
}
.bg-lead2{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #00eeba;
}
.bg-lead3{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #00eeba;
}
.bg-lead4{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #ffbc01;
}
.bg-lead5{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #ffbc01;
}
.bg-lead6{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #007bfa;
}
.bg-lead7{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #007bfa;
}
.bg-lead8{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #ffb8a6;
}
.bg-lead9{
    width: 100%;
    height: 313px;
    position: absolute;

    top: 87px;
    background: #ffb8a6;
}
.main-leader-team{
    position: relative;
}
.img-our-team{
    position: relative;
}

/* faq */
.accordian-main .accordion {
    max-width: 100%;
    margin: 0 auto; width: 100%;
  }
  
  .accordian-main  .accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 12px;

    overflow: hidden; /* Add overflow property to prevent content from affecting layout */
  }
  
  .accordian-main   .accordion-title {
    background-color: #ffffff;
    padding: 15px;
    cursor: pointer;
    border-top: 1px solid #ccc;
    color: #29176f;
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  .accordian-main  .accordion-title::after {
    content: '\25B8';
    position: absolute;
    font-size: 35px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .accordian-main  .accordion-content {
    padding: 15px;
    display: none;
    background-color: #fff;
    color: #333;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .accordian-main  .accordion-item.active .accordion-title {
    background-color: #29176f;
    color: white;
  }
  
  .accordian-main  .accordion-item.active .accordion-title::after {
    content: '\25BE';
    transform: translateY(-50%) rotate(180deg);
    font-size: 35px;
  }
  
  .accordian-main  .accordion-item.active .accordion-content {
    display: block;
    padding-top: 0;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  
  @media screen and (max-width: 767px){
    .about-page-img {
        display: flex;
        /* margin: 0 auto; */
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .about-page-img img{
        width: 80%;
        margin-top: 40px;
    }
    .story-paragraph {
        padding: 65px 20px;
    }
    .main-p-relative .all-story {
        position: absolute;
        background: #cabdff8c;
        background: #100049;
        height: 20%;
        width: 100%;
        z-index: -1;
    }
    .let-grow-together h1 {
        font-size: 30px;
        margin-top: 15px;
        text-transform: capitalize;
        font-weight: 700;
    }
    .dropcap{
        font-size: 2pc !important;
    }
    .story-page-img img {
        box-shadow: 0 16px 20px 0 rgb(0 0 0 / 51%);
        height: 200px;
        object-fit: cover;
    }
    .border-10 {
        border: none;
    }
    .paragraph-leader-team p {
        font-size: 13px;
        color: #ccbdbd;
        text-align: center;
    }
    .paragraph-leader-team h3 {
        font-size: 20px;
        text-align: center;
    }
    .story-paragraph p {
        text-align: justify;
        font-size: 13px;
        line-height: 22px;
        letter-spacing: 1px;
    }
  }
  /* slider */
  .slider-parent {
    padding-top: 50px;
    padding-bottom: 50px;


}

.slider-card-testimonials .slider1 {
    padding: 0 12px;

}

.slider-card-testimonialsard .slider1 p:nth-child(even) {
    background-color: red;
    color: white;
}

.slider-card-testimonials .slider1 p:nth-child(odd) {
    width: 100%;
    margin-bottom: 22px;
}

.slider1 .text-about-video p {
    justify-content: center;
    align-items: start;
    display: flex;
    color: #212D3F;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-card-testimonials .prev-arrows {
    background: #d2caca;
    color: black;
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: -89px;
    left: 45%;
    z-index: 99;
    border-radius: 30px;
    transform: translateY(-50%);
}

.slider-card-testimonials .next-arrows {
    background: #d2caca;
    color: black;
    position: absolute;
    border-radius: 30px;
    width: 35px;
    height: 35px;
    bottom: -90px;
    right: 46%;
    z-index: 99;
    transform: translateY(-50%);
}
.slider-card-testimonials .prev-arrows i{
    position: absolute;
    left: 12px;
    top: 9px;
}
.slider-card-testimonials .next-arrows i{
    position: absolute;
    left: 13px;
    top: 9px;
}
.video-img img{
    width: 100%;
}
/* video */
.slider-card-testimonials .slider1 .popup-youtube img{
    width: 100%;
    height: 100%;
    border-radius: 19px;
    margin-bottom: 14px;

}
.slider1 .text-about-video  p{
    padding: 8px 0 5px 0;
    text-align: justify;
}

.slider-card-testimonials .slider1 h3{
    color: #141870;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.27;
    margin: 0;
}

.slider-card-testimonials .slider1 .text-head-video p{
    font-weight: 700;
    color: #212D3F;
    line-height: 1.33;  
    margin: 5px 0 9px 0;
}
.margin-bottom-test{
    margin-bottom: 147px;
}
.slider-card-testimonials .slider1 .popup-youtube span {
    background: #29176F;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 5%;
    right: 5%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}
.slider-card-testimonials .slider1 .popup-youtube span i{
color: white;
font-size: 28px;
}
.slider-card-testimonials .slider1,
.slider-card-testimonials .popup-youtube,
.slider-card-testimonials .slider1 .popup-youtube img{
    position: relative;
}
.img-test-leader img{
    object-fit: contain;
    width: 116px;
}
.sidebar-min {
    margin: 0px !important;
    padding: 0px !important;
    list-style: none;
    margin-left: -35px !important;
}

.selector {

    transition: ease 0.3s;
    position: fixed;
    z-index: 999;
}

.selector.shift {
    transform: translateY(-100%);
    transition: ease 0.3s;
}

.owl-icons .owl-prev {
    background: #ede6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 40px;
    width: 40px;
    font-size: 20px;
}

.testimonial-investors {
    background: #fff;
    padding: 18px 30px;
    box-shadow: 0 30px 50px rgba(205, 196, 219, 0.3);
    border-radius: 10px;
    position: relative;
}

.test-images img {
    width: 70px;
    position: absolute;
    top: 17px;
    height: 70px;
    border-radius: 50%;
}

.test-images {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: auto;
    background: #F9F7FF;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.test-heads {
    margin-top: 0px;
}

.test-heads h5 {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    font-weight: 900;
    color: #111 !important;

}

.test-heads h6 {
    color: #c0b6b6 !important;
    font-size: 12px;
    margin-top: 10px;
    min-height: 30px;
}

.test-heads {
    text-align: center;
}

.test-circles i {
    font-size: 24px;
    background: #29176F;
    margin: 0;
    padding: 0;
    color: white;
    width: 50px;
    height: 50px;
    margin: 20px auto;
    display: flex;
    line-height: 50px;
    /* align-items: flex-end; */
    justify-content: center;
    border-radius: 50%;
}

.test-paras .test {
    text-align: justify;
}

.test-paras p {

    text-align: justify;
    color: gray;
    line-height: 26px;
    min-height: 290px;
}

.test-cards {
    margin-top: 60px;
}

.socail-media-accounts ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0px;
}

.socail-media-accounts ul li a {
    color: #cdcdcd;
}

.testi-rows {
    margin: 60px 0px;
}

.testi-rows .prev-arrows {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    background: #d2caca;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.heading-title h2 {
    font-size: 36px;
    line-height: 54px;
    padding-bottom: 30px;
    font-weight: bold;
    font-family: Nunito, sans-serif;
}

.testi-rows .next-arrows {
    position: absolute;
    bottom: -65px;
    left: 55%;
    z-index: 9;
    background: #d2caca;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testi-rows {
    position: relative;
    top: -40px;
}

.inverstors-main-card {
    margin-right: 15px;
    margin-top: 35px !important;
    padding-bottom: 30px;

}

.blog-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.blog-titles h1 {
    color: #111 !important;
    font-size: 16px;
    margin: 10px 0px;
    font-weight: 600;
    line-height: 28px;
    font-family: Nunito, sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 21px;
    overflow: hidden;
    /* min-height: 60px; */
    font-size: 16px;
    text-overflow: ellipsis;
}

.blog-section {
    padding: 125px 0px !important;
}

.blog-titles p {
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 21px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    color: #a89999;
}

.blog-rows {
    margin-top: 50px;
}

.blogs-card {
    margin-bottom: 50px;
}

.social-widjet {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99;
}

.wid-icons {

    background: #29176F;
    color: white;
    z-index: 99999999999;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 56px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);

    width: 56px;
    border-radius: 50%;
}
.scroll-tops{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99;
}

.widjet-link .whatsapp {
    height: 56px;
    width: 56px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    margin-bottom: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

.wid-icons i {
    font-size: 25px;
}

.widjet-link {
    display: none;
}

.social-open .widjet-link {
    display: block;
}

.titleby p {
    color: #a1a5a1;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    margin-top: 15px;
    align-items: center;
}

.blog-tops p {
    margin-top: 9px;
    font-size: 14px;
}

.blog-tops p span {
    margin-right: 10px;
}

.titleby p span {
    margin-right: 10px;
}

.mobile-close-icons {
    display: none;
}


.desktop-menu li a {
    position: relative;
  }
 
@media screen and (min-width: 768px) {
    .menu-logo a img:nth-child(1){
        position: absolute;
        left: 0px;
    }

    .menu-logo a img:nth-child(2){
        position: absolute;
        left: 0px;
        display: none;
    }
    .desktop-menu{
        margin-left: 200px;
    }
    .bgheaders .main-navbar {
        background: white !important;
        color: white;
        transition: 0.3s all;
    }

    .bgheaders .main-navbar .logo-menus .menu-logo a img:nth-child(1) {
        display: none;

    }
    .bgheaders .main-navbar .logo-menus .menu-logo a img:nth-child(2) {
        display: block;

    }
    .bgheaders  .headers-btn a:nth-child(1){
        color: #111 !important;
    }
    .menu-logo{
        padding-top: 5px;
        position: relative;
    }

    .bgheaders .main-navbar .desktop-menu li a.active {
        color: orange !important;

    }

    /* .bgheaders  .main-navbar .desktop-menu li a:hover {
        color: #111 !important;

    } */

    .bgheaders .new .main-header .main-navbar .nav-inner ul li a{
        color: #111 !important;
    }
    .bgheaders .new .main-header .main-navbar .nav-inner ul li:hover a{
        color: #ff9c1a !important;
    }
    .bgheaders .new .main-header .main-navbar{
        box-shadow: 0 3px 8px rgba(0,0,0,.24);
    }
    .custom-section{
        padding-top: 95px;
        padding-bottom: 0px;
    }
    .padding-testimonils{
        padding-bottom: 80px;
    }
    .close-menus{
        display: none;
    }
}
.newabout {
    background: #29176f!important;}

 .new .main-header .main-navbar {
    background: transparent;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}
 .new .main-header .main-navbar .nav-inner ul li a {
    display: block;
    line-height: 60px;
    position: relative;
    font-size: 18px;
   
    font-weight: 400;
    color: #fff;
    margin: 0 20px;
    font-family: Nunito, sans-serif;
    text-transform: capitalize;
}
 .main-header :hover a{
    color: #111 !important;
}
 .bgheaders a{
    color: #111 !important;
}
/*  .new .main-header .main-navbar .nav-inner ul li a.active::after,  .new .main-header .main-navbar .nav-inner ul li:focus a::after,  .new .main-header .main-navbar .nav-inner ul li:hover a::after{
    display: none;
} */
 .new .main-header .main-navbar .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.logo-menus {
    display: flex;
    gap: 55px;
    position: relative;
}
.headers-btn a:nth-child(2){
    border-radius: 10px;
    color: var(--white);
    display: inline-block;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .56px;
    margin-left: 36px;
    padding: 12px 24px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    z-index: 2;
    background: linear-gradient(169deg, #6f72c4 23.57%, #4f53b4 71.27%);
    border-radius: 10px;
    color: white;
}

.headers-btn a:nth-child(1){
    border-radius: 10px;
    color: var(--white);
    display: inline-block;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    font-size: 18px !important;
    display: inline-block;
}
.mainbanner .left-content{
    text-align: center;
    margin-top: 60px;
}
.mainbanner .banner_section {
    background: var(--linearbg) !important;
    background: 65%, url(images/table-bg.html) top center no-repeat;
    background-size: cover;
    padding-top: 80px;
    overflow: hidden;
    padding-bottom: 150px;
    /* margin-top: 5rem; */
}
.form-wraper{
    display: flex;
    justify-content: center !important;
    gap: 25px !important;
    margin-top: 50px;
}
.input-box-new{
    max-width: 100%;
}
.mainbanner.mainbanner .banner_section .slider-area .item .left-content p {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
    font-family: Nunito, sans-serif;
    /* max-width: 500px; */
    padding-bottom: 25px;
    color: grey;
    color: #c2c2c2;
    text-align: center !important;
    max-width: 100% !important;
}
.input-box-new .new-form-wrapper a:nth-child(1){
    border-radius: 10px !important;
    /* background: linear-gradient(169deg, #6f72c4 23.57%, #4f53b4 71.27%) !important; */
    border-radius: 10px;
    border: none !important;
}
.input-box-new .new-form-wrapper a:nth-child(2){
    border-radius: 10px !important;
   
}
.mainbanner .banner_section {
    margin-top: 0px;
}

.menu-bar {
    display: none;
}
.bgheaders  a{
color: black;
}
/*  .new .main-header .main-navbar .nav-inner ul li a:hover{
    color: orange;
    transition: 0.3s all;
} */
.slider-card-testimonials{
    margin-top: 50px;
}
.row-mt-50{
    margin-top: 50px;
}



.top-butns button{
    position: fixed;
    left: 20px;
    bottom: 10px;
    border: none;
    display: none !important;
    z-index: 99;
    background: #29176F;
    color: white;
    box-shadow: none;
    z-index: 99;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 56px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    width: 56px;
    border-radius: 50%;
    transform: 0.4s all;
}
.newClass .top-butns button{
display: block !important;

}
.whatsapp a img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

@keyframes fadding-bottom {
    0% {
        transform: translateY(100px);
        opacity: 0
    }

    100% {
        transform: none;
        opacity: 1
    }
}

.banner-row .banner-sliding .left-content.slick-active .fadding-bottom {
    animation-name: fadding-bottom;
    animation-duration: 1.0s
}
.bgheaders.new .main-header .main-navbar .nav-inner {
    color: black;
}
@media screen and (max-width: 767px) {
    .slider-card-testimonials .slider1 .popup-youtube span {
        background: #29176F;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 5%;
        right: 5%;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    }
    .slider-card-testimonials .slider1 .popup-youtube span i {
        color: white;
        font-size: 16px;
    }
    .menu-logo a img:nth-child(2){
        display: none;
    }
    .whatsapp a img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .heading-title h2 {
        font-size: 20px;
        line-height: 54px;
        padding-bottom: 30px;
        font-weight: bold;
        font-family: Nunito, sans-serif;
    }
    .slider-card-testimonials .next-arrows {
        background: #d2caca;
        color: black;
        position: absolute;
        border-radius: 30px;
        width: 35px;
        height: 35px;
        bottom: -90px;
        left: 85%;
        z-index: 99;
        transform: translateY(-50%);
    }
    .slider-card-testimonials .prev-arrows {
        background: #d2caca;
        color: black;
        width: 35px;
        height: 35px;
        position: absolute;
        bottom: -89px;
        left: 70%;
        z-index: 99;
        border-radius: 30px;
        transform: translateY(-50%);
    }
    .headers-btn{
        display: none;
    }
    .close-menus{
        display: block;
    }
    .blog-section {
        padding: 40px 0px !important;
    }

    .widjet-link .whatsapp {
        height: 40px;
        width: 40px;
        margin: 0;
        padding: 0;
        border-radius: 50%;
        margin-bottom: 5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    }

    .wid-icons {
        background: #29176F;
        color: white;
        z-index: 99999999999;
        justify-content: center;
        align-items: center;
        display: flex;
        height: 40px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
        width: 40px;
        border-radius: 50%;
    }

    .wid-icons i {
        font-size: 16px;
    }

    .blog-rows {
        margin-top: 20ipx;
        padding: 15px;
    }

    .bgheaders .main-navbar .desktop-menu li a.active {
        color: orange !important;
    }

  

    .ant-dropdown-trigger {
        display: none;
    }

    .testi-rows .next-arrows {
        position: absolute;
        bottom: -65px;
        left: 85%;
        z-index: 9;
        background: #d2caca;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .testi-rows .prev-arrows {
        position: absolute;
        bottom: -65px;
        left: 70%;
        z-index: 9;
        background: #d2caca;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }


    .founder-text p {
        text-align: justify;
        font-size: 15px;
        padding: 15px;
    }

    .join-sec-yellow>h2 {
        color: #064635;
        font-size: 17px;
        margin-top: 20px;
    }

    .join-sec-yellow>h1 {
        font-size: 35px;
        text-transform: uppercase;
        text-align: center;
        margin: 0 0 -1.3rem;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-text-stroke: 1px #f0bb62;
        color: transparent;
    }

    .index_pitch {
        width: 100%;
        margin: 20px auto;
        line-height: 22px;
        font-size: 14px;
    }

    .mobile-close-icons {
        display: none;
    }

    .Footer_footerLogo__Dz6fy {
        display: none;
    }

    .mobile-close-icons {
        position: absolute;
        display: block;
        top: 25px;
        right: 20px;
    }

    .mobile-close-icons i {
        font-size: 27px;
        color: #111;
        opacity: 0.7;
    }
     .new .main-header .main-navbar .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0px;
    }
    .menu-bar i{
        color: white;
    font-size: 22px;
    }
    .menu-bar {
        display: block;
    }
    .menu-logo img{
        margin-left: 0px !important;
    }
    .bgheaders .new .main-header .main-navbar .nav-inner ul li a{
        color: #111 !;
    }
    .mainbanner .banner_section .slider-area .item .left-content h2 {
        font-size: 25px !important;
        line-height: 32px !important;
    }
    .mainbanner .banner_section .slider-area .item .left-content p {
        font-size: 13px;
        font-weight: 400;
        line-height: 32px;
        color: #fff;
        font-family: Nunito, sans-serif;
        /* max-width: 500px; */
        padding-bottom: 25px;
        color: grey;
        color: #c2c2c2;
        text-align: center !important;
        max-width: 100% !important;
    }
    .form-wraper {
        display: flex;
        justify-content: center !important;
        gap: 25px !important;
        margin-top: 20px;
    }
    .top-butns button {
        position: fixed;
        right: 10px;
        bottom: 10px;
        border: none;
        z-index: 99;
        background: #29176F;
        color: white;
        box-shadow: none;
        z-index: 99999999999;
        justify-content: center;
        align-items: center;
        display: flex;
        height: 40px !important;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
        width: 40px !important;
        border-radius: 50%;
    }
    .menu-logo{
        position: relative;
        top: -7px;
    }
    .how-we-work-section .item h3 {
        font-size: 14px;
    }
    .Footer_footerText__YieoY {
        color: rgba(255, 255, 255, .75);
        font-size: 10px;
        line-height: 12px;
    }
    .slider1 .text-about-video p {
        justify-content: center;
        align-items: start;
        display: flex;
        color: #212D3F;
        font-size: 16px;
        font-weight: 500;
        text-align: justify;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        line-height: 21px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .slider-card-testimonials .slider1 h3 {
        color: #141870;
        font-size: 15px;
        font-weight: 500;
        font-weight: 500;
        line-height: 1.27;
        margin: 0;
    }
    .img-test-leader img {
        object-fit: contain;
        width: 65px;
    }
    .testimonial-investors {
        background: #fff;
        padding: 18px 15px;
        box-shadow: 0 30px 50px rgba(205, 196, 219, 0.3);
        border-radius: 10px;
        position: relative;
    }
    
}

