@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --txt-sm: 12px;
    --txt-medium: 14px;
    --heading-color: #2B2A28;
    --txt-blue: #203e80;
    --txt-lg: 18px;
    --txt-gray: #676E72;
    --pt-80: 100px;
    --py-80: 100px 0;
    --pb-80: 100px;
    --h1: 46px;
    --h2: 36px;
    --h3: 28px;
    --h4: 24px;
    --h5: 22px;
    --h6: 20px;
    --h7: 18px;
}

body [type='checkbox']:checked,
body [type='radio']:checked,
body .dark [type='checkbox']:checked,
body .dark [type='radio']:checked {
    background-color: #0E93D8 !important;
    /* background-size: 0.85em 0.85em !important;
    background-position: center;
    background-repeat: no-repeat; */
    border-color: #0E93D8 !important;
}

.max-w-screen-lg {
    max-width: 1170px !important;
    padding: 0 15px;
}

.max-w-screen-xl {
    padding: 0px 15px;
}

body {
    font-family: "Montserrat", sans-serif !important;
    margin: 0px !important;
    padding: 0px;
    box-sizing: border-box;
    text-transform: capitalize;
}

h1 {
    font-size: var(--h1) !important;
}

h2 {
    font-size: var(--h2) !important;
}

h3 {
    font-size: var(--h3) !important;
}

h4 {
    font-size: var(--h4) !important;
}

h5 {
    font-size: var(--h5) !important;
}

h6 {
    font-size: var(--h6) !important;
}

.h7 {
    font-size: var(--h7) !important;
}

.pt-80 {
    padding-top: var(--pt-80) !important;
}

.py-80 {
    padding: var(--py-80) !important;
}

.pb-80 {
    padding-bottom: var(--pb-80) !important;
}

.txt-sm {
    font-size: var(--txt-sm);
}

.txt-medium {
    font-size: var(--txt-medium);
}

.txt-lg {
    font-size: var(--txt-lg);
}

.txt-blue {
    color: var(--txt-blue);
}

.txt-gray {
    color: var(--txt-gray);
}

.heading-color {
    color: var(--heading-color);
}

.fw-normal {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.blue-btn {
    background-color: var(--txt-blue);
    color: #fff;
    padding: 12px 24px;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    position: relative;
}

.blue-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0px;
    border-radius: 40px;
    transition: 0.4s ease-in-out;
    background-color: #ccc;
    opacity: 0;
}

.blue-btn:hover * {
    color: #fff;
    transition: 0.4s all;
}

.blue-btn:hover::before {
    content: "";
    height: 100%;
    width: 100%;
    transition: 0.4s all;
    background-color: #1471a0;
    opacity: 1;
}

.blue-btn * {
    position: relative;
    z-index: 9;
    transition: 0.4s all;
}

/* ==== header-css-start-here ==== */

.lang-dropdown-label-with-btn {
    text-transform: none !important;
}

.sub-header-wrapper {
    background-color: #EFF4F9;
    padding: 8px 0;
}

.lang-dropdown-wrapper #dropdown {
    background-color: #fff;
}

.lang-dropdown-btn {
    background-color: #0E93D81A !important;
    border-radius: 30px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.lang-dropdown-label-with-btn .lang-label {
    display: inline-block;
    color: #676E72;
    font-size: 14px;
    font-weight: 500;
}

.header-logo-wrap img {
    height: 60px;
    width: 100%;
    max-width: 100%;
}

.header-navbar-list-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-navbar-list-wrap li a {
    color: #2B2A28;
    font-size: 14px;
    font-weight: 500;
}

.header-navbar-list-wrap li a:hover {
    color: var(--txt-blue);
}

.header-login-btn {
    color: #676E72;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
}

.header-register-now-btn {
    background-color: #203e80;
    color: #fff;
    /* display: inline-block; */
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
}

.sub-header-mail-col i {
    color: #E8B331;
}

/* ==== header-css-end-here ==== */

/* ===== home-page-start-here ===== */

.home-banner-heading-wrap {
    font-size: 50px;
    font-weight: bold;
    padding-bottom: 70px;
    width: 80%;
}

.home-banner-grid-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    position: relative;
}

.home-banner-get-started-col {
    background-color: rgb(239, 244, 249);
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: -65px;
    width: 420px;
}

.home-banner-get-started-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.home-banner-get-started-box p {
    padding: 30px 30px 0 30px;
    font-size: 24px;
}

.home-banner-get-started-btn-wrap a {
    background-color: #0E93D8;
    display: flex;
    font-size: 22px;
    align-items: center;
    font-weight: 600;
    color: #fff;
    padding: 16px 20px;
    justify-content: space-between;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* .home-hero-banner-wrap img {
    width: 100%;
    height: 450px;
    object-position: top;
    object-fit: cover;
} */

.home-hero-banner-wrap {
    background-color: #2b2a28;
    min-height: 450px;
    padding: 100px 0 100px;
}

.home-hero-searchbar-wrapper {
    width: 70%;
    margin: 70px auto 0;
}

.input-with-submit-btn-wrap .form-control {
    background-color: #fff;
    display: block;
    width: 100%;
    border-radius: 30px;
    padding: 16px 25px;
    line-height: normal;
}

.input-with-submit-btn-wrap {
    position: relative;
}

.input-with-submit-btn-wrap .blue-btn {
    position: absolute;
    top: 50%;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0px;
    right: 5px;
    transform: translateY(-50%);
}

.home-services-des-grid-wrap {
    width: 70%;
}

.home-services-heading-grid-wrap {
    padding-bottom: 50px;
}

.home-services-steps-col {
    background-color: #FAFAFA;
    border-radius: 20px;
    padding: 20px;
    display: grid;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.home-services-steps-col::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background-color: #ccc;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.home-services-steps-col:hover::before {
    content: "";
    transition: 0.3s all;
    background-color: var(--txt-blue);
    height: 100%;
    width: 100%;
    opacity: 1;
}

.home-services-steps-col * {
    transition: 0.3s all;
}

.home-services-steps-col:hover * {
    position: relative;
    z-index: 9;
    transition: 0.3s all;
    color: #fff;
}

.home-services-steps-col:hover img {
    filter: brightness(0) invert(1);
}

.home-services-steps-col span {
    margin-top: 16px;
}

.home-services-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.home-services-steps-col span i {
    color: var(--txt-blue);
    font-size: 20px;
}

.about-us-data-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.funds-raised-col {
    color: #0E93D8;
}

.active-investors-col {
    color: #EE0700;
}

.financed-projects-col {
    color: #E8B331;
}

.success-rate-col {
    color: #55D89F;
}

.about-us-data-col h2 {
    position: relative;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 10px;
}

.home-about-us-right-col p {
    margin-bottom: 50px;
}

.home-how-it-works-section-wrap {
    background-color: #2B2A28;
    padding: 100px 0px;
}

.home-how-it-works-tabs-btn-wrap {
    display: flex;
    align-items: center;
    background-color: #FFFFFF1F;
    padding: 10px 10px;
    border-radius: 10px;
    width: -moz-max-content;
    width: max-content;
    gap: 20px;
    margin: 40px auto 50px auto;
}

.home-how-it-works-tabs-btn-wrap li button {
    color: #B2B2B2;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    line-height: normal;
}

.home-how-it-works-tabs-btn-wrap li button[aria-selected="true"] {
    background-color: #FFFFFF;
    color: #2B2A28;
    border-radius: 5px;
}

.home-htw-tabs-content-col-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-htw-tabs-content-grid-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.home-htw-tabs-content-col-wrap p {
    width: 65%;
    margin: 0 auto;
}

/* .home-how-it-works-tabs-content-wrap {
    padding-bottom: 60px;
} */

.explore-running-projects-grid-wrap {
    display: grid;
    grid-template-columns: 0.80fr 2fr;
    gap: 50px;
}

.running-projects-detail-grid {
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    overflow: hidden;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 0.60fr 1fr;
}

.running-projects-detail-col-wrap {
    padding: 30px 20px;
}

.project-sector-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 30px;
}

.project-sector-tag-wrap {
    background-color: #EEF2F8;
    font-size: 14px;
    font-weight: 500;
    color: #0E93D8;
    padding: 8px 16px;
    border-radius: 30px;
    line-height: normal;
}

.project-progress-detail-wrap {
    background-color: #ECEFF0;
    padding: 13px 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.raised-amount,
.funding-goal-amount {
    font-size: 14px;
    font-weight: 500;
    color: #2B2A28;
}

.raised-amount span,
.funding-goal-amount span {
    font-size: 12px;
    color: #676E72;
}

.running-projects-img-col img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.project-progress-label {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #2B2A28B2;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.home-entrepreneurs-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #F5F7F8;
    border-radius: 20px;
    overflow: hidden;
}

.home-entrepreneurs-detail-col-wrap {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.home-entrepreneurs-img-col img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

#sliderWrapper {
    will-change: transform;
    transition: transform 0.1s linear;
}

#sliderWrapper img {
    flex-shrink: 0;
}

.testimonial-grid-wrap {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 50px;
}

.testimonial-slider-col {
    overflow: hidden;
}

/* ===== home-page-end-here ===== */

/* ==== footer-css-start-here ==== */

.footer-wrapper {
    background-color: #2B2A28;
    /* padding: 200px 0 10px 0; */
}

.footer-cta-section {
    margin-bottom: -80px;
}

.footer-logo-wrap img {
    height: 60px;
    max-width: 100%;
}

.footer-logo-col p {
    color: #8D9497;
}

.footer-logo-col a {
    font-size: 18px;
    color: #8D9497;
}

.footer-quick-links-col ul li a,
.footer-legal-links-col ul li a,
.footer-contact-links-col ul li a {
    color: #8D9497;
    font-size: 16px;
}

.footer-quick-links-col ul li a:hover,
.footer-legal-links-col ul li a:hover,
.footer-contact-links-col ul li a:hover,
.footer-logo-col a:hover {
    color: var(--txt-blue);
}

.copyright-txt-wrap {
    color: #8D9497;
}

.footer-contact-links-col a span i {
    color: #E8B331;
}

/* ==== footer-css-end-here ==== */

/* ==== about-us-page-start-here ===== */

.our-story-mission-heading-wrap {
    width: 60%;
    margin-bottom: 30px;
}

.our-story-mission-des-wrap {
    width: 60%;
    margin-left: auto;
    margin-bottom: 70px;
}

.about-second-sec-img-wrap img {
    width: 100%;
    border-radius: 30px;
}

.about-second-sec-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.who-we-are-sec-grid {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 50px;
}

.who-we-are-right-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-hover-animate-grid {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    transition: 0.5s all;
    overflow: hidden;
}

.about-hover-animate-details-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 10px 30px;
    transition: 0.5s all;
}

.about-hover-animate-col {
    position: relative;
    cursor: pointer;
    height: 100%;
    max-height: 500px;
}

.about-hover-animate-img-wrap {
    position: relative;
    height: 100%;
}

.about-hover-animate-img-wrap img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.about-hover-animate-img-wrap::before {
    content: "";
    background: linear-gradient(360deg, #00000094, transparent);
    position: absolute;
    height: 100%;
    width: 100%;
}

.about-hover-animate-des {
    margin: 10px 0;
    font-size: 14px;
}

.about-hover-animate-arrow {
    display: inline-block;
    font-size: 18px;
    color: #fff;
}

.about-hover-animate-grid:has(.about-hover-animate-col:first-child:hover) {
    grid-template-columns: 30% 25% 25% 25%;
    transition: 0.5s all;
}

.about-hover-animate-grid:has(.about-hover-animate-col:nth-child(2):hover) {
    grid-template-columns: 25% 30% 25% 25%;
    transition: 0.5s all;
}

.about-hover-animate-grid:has(.about-hover-animate-col:nth-child(3):hover) {
    grid-template-columns: 25% 25% 30% 25%;
    transition: 0.5s all;
}

.about-hover-animate-grid:has(.about-hover-animate-col:last-child:hover) {
    grid-template-columns: 25% 25% 25% 30%;
    transition: 0.5s all;
}

.on-hover-data-visible-wrap {
    position: absolute;
    opacity: 0;
    transition: 0.5s all;
    bottom: -90px;
    width: 100%;
    left: 0;
}

.about-hover-animate-col:hover .on-hover-data-visible-wrap {
    transition: 0.5s all;
    position: unset;
    opacity: 1;
}

.about-our-services-heading-wrap {
    width: 40%;
    margin-bottom: 40px;
}

/* ==== about-us-page-end-here ===== */

/* ==== how-it-works-css-start-here ===== */

.for-Investors-works-grid-wrap {
    width: 70%;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.for-investors-step-qa-box {
    box-shadow: 0px 4px 30px 0px #0000000D;
    border-radius: 20px;
    padding: 30px;
    background-color: #fff;
}

.step-one-create-acc-heading::before {
    content: "";
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #E8B331;
    position: absolute;
    opacity: 20%;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.step1-qa-box-img {
    display: inline-block;
    width: 50%;
    position: absolute;
    left: -100px;
    top: -10px;
    z-index: -1;
}

.for-Investors-step-works1 {
    gap: 10rem;
}

.for-entrepreneurs-works-sec {
    background-color: #FAFAFA;
    padding: 80px 0px;
}

.entrepreneurs-step4-and-heading-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20rem;
    position: relative;
}

.entrepreneurs-step4-col {
    width: 70%;
    position: relative;
}

.entrepreneurs-step4-col::after {
    content: "04";
    font-size: 100px;
    color: #000;
    opacity: 10%;
    font-weight: 600;
    position: absolute;
    top: -45px;
    right: -70px;
    display: inline-block;
    line-height: normal;
}

.entrepreneurs-step1-to-step3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 10rem;
    gap: 5rem;
    position: relative;
}

.entrepreneurs-step1-col::before {
    content: "01";
    font-size: 100px;
    color: #000;
    opacity: 10%;
    font-weight: 600;
    position: absolute;
    top: -50px;
    right: 80px;
    display: inline-block;
    line-height: normal;
}

.entrepreneurs-step2-col::before {
    content: "02";
    font-size: 100px;
    color: #000;
    opacity: 10%;
    font-weight: 600;
    position: absolute;
    top: -50px;
    right: 80px;
    display: inline-block;
    line-height: normal;
}

.entrepreneurs-step3-col::before {
    content: "03";
    font-size: 100px;
    color: #000;
    opacity: 10%;
    font-weight: 600;
    position: absolute;
    top: -50px;
    right: 0px;
    display: inline-block;
    line-height: normal;
}

.entrepreneurs-step3-col {
    top: -200px;
}

.entrepreneurs-step2-col {
    top: -100px;
}

.entrepreneurs-step1-to-step3-grid .entrepreneurs-step4-col {
    display: none;
}

/* ===== how-it-works-css-end-here ===== */

/* ===== Blog-page-css-start-here ===== */

.blog-search-bar-wrapper .form-control {
    border: 1px solid #CECECE;
    border-radius: 30px;
    width: 100%;
    padding: 13px 20px 13px 50px;
}

.blog-search-bar-wrapper .blog-search-bar-icon {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #0E93D8;
    font-size: 18px;
}

.blog-search-bar-wrapper .blue-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.blog-page-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
}

.blog-card {
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.blog-card-body {
    padding: 24px 10px 10px 10px;
}

.blog-category-tag {
    background-color: #EEF2F8;
    color: #0E93D8;
    font-weight: 500;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 30px;
}

.login-page-tabs-wrap {
    background-color: #F8F6F6;
    display: inline-flex;
    padding: 10px;
    border-radius: 10px;
}

.login-page-form,
.signup-page-form {
    margin-top: 90px;
}

.phoneno-country-flag {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-block;
}

.phoneno-country-flag img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    -o-object-fit: fill;
       object-fit: fill;
}

.login-phoneno-country {
    background-color: #F2F2F2;
}

.login-phoneno-field {
    margin-bottom: 45px;
}

.otp-field-wrap {
    margin: 40px 0;
    gap: 30px;
}

.otp-field-wrap input {
    border: 0;
    border-bottom: 1px solid #CECECE;
    color: #676E72;
}

.signup-page-form .form-label {
    font-size: 15px;
    font-weight: 500;
    color: #676E72;
    margin-bottom: 10px;
}

.signup-page-form .grid {
    margin-bottom: 40px;
}

.register-with-google-btn,
.register-with-apple-btn {
    border: 1px solid #CECECE;
    border-radius: 10px;
    padding: 10px 10px;
}

.register-with-google-btn span,
.register-with-apple-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #2B2A28;
}

/* ===== Blog-page-css-end-here ===== */

/* ==== media-query-start-here ==== */

@media screen and (max-width:1024px) {
    .max-w-screen-xl {
        padding: 0 10px;
    }

    div#mobile-menu-2 {
        position: absolute;
        background-color: #fff;
        height: 100%;
        top: 0;
        z-index: 9;
        left: 0;
        padding: 20px;
        width: 70%;
    }

    div#mobile-menu-2 .header-navbar-list-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-banner-heading-wrap {
        font-size: 40px;
    }

    .home-hero-banner-wrap img {
        height: 415px;
    }
}

@media screen and (max-width:992px) {

    :root {
        --txt-lg: 16px;
        --pt-80: 70px;
        --py-80: 70px 0;
        --pb-80: 70px;
        --h1: 36px;
        --h2: 28px;
        --h3: 26px;
        --h4: 24px;
        --h5: 20px;
        --h6: 18px;
        --h7: 16px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: normal;
    }

    .home-banner-heading-wrap {
        font-size: 30px;
        line-height: normal;
    }

    .home-banner-get-started-col {
        width: 350px;
    }

    .home-banner-get-started-box {
        min-height: 220px;
    }

    .home-hero-banner-wrap img {
        height: 330px;
    }

    .home-services-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .home-services-heading-grid-wrap {
        padding-bottom: 30px;
    }

    .home-how-it-works-section-wrap {
        background-color: #2B2A28;
        padding: 70px 0px;
    }

    .explore-running-projects-grid-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .explore-running-projects-heading-wrap .blue-btn {
        margin-top: 20px;
    }

    .project-sector-wrap {
        margin: 10px 0 20px;
    }

    .running-projects-detail-col-wrap {
        padding: 20px 20px;
    }

    .home-entrepreneurs-detail-col-wrap {
        padding: 30px 30px;
        gap: 16px;
    }

    .testimonial-grid-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-cta-section .md\:flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 30px 20px;
    }

    .footer-wrapper {
        /* padding: 140px 0 10px 0; */
    }

    .footer-logo-col {
        grid-column: 1 / 4;
    }

    .home-banner-get-started-box p {
        padding: 20px 25px 0 25px;
        font-size: 20px;
    }

    .who-we-are-sec-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .for-Investors-works-grid-wrap {
        width: 80%;
        gap: 30px;
    }

    .for-Investors-step-works1 {
        gap: 8rem;
    }

    .step1-qa-box-img {
        left: -70px;
    }

    .entrepreneurs-step4-and-heading-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .entrepreneurs-step4-col {
        width: 40%;
    }

    .entrepreneurs-step4-col::after {
        content: "04";
        font-size: 80px;
        top: -45px;
        right: 0px;
    }

    .entrepreneurs-step1-col::before,
    .entrepreneurs-step2-col::before,
    .entrepreneurs-step3-col::before {
        font-size: 80px;
        right: 0;
    }

    .login-page-form,
    .signup-page-form {
        margin-top: 50px;
    }
}

@media screen and (max-width:767px) {

    :root {
        --pt-80: 50px;
        --py-80: 50px 0;
        --pb-80: 50px;
    }

    .home-banner-heading-wrap {
        font-size: 30px;
        padding-bottom: 30px;
    }

    .home-banner-get-started-col {
        width: 75%;
        bottom: 15px;
        right: 10px;
    }

    .home-hero-banner-wrap {
        padding-bottom: 80px;
    }

    .home-banner-grid-wrap {
        grid-template-columns: 1fr;
        position: unset;
    }

    .home-services-des-grid-wrap {
        width: 100%;
    }

    .home-services-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-us-data-grid-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .home-htw-tabs-content-grid-wrap {
        grid-template-columns: 1fr;
    }

    .home-htw-tabs-content-arrow-col {
        align-content: center;
        margin: 0 auto;
    }

    .home-htw-tabs-content-arrow-col img {
        height: 75%;
        transform: rotate(90deg);
    }

    .running-projects-detail-grid {
        margin-bottom: 20px;
        grid-template-columns: 1fr;
    }

    .home-entrepreneurs-grid-wrap {
        grid-template-columns: 1fr;
    }

    .home-entrepreneurs-detail-col-wrap {
        padding: 20px 20px;
        gap: 16px;
    }

    .home-services-heading-grid-wrap {
        gap: 10px;
    }

    .our-story-mission-heading-wrap {
        width: 100%;
        margin-bottom: 16px;
    }

    .our-story-mission-des-wrap {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-second-sec-grid-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-hover-animate-grid {
        grid-template-columns: 50% 50%;
        gap: 0px;
    }

    .about-hover-animate-grid:has(.about-hover-animate-col:hover) {
        grid-template-columns: 50% 50% !important;
    }

    .on-hover-data-visible-wrap {
        position: unset;
        opacity: 1;
    }

    .about-hover-animate-sec-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-hover-animate-details-wrap {
        padding: 10px 10px 20px;
    }

    .about-our-services-heading-wrap {
        width: 60%;
        margin-bottom: 25px;
    }

    .for-investors-step-ans-box h6 {
        position: relative;
    }

    .step2-explore-col h6::before {
        content: "";
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #ea0700;
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 20%;
    }

    .step3-Invest-mobile-col h6::before {
        content: "";
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #0e93d8;
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 20%;
    }

    .step4-track-payment-col h6::before {
        content: "";
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #666d71;
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 20%;
    }

    .for-Investors-step-blank-col {
        display: none;
    }

    .for-Investors-works-grid-wrap {
        width: 90%;
        grid-template-columns: 1fr 1fr;
    }

    .entrepreneurs-graph-img-wrap {
        display: none;
    }

    .entrepreneurs-step3-col,
    .entrepreneurs-step2-col {
        top: 0px;
    }

    .entrepreneurs-step1-to-step3-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 4rem;
        gap: 2rem;
    }

    .entrepreneurs-step1-to-step3-grid .entrepreneurs-step4-col {
        display: block;
        width: 100%;
    }

    .entrepreneurs-step4-and-heading-grid .entrepreneurs-step4-col {
        display: none;
    }

    .for-entrepreneurs-works-sec {
        padding: 50px 0px;
    }

    .blog-page-grid-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-heading-search-col h1 {
        margin-bottom: 20px;
    }

    .signup-page-form .grid {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:576px) {


    :root {
        --txt-lg: 14px;
        --h1: 30px;
        --h2: 26px;
        --h3: 24px;
        --h4: 22px;
        --h5: 20px;
        --h6: 16px;
        --h7: 14px;
    }

    p {
        font-size: 14px;
    }

    .sub-header-mail-col a {
        font-size: 14px;
    }

    .lang-dropdown-label-with-btn .lang-label,
    .lang-dropdown-wrapper * {
        font-size: 12px;
    }

    .header-login-btn,
    .header-register-now-btn {
        font-size: 14px;
    }

    .header-navbar-list-wrap {
        gap: 10px;
        font-size: 14px;
    }

    .home-banner-get-started-col {
        width: 80%;
        bottom: 25px;
    }

    .home-entrepreneurs-detail-col-wrap h2 {
        font-size: 26px !important;
    }

    .footer-logo-col {
        grid-column: 1;
    }

    .footer-cta-section .md\:flex-row {
        gap: 16px;
        padding: 20px 20px;
    }

    .footer-cta-section h2 {
        text-align: center;
        font-size: 28px !important;
    }

    .footer-cta-section a {
        margin: 0 auto;
    }

    .header-register-now-btn span {
        display: none;
    }

    .home-banner-heading-wrap {
        font-size: 26px;
        width: 100%;
    }

    .home-hero-banner-wrap img {
        height: 200px;
    }

    .home-banner-get-started-box p {
        font-size: 16px;
        padding: 20px 20px 0 20px;
    }

    .home-banner-get-started-box {
        min-height: 170px;
    }

    .home-banner-get-started-btn-wrap a {
        font-size: 16px;
    }

    .about-our-services-heading-wrap {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-hover-animate-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .about-hover-animate-grid:has(.about-hover-animate-col:hover) {
        grid-template-columns: 1fr !important;
    }

    .about-hover-animate-col {
        height: 350px;
    }

    .about-hover-animate-img-wrap::before {
        content: "";
        background: linear-gradient(360deg, #000000d6, transparent);
    }

    .about-second-sec-img-wrap img {
        border-radius: 20px;
    }

    .about-second-sec-grid-wrap {
        grid-template-columns: 1fr;
    }

    .who-we-are-right-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-it-works-page-sec-grid {
        gap: 16px;
    }

    .for-Investors-works-grid-wrap {
        grid-template-columns: 1fr;
    }

    .entrepreneurs-step1-to-step3-grid {
        grid-template-columns: 1fr;
    }

    .entrepreneurs-step1-col::before,
    .entrepreneurs-step2-col::before,
    .entrepreneurs-step3-col::before,
    .entrepreneurs-step4-col::after {
        font-size: 60px;
        right: 0;
        top: -30px;
    }

    .home-how-it-works-tabs-btn-wrap {
        width: -moz-fit-content;
        width: fit-content;
    }
}

/* ==== media-query-end-here ==== */