@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Define Helvetica Neue for those who have the files */
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helveticaneue-roman.otf') format('opentype');
}
:root {
    --primary: #E5B44E;
    --secondary: #b22234;
    --bg-light: #2a3e812b;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --text-color: #000000;
}
::-webkit-scrollbar {
    width: 0px;
    background-color: #f5f5f5;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}
::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--white);
}
::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: var(--primary);
}
html {
    scroll-behavior: unset !important;
}
body {
    font-family: "Helvetica";
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.75;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    font-display: swap;
    scroll-behavior: unset !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica", sans-serif;
    font-display: swap;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}
h1,
.h1 {
    font-size: 46px;
}
h2,
.h2 {
    font-size: 48px;
    font-family: "Helvetica";
    font-weight: 600;
}
p {
    margin-bottom: 10px;
}
.para {
    font-size: 24px;
    font-family: "Helvetica";
}
.theme-color {
    color: var(--black);
}
.theme_btn {
    background: var(--primary);
    background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
    background-size: 200% 100%; /* Double the width */
    transition: all 0.5s ease;
    padding: 8px 50px;
    display: inline-block;
    font-family: "Helvetica";
    color: black;
    position: relative;
    text-decoration: none;
    font-weight: 400;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 10px;
}
.theme_btn.outlined_btn {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}
.theme_btn i {
    margin-right: 10px;
}
.theme_btn:hover {
    color: #000000;
    background-position: 100% 0;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
}
*:hover,
*:focus,
* {
    outline: none !important;
}
a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    color: #777777;
}
/* Default header style (white background, sticky) */
header {
    position: fixed;
    z-index: 1024;
    width: 100%;
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 20%);
    transition: all 0.3s ease;
}
/* Transparent header style for home page */
.home-page header {
    background: rgb(0, 0, 0, 50%);
    box-shadow: none;
}
.home-page header .navbar .nav-item .nav-link{
    color: white;
}
/* Case Studies Header Border */
.navbar-border-bottom {
  border-bottom: 2px solid #E5B44E !important; /* Using your #E5B44E color with opacity */
  transition: border-bottom 0.3s ease;
}
/* Optional: Enhanced border on scroll */
.navbar-solid.navbar-border-bottom {
  border-bottom-color: #E5B44E !important;
}
/* When scrolled, make header white even on home page */
.scrolled header {
    background: rgb(0, 0, 0) !important;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.scrolled header .navbar .nav-item .nav-link {
    color: white;
}
/* Navbar styles when not on home page or when scrolled */
.navbar-solid nav.navbar.navbar-expand-lg {
    background: rgb(0, 0, 0) !important;
    color: rgb(255, 255, 255);
}
/* Navbar hover effect only applies when not scrolled */
.offcanvas-body{
    margin-left: auto;
}
.navbar-nav{
    margin-right: 80px;
}
.navbar-brand.active {
    left: -80%;
}
.navbar-brand {
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    /* margin-left: -20px; */
}
.offcanvas-header {
    position: relative;
    overflow: hidden;
}
.animated-toggler {
    position: fixed;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
    z-index: 1051;
}
.animated-toggler {
    display: none;
}
.offcanvas {
    z-index: 1050;
}
.toggler-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 18px;
    margin: 0 auto;
}
.toggler-icon .line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #E5B44E;
    left: 0;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggler-icon .line.active {
    top: 0px;
}
.animated-toggler .top {
    top: 8px;
}
.animated-toggler .bottom {
    bottom: 0px;
}
/* Animation states */
.animated-toggler[aria-expanded="true"] .top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.animated-toggler[aria-expanded="true"] .middle {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}
.animated-toggler[aria-expanded="true"] .bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
.navbar-brand img {
    max-width: 110px;
}
nav.navbar.navbar-expand-lg {
    background: rgb(0, 0, 0, 10%) !important;
    padding: 0px;
    transition: background 0.5s ease, color 0.5s ease; /* Add transition for background and text color */
}
nav.navbar.navbar-expand-lg:hover {
    background: black !important;
}
nav.navbar.navbar-expand-lg:hover .nav-link {
    color: white;
}
.navbar .nav-item .nav-link {
    color: var(--white);
    font-family: "Helvetica";
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin: 0px 10px;
}
.navbar .header__btn .nav-phone {
    font-family: "Helvetica";
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: black;
    padding: 10px 50px 8px;
    z-index: 9;
}
.navbar .nav-item .nav-link {
    position: relative;
    overflow: visible;
    padding: 0.75em 0.4em;
    font-size: 20px;
}
.navbar .nav-item .nav-link::before,
.navbar .nav-item .nav-link::after {
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    background: var(--primary);
    content: "";
    position: absolute;
}
.navbar .nav-item .nav-link::before {
    top: -webkit-calc(110% - 0.25em);
    top: calc(110% - 0.25em);
    left: -webkit-calc(50% - 0.3em);
    left: calc(50% - 0.3em);
    width: 0.6em;
    height: 0.6em;
    border-radius: 1.2em;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.navbar .nav-item .nav-link::after {
    top: 110%;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.navbar .nav-item .nav-link:hover::before {
    webkit-transform: scale(1);
    transform: scale(1);
}
.navbar .nav-item .nav-link:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.navbar .header__btn{
    gap: 20px;
}
.nav-phone__one{
    margin-right: 10px;
}


/* Footer CSS */
    .site_footer{
        background-image: url(/assets/img/footer__bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .site_footer .footer__logo{
        padding-top: 20px;
    }
    .site_footer .footer__logo .site__footer__logo{
        width: 100%;
        max-width: 250px;
    }
    .site_footer .footer__menu{
        margin-top: 60px;
        padding: 0px 15px;
        min-height: 210px;
    }
    .site_footer .footer__menu h6{
        font-size: 18px;
        font-family: "Helvetica";
        font-weight: 600;
        color: #E5B44E;
        margin-bottom: 20px;
    }
    .site_footer .footer__menu ul{
        padding: 0;
    }
    .site_footer .footer__menu.footer__menu__first{
        position: relative;
    }
    .site_footer .footer__menu.footer__menu__first::before{
        border-right: 2px dashed #E5B44E;
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        right: 5px;
    }
    .site_footer .footer__menu.footer__menu__middle{
        border-right: 2px dashed #E5B44E;
    }
    .site_footer .footer__menu ul li{
        list-style: none;
    }
    .site_footer .footer__menu ul li + li{
        margin-top: 10px;
    }
    .site_footer .footer__menu ul li a{
        font-size: 16px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #E5B44E;
        position: relative;
        width: fit-content;
    }
    .site_footer .footer__menu ul li a::before,
    .site_footer .footer__menu ul li a::after {
        -webkit-transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        background: var(--primary);
        content: "";
        position: absolute;
    }
    .site_footer .footer__menu ul li a::before {
        top: -webkit-calc(110% - 0.25em);
        top: calc(110% - 0.25em);
        left: -webkit-calc(50% - 0.3em);
        left: calc(50% - 0.3em);
        width: 0.6em;
        height: 0.6em;
        border-radius: 1.2em;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .site_footer .footer__menu ul li a::after {
        top: 110%;
        left: 0;
        width: 100%;
        height: 2px;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    .site_footer .footer__menu ul li a:hover::before {
        webkit-transform: scale(1);
        transform: scale(1);
    }
    .site_footer .footer__menu ul li a:hover::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    .site_footer .footer__menu .social__links{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
        margin: 0;
    }
    .site_footer .footer__menu .social__links li{
        text-align: center;
    }
    .site_footer .footer__menu .social__links li + li{
        margin: 0;
    }
    .site_footer .footer__menu ul li a .footer__icon{
        width: auto;
        height: 18px;
    }
    .site_footer .copyRight .copy__right__text{
        font-size: 14px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #E5B44E;
    }
/* Footer CSS */



/* Home Page CSS Start */

    .hero-banner {
        position: relative;
        height: calc(100dvh - 0px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .hero-banner__other{
        height: calc(60dvh - 0px);
    }
    .hero-banner--inner {
        height: 600px;
    }
    :is(.hero-video, .hero-img) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    /* .overlay,
    .hero-banner::before {
        z-index: 1;
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        background: rgb(0 0 0 / 26%);
        top: 0;
        left: 0;
    }
    .overlay.videoOverlay{
        background: linear-gradient(to right, rgb(248, 245, 172, 40%), rgb(229, 180, 78, 40%));
    } */
    .hero-product-banner::before {
        background: rgb(0 0 0 / 20%);
    }
    .hero-banner .container {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
    }
    .hero-slide {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 2;
        position: relative;
    }
    /* Typography */
    .hero-banner .hero-content {
        z-index: 8;
        position: relative;
        font-family: "Helvetica";
        margin: 80px auto 0;
        color: var(--black);
        line-height: 1.1;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 20px 20px;
        width: fit-content;
    }
    .hero-banner .hero-content::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        /* background: linear-gradient(to right, rgb(248, 245, 172, 50%), rgb(229, 180, 78, 50%)); */
        background-color: rgb(0, 0, 0, 50%);
        z-index: -1;
        border-radius: 10px;
    }
    .hero-banner .hero-content .heading {
        font-family: "Helvetica";
        font-size: 60px;
        font-weight: 750;
        margin-bottom: 20px;
        color: var(--white);
        line-height: 1.1;
        letter-spacing: 2px;
        text-transform: capitalize;
    }
    .hero-banner .hero-content .description {
        font-size: 24px;
        max-width: 850px;
        margin: 20px auto;
        font-family: "Helvetica";
        font-weight: 500;
        text-transform: capitalize;
        color: white;
    }
    .hero-banner--inner .hero-content .description {
        max-width: 750px;
    }
    .hero-banner .hero-content .banner__Btn{
        font-size: 20px;
        color: white;
        font-family: "Helvetica";
        font-weight: 500;
        margin: 0;
        background-color: transparent;
        border: 2px solid #ffffff;
        padding: 15px 30px;
        border-radius: 10px;
    }
    .hero-banner .hero-content .banner__Btn:hover{
        color: #000000;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
        font-weight: 400;
        background: var(--primary);
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 90%; /* Double the width */
        border: 2px solid #E5B44E;
        background-position: 100% 0;
    }


    .about_info {
        padding: 4rem 0;
    }
    .about_info .box {
        width: 100%;
        max-width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: end;
        z-index: 1;
    }
    .about_info h2 {
        text-align: right;
        background: linear-gradient(to right, #E5B44E, #F8F5AC);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-family: "Helvetica";
    }
    .about_info h4 {
        text-align: right;
        margin-top: 30px;
        background: linear-gradient(to right, #F8F5AC, #E5B44E);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-family: "Helvetica";
    }
    .about_info p {
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        color: white;
        text-align: right;
        border-bottom: 2px solid #E5B44E;
        width: fit-content;
        padding-bottom: 10px;
    }
    .about__section__ul_desktop{
        display: block;
    }
    .about__section__ul_mobile{
        display: none;
    }
    .about_info ul li{
        text-align: end;
        list-style: none;
        font-size: 16px;
        font-family: "Helvetica";
    }
    .about_info__bg {
        background: url(../img/contact__image__section.png) no-repeat center center/cover;
        border-radius: 10px;
        padding: 4rem;
        position: relative;
    }
    .about_info__bg::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(27, 27, 27, 50%);
        border-radius: 10px;
        z-index: -1;
    }


    .how__it__works{
        padding: 20px 0 80px;
        position: relative;
        overflow: hidden;
    }
    .how__it__works .light__yellow__shade__one{
        position: absolute;
        top: -6%;
        left: -28%;
    }
    .how__it__works .light__yellow__shade__two{
        position: absolute;
        top: -6%;
        right: -28%;
    }
    .how__it__works .title{
        width: 100%;
        margin-bottom: 60px;
    }
    .how__it__works .box h5 {
        font-size: 30px;
        font-family: "Helvetica";
        margin: 0 0 10px;
    }
    .how__it__works .box h6 {
        margin: 0 0 10px;
        font-size: 18px;
        font-family: "Helvetica";
    }
    .how__it__works .box p {
        font-size: 16px;
        font-family: "Helvetica";
    }
    .how__it__works .box .down__heading{
        margin-top: 30px;
    }
    .how__it__works .box__left{
        display: flex;
        flex-direction: column;
        align-items: end;
    }
    .how__it__works .box__left p{
        text-align: right;
    }
    .how__it__works .title h2{
        text-align: center;
        font-size: 120px;
        background: linear-gradient(to right, #E5B44E, #F8F5AC);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-family: "Helvetica";
        font-weight: 600;
    }
    .how__it__works .rotating__container__mobile{
        display: none;
    }
    .rotating__container {
        position: relative;
        width: 350px; /* Smaller container */
        height: 350px;
        margin: auto;
    }
    .rotating__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
    animation: spinReverse 30s linear infinite;
    pointer-events: none;
    }
    @keyframes spinReverse {
    100% {
        transform: rotate(-360deg);
    }
    }
    .rotating__container .fav__icon{
        position: absolute;
        top: 37%;
        left: 37%;
    }
    .rotating__container span.circle{
        width: 60px;
        height: 60px;
        background: linear-gradient(to right, #F8F5AC , #E5B44E );
        border-radius: 50%;
    }
    .rotating__container .span__one{
        position: absolute;
        top: 7%;
        left: 4%;
    }
    .rotating__container .span__two{
        position: absolute;
        bottom: 34%;
        left: -7.5%;
    }
    .rotating__container .span__three{
        position: absolute;
        top: 7%;
        right: 4%;
    }
    .rotating__container .span__four{
        position: absolute;
        bottom: 34%;
        right: -7.5%;
    }
    .rotating__circle {
        position: absolute;
        top: 50.5%;
        left: 50%;
        width: 200px; /* adjust as needed */
        height: 200px;
        transform: translate(-50%, -50%); /* centers it precisely */
    }
    .rotating__circle h1 {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        animation: spin 10s linear infinite;
        transform-origin: center center; /* ensures perfect rotation around center */
    }
    .rotating__circle h1 span {
        position: absolute;
        left: 50%;
        top: 0;
        transform-origin: 0 100px; /* half of parent height */
        font-size: 30px;
        font-family: "Helvetica", sans-serif;
        font-weight: 400;
        background: linear-gradient(to right, #E5B44E, #F8F5AC);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        animation: none;
    }
    /* Rotating letters on a circle */
    .rotating__circle h1 span:nth-child(1)  { transform: rotate(10deg); }
    .rotating__circle h1 span:nth-child(2)  { transform: rotate(23.36deg); }
    .rotating__circle h1 span:nth-child(3)  { transform: rotate(32.72deg); }
    .rotating__circle h1 span:nth-child(4)  { transform: rotate(49.08deg); }
    .rotating__circle h1 span:nth-child(5)  { transform: rotate(65.44deg); }
    .rotating__circle h1 span:nth-child(6)  { transform: rotate(81.80deg); }
    .rotating__circle h1 span:nth-child(7)  { transform: rotate(98.16deg); }
    .rotating__circle h1 span:nth-child(8)  { transform: rotate(114.52deg); }
    .rotating__circle h1 span:nth-child(9)  { transform: rotate(130.88deg); }
    .rotating__circle h1 span:nth-child(10) { transform: rotate(147.24deg); }
    .rotating__circle h1 span:nth-child(11) { transform: rotate(163.60deg); }
    .rotating__circle h1 span:nth-child(12) { transform: rotate(179.96deg); }
    .rotating__circle h1 span:nth-child(13) { transform: rotate(196.32deg); }
    .rotating__circle h1 span:nth-child(14) { transform: rotate(212.68deg); }
    .rotating__circle h1 span:nth-child(15) { transform: rotate(229.04deg); }
    .rotating__circle h1 span:nth-child(16) { transform: rotate(245.40deg); }
    .rotating__circle h1 span:nth-child(17) { transform: rotate(261.76deg); }
    .rotating__circle h1 span:nth-child(18) { transform: rotate(278.12deg); }
    .rotating__circle h1 span:nth-child(19) { transform: rotate(294.48deg); }
    .rotating__circle h1 span:nth-child(20) { transform: rotate(310.84deg); }
    .rotating__circle h1 span:nth-child(21) { transform: rotate(327.20deg); }
    .rotating__circle h1 span:nth-child(22) { transform: rotate(343.56deg); }
    @keyframes spin {
        100% {
            transform: rotate(360deg);
        }
    }


    .who__we__fund{
        padding: 0 0 80px;
        position: relative;
        overflow: hidden;
    }
    .who__we__fund .title{
        margin: 0 auto 60px;
    }
    .who__we__fund .title h2{
        font-size: 60px;
        font-family: "Helvetica";
    }
    .who__we__fund .box{
        border: 2px dashed #E5B44E;
        border-radius: 10px;
        padding: 20px 30px;
    }
    .who__we__fund .box .icon{
        width: auto;
        height: 100px;
        margin-bottom: 20px;
    }
    .who__we__fund .box h6{
        font-size: 20px;
        min-height: 30px;
        margin: 0;
        font-family: "Helvetica";
    }
    .who__we__fund .box p{
        font-size: 16px;
        font-family: "Helvetica";
    }



    input[type="range"] {
        width: 100%;
        max-width: 600px;
    }
    .calculatorBox2 .disclaimer {
        font-size: 16px !important;
        margin: 30px auto 20px;
        font-weight: 400 !important;
        width: 100% !important;
        max-width: 75%;
        /* word-break: break-all; */
    }
    .calculatorBox2 .disclaimer::before {
        display: none !important;
    }
    .calculatorSec2 .heading {
        font-size: 60px;
        font-family: "Helvetica";
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: capitalize;
        color: #E5B44E;
    }
    .calculatorSec2 .subHeading {
        font-size: 30px;
        font-family: "Helvetica";
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin: 0;
        text-transform: capitalize
    }
    /* Additional basic styling to match your design */
    .calculatorSec2 {
        padding: 30px 0;
        margin: 0;
    }
    .calculatorBox2 {
        padding: 25px 0px;
        margin: 60px auto 0;
        height: auto;
        position: relative;
    }
    .calculatorBox2::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        content: "";
        border-radius: 50px;
        max-width: 80%;
        border: 1px solid #E5B44E;
        box-shadow: inset 0px 1px 19px 0px rgb(255, 255, 255), 6px 6px 12px 0px #E5B44E;
        margin: 0 auto;
        z-index: -1;
    }
    .calculatorSec2 .calculatorBox2 h4 {
        font-size: 30px;
        font-family: "Helvetica";
        font-weight: 700;
        margin: 20px auto 30px;
        position: relative;
        border: 2px solid #E5B44E;
        border-radius: 10px;
        padding: 5px 10px;
        max-width: fit-content;
    }
    .calculatorControls {
        max-width: 100%;
        margin: 20px auto 20px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .calculatorControls2 {
        max-width: 100%;
        margin: 10px auto 20px;
        gap: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .calculatorControls2 .loanTermSelect {
        font-size: 28px;
        font-family: "Helvetica";
        color: white;
        position: relative;
    }
    .calculatorControls label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }
    .custom-select-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: 400px;
    }
    .custom-select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 100%;
        padding: 10px 15px;
        padding-right: 40px;
        border: 1px solid #E5B44E;
        box-shadow: inset 0px 1px 19px 0px rgb(255, 255, 255, 30%), 6px 6px 12px 0px rgb(229, 180, 78, 30%);
        border-radius: 10px;
        background-color: transparent;
        font-size: 18px;
        color: white;
        cursor: pointer;
        outline: none;
        transition: all 0.3s ease;
        text-align: center;
        font-family: "Helvetica";
    }
    /* Style dropdown options (works in most modern browsers) */
    .custom-select option {
        background-color: #E5B44E;
        /* Blue background */
        color: black;
        /* White text */
        padding: 10px;
        font-size: 16px;
    }
    /* Hover state for options */
    .custom-select option:hover {
        background-color: #ffffff !important;
    }
    .custom-select:hover {
        border-color: white;
    }
    .custom-select:focus {
        border-color: #E5B44E;
        box-shadow: inset 0px 1px 19px 0px rgb(255, 255, 255, 30%), 6px 6px 12px 0px rgb(229, 180, 78, 30%);
    }
    .custom-arrow {
        position: absolute;
        top: 20%;
        right: 15px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #E5B44E;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .custom-arrow i {
        font-size: 16px;
        color: black;
        font-weight: 600;
        transition: transform 0.3s ease;
    }
    /* For IE11 */
    select::-ms-expand {
        display: none;
    }
    .calculatorControls select {
        display: flex;
        justify-content: flex-start;
        align-content: flex-start
    }
    .calculatorControls .amountInput {
        font-size: 35px;
        font-family: "Helvetica";
        font-weight: 700;
        margin: 0;
        color: #E5B44E;
        background-color: transparent;
        padding: 10px 30px;
        border-radius: 10px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #E5B44E;
    }
    .calculatorResult2 {
        border: 1px solid #E5B44E;
        box-shadow: inset 0px 1px 19px 0px rgb(255, 255, 255), 6px 6px 12px 0px #E5B44E;
        border-radius: 50px;
        padding: 15px 12px;
        max-width: 100%;
        background-color: black;
    }
    .calculatorResult2 table {
        border-collapse: collapse;
        margin-top: 20px;
        width: 100%;
        max-width: 100% !important;
        border: none;
    }
    .calculatorResult2 table th {
        font-size: 24px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #fff;
        padding: 10px;
        position: relative;
        border-bottom: 2px solid #E5B44E;
        border-right: 2px solid #E5B44E;
    }
    .calculatorResult2 table th.weekly__border{
        border-right: none !important;
    }
    .calculatorResult2 table tbody tr td.weekly__border{
        border-right: none !important;
    }
    .calculatorResult2 table thead {
        border-radius: 5px;
    }
    .calculatorResult2 table tbody tr td{
        border-right: 2px solid #E5B44E;
    }
    .calculatorResult2 table td {
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #fff;
        padding: 10px;
    }
    .mb-4 {
        margin-bottom: 20px;
    }
    .mt-4 {
        margin-top: 20px;
    }
    .text-center {
        text-align: center;
    }
    #loanAmount {
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        /* background: linear-gradient(to right, #E5B44E 0%, #ccc 0%); */
        background-color: #E5B44E;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 10px;
    }
    /* Track */
    #loanAmount::-webkit-slider-runnable-track {
        height: 6px;
        background: transparent;
        border-radius: 10px;
    }
    #loanAmount::-moz-range-track {
        height: 6px;
        background: transparent;
        border-radius: 10px;
    }
    #loanAmount::-ms-track {
        height: 6px;
        background: transparent;
        border-color: transparent;
        color: transparent;
    }
    /* Thumb */
    #loanAmount::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        background: white;
        border: 1px solid #E5B44E;
        border-radius: 50%;
        margin-top: -7px;
        /* (25 - 15) / 2 = 5 */
        cursor: pointer;
    }
    #loanAmount::-moz-range-thumb {
        height: 20px;
        width: 20px;
        background: white;
        border: 1px solid #E5B44E;
        border-radius: 50%;
        cursor: pointer;
    }
    #loanAmount::-ms-thumb {
        height: 20px;
        width: 20px;
        background: white;
        border: 1px solid #E5B44E;
        border-radius: 50%;
        cursor: pointer;
    }


    .why_choose{
        padding: 40px 0 80px;
    }
    .why_choose .title{
        margin: 0 auto 60px;
    }
    .why_choose .title h2{
        font-size: 60px;
        color: #E5B44E;
        font-family: "Helvetica";
    }
    .why_choose .icon_box{
        background-color: #E5B44E;
        border-radius: 50%;
        text-align: center;
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        padding: 20px;
    }
    .why_choose .icon{
        width: auto;
        height: 60px;
    }
    .why_choose .content_box{
        background-color: #E5B44E;
        border-radius: 10px;
        padding: 20px 2px 2px;
        box-shadow: inset 3px 4px 9px 0px rgba(0, 0, 0, 25%), 0px 239px 67px 0px rgba(0, 0, 0, 25%);
    }
    .why_choose .content_box h6{
        font-size: 24px;
        color: black;
        text-align: center;
        margin: 0 0 10px;
        font-family: "Helvetica";
    }
    .why_choose .content_box p{
        font-size: 24px;
        color: rgb(255, 255, 255);
        min-height: 110px;
        background-color: #000000;
        padding: 10px 20px 5px;
        text-align: center;
        margin: 0;
        border-radius: 0px 0px 10px 10px;
        font-family: "Helvetica";
    }


    .client_reviews_section {
        padding: 60px 0 80px;
        overflow: hidden;
    }
    .client_reviews_section .sec_heading{
        background-color: #313131;
        margin-bottom: 40px;
        padding: 10px 0;
    }
    .client_reviews_section .sec_heading h2 {
        margin-bottom: 0px;
        color: #E5B44E;
        font-size: 60px;
        font-weight: 600;
        font-family: "Helvetica";
    }
    .client_reviews_slider .review{
        background-color: #E5B44E;
        border-radius: 20px;
        padding: 3px 3px;
    }
    .client_reviews_slider .review .review_text{
        background-color: #000000;
        border-radius: 20px;
        padding: 20px 30px;
    }
    /* Animation for content change */
    .client_reviews_slider .review_text, .reviewer_name {
        animation: fadeIn 0.5s ease;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .client_reviews_slider .review .review_text p{
        margin: 0 auto;
        text-align: center;
        font-size: 30px;
        font-family: "Helvetica";
        font-weight: 300;
        color: white;
    }
    .client_reviews_slider .review .reviewer_name{
        padding: 20px 0 20px;
    }
    .client_reviews_slider .review .reviewer_name h2{
        margin: 0 auto;
        text-align: center;
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 600;
        color: rgb(0, 0, 0);
    }
    .client_reviews_slider {
        position: relative;
    }
    .client_reviews_slider .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: transparent;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .client_reviews_slider .slick-prev {
        left: -60px;
    }
    .client_reviews_slider .slick-next {
        right: -60px;
    }
    .client_reviews_slider .slick-next:before,
    .client_reviews_slider .slick-prev:before {
        display: none;
    }
    .client_reviews_slider .slick-arrow img {
        width: 35px;
        height: 35px;
    }
    .client_reviews_slider {
        transition: height 0.4s ease;
    }

    .client_reviews_section {
        overflow: hidden;
    }


    .cta_section{
        padding: 20px 0 80px;
        position: relative;
        overflow: hidden;
    }
    .cta_section .cta_content h2{
        font-size: 46px;
        color: #E5B44E;
        font-family: "Helvetica";
    }
    .cta_section .cta_content p{
        font-size: 20px;
        color: white;
        margin-bottom: 20px;
        font-family: "Helvetica";
    }
    .cta_section .cta_content .cta_btn{
        font-size: 24px;
        font-family: "Helvetica";
        color: #E5B44E;
        background-color: transparent;
        border: 2px solid #E5B44E;
        border-radius: 10px;
        padding: 5px 60px;
    }
    .cta_section .cta_content .cta_btn:hover{
        color: #000000;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
        font-weight: 400;
        background: var(--primary);
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 100%; /* Double the width */
        border: 2px solid #E5B44E;
        background-position: 100% 0;
    }
    .cta_section .cta_img{
        width: 100%;
    }

/* Home Page CSS End */




/* Contact Page CSS Start */

    .hero-contact__banner--inner {
        height: 600px;
        border-bottom: 2px solid #E5B44E;
    }
    :is(.hero-video, .hero-img) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .hero-contact__banner--inner .hero-content{
        margin: 100px auto 0;
    }
    .hero-contact__banner--inner .hero-content::before{
        display: none;
    }
    .hero-contact__banner--inner .hero-content .heading{
        color: #E5B44E;
        margin: 0 auto;
        text-transform: uppercase;
    }
    .hero-contact__banner--inner .hero-content .subHeading{
        color: #E5B44E;
        margin: 20px auto 0;
        font-size: 24px;
        font-family: "Helvetica";
        font-weight: 500;
    }


    .contact__form__section{
        padding: 80px 0 80px;
        position: relative;
        overflow: hidden;
    }
    .contact__form__section .light__yellow__shade__one {
        position: absolute;
        bottom: -48%;
        left: -15%;
        opacity: 28% !important;
        z-index: -1;
    }
    .contact__form__section .light__yellow__shade__two {
        position: absolute;
        top: 0;
        right: -30%;
        opacity: 40% !important;
        z-index: -1;
    }
    .contact__form__section .form__box{
        border: 2px solid #E5B44E;
        border-radius: 10px;
        padding: 20px 30px;
        box-shadow: inset 0px 1px 19px 0px rgb(255, 255, 255), 6px 6px 12px 0px #E5B44E;
    }
    .contact__form__section .form__group label{
        color: white;
        font-family: "Helvetica";
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 1.625rem;
        /* 173.333% */
        letter-spacing: -0.0375rem;
        position: relative;
        z-index: 8;
        padding: 0 10px 0px 10px;
    }
    .contact__form__section .form__group input{
        font-size: 16px;
        background-color: transparent;
        border: 1px solid #E5B44E;
        border-radius: 5px;
        color: #ffffff;
        padding: 10px 10px;
        font-family: "Helvetica";
        font-weight: 400;
        width: 100%;
    }
    .contact__form__section .form__group input::placeholder{
        font-size: 16px;
        color: rgba(255, 255, 255, 0.4);
        font-family: "Helvetica";
        font-weight: 400;
    }
    .contact__form__section .form__group textarea{
        font-size: 16px;
        background-color: transparent;
        border: 1px solid #E5B44E;
        border-radius: 5px;
        color: white;
        padding: 10px 10px;
        font-family: "Helvetica";
        font-weight: 400;
        width: 100%;
    }
    .contact__form__section .form__group textarea::placeholder{
        font-size: 16px;
        color: rgba(255, 255, 255, 0.4);
        font-family: "Helvetica";
        font-weight: 400;
    }
    .contact__form__section .form__img{
        width: 100%;
        max-width: 86%;
        transform: rotate(-10deg) !important;
    }
    .contact__form__section .form_btn{
        font-size: 20px;
        background: var(--primary);
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 100%; /* Double the width */
        padding: 10px 100px;
        text-align: center;
        border-radius: 5px;
        color: #000000;
        font-family: "Helvetica";
        font-weight: 800;
    }
    .contact__form__section .form_btn:hover{
        color: #000000;
        background-position: 100% 0;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
    }
    .contact__form__section .agree{
        width: 100%;
        max-width: 95%;
    }
    .contact__form__section .agree p{
        font-size: 20px;
        color: white;
        font-family: "Helvetica";
        font-weight: 400;
        margin: 0;
    }
    .contact__form__section .circular_checkbox {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }
    .contact__form__section .circular_checkbox .checkbox_text{
        font-size: 20px;
        color: white;
        font-family: "Helvetica";
        font-weight: 400;
        cursor: default;
    }
    .contact__form__section .circular_checkbox input[type="checkbox"] {
        display: none; /* Hide the default checkbox */
    }
    .contact__form__section .circular_checkbox span {
        display: inline-block;
        vertical-align: middle;
    }
    .contact__form__section .circular_checkbox span:first-of-type {
        width: 30px; /* Adjust the size */
        height: 14px;
        background-color: white;
        border-radius: 50%; /* Makes it circular */
        position: relative;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-right: 10px; /* Space between circle and text */
        margin-bottom: 25px;
    }
    .contact__form__section .circular_checkbox input[type="checkbox"]:checked + span:first-of-type {
        background-color: #E5B44E; /* Background color when checked */
    }
    /* .contact__form__section .circular_checkbox span:first-of-type::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        background: white;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.3s ease;
    } */
    .contact__form__section .circular_checkbox input[type="checkbox"]:checked + span:first-of-type::after {
        transform: translate(-50%, -50%) scale(1); /* Show checkmark when checked */
    }
    .g-recaptcha iframe {
        transform: scale(0.85);
        /* Adjust the scale for responsiveness */
        transform-origin: 0 0;
        /* Keeps it aligned properly */
    }
    .form__footer{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }

/* Contact Page CSS End */



/* Syndicate Boarding Page CSS Start */

    .hero-banner--inner_syndicate_boarding {
        height: calc(100dvh - 0px);
    }
    .hero-banner--inner_syndicate_boarding .border__heading{
        border: 2px solid rgb(255, 255, 255);
        padding: 10px;
        border-radius: 20px;
    }
    .hero-banner--inner_syndicate_boarding .fav__icon__one {
        position: absolute;
        bottom: 62%;
        left: -4%;
        width: 11%;
        opacity: 50%;
        z-index: 1;
    }
    .hero-banner--inner_syndicate_boarding .fav__icon__two {
        position: absolute;
        bottom: 10%;
        right: -8%;
        width: 16%;
        opacity: 50%;
        z-index: 1;
        transform: rotate(-40deg);
    }
    :is(.hero-video, .hero-img) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .hero-banner--inner_syndicate_boarding .hero-content{
        margin: 100px auto 0;
    }
    .hero-banner--inner_syndicate_boarding .hero-content::before{
        /* display: none; */
        background-color: rgb(0, 0, 0, 65%);
    }
    .hero-banner--inner_syndicate_boarding .hero-content .heading{
        color: #ffffff;
        font-size: 64px;
        font-family: "Helvetica";
        font-weight: 700;
        width: fit-content;
        text-align: center;
        margin: 0 auto;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading {
        font-family: "Helvetica";
        font-weight: 500;
        font-size: 24px;
        color: #ffffff;
        margin: 20px auto 5px;
        text-transform: capitalize;
        text-align: center;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading__desktop {
        display: block;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading__mobile {
        display: none;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .description {
        font-size: 20px;
        margin: 0px auto 20px;
        font-family: "Helvetica";
        font-weight: 300;
        padding: 0;
        color: #ffffff;
        line-height: 25px;
        text-transform: none;
        text-align: center;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .hero_banner_btn{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        padding: 10px 30px;
        background-color: transparent;
        color: rgb(255, 255, 255);
        border: 2px solid #ffffff;
        border-radius: 10px;
        margin-top: 15px auto;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .hero_banner_btn:hover{
        color: #000000;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
        font-weight: 400;
        background: var(--primary);
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 90%; /* Double the width */
        border: 2px solid #E5B44E;
        background-position: 100% 0;
    }
    .hero_banner_img{
        width: 100%;
        max-width: 100%;
    }


    .paragraph__banner{
        padding: 60px 0 80px;
    }
    .paragraph__banner .box{
        background-color: #E5B44E;
        padding: 20px;
    }
    .paragraph__banner .box .inner__box{
        background-color: #E5B44E;
        position: relative;
        overflow: hidden;
        border: 2px solid #000000;
        box-shadow: 2px 4px 7px 0px rgba(0 0 0 / 25%);
        padding: 40px 60px;
    }
    .paragraph__banner .box .inner__box::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0 0 0 / 40%);
        z-index: 0;
    }
    .inner__box__content{
        position: relative;
        z-index: 1;
    }
    .paragraph__banner .box .inner__box h2{
        color: var(--white);
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 600;
        margin: 0 auto 10px;
        text-align: center;
    }
    .paragraph__banner .box .inner__box p{
        color: var(--white);
        font-size: 24px;
        font-family: "Helvetica";
        font-weight: 400;
        margin: 0 auto;
        text-align: center;
    }



    .how__it__works.how__it__works_syndicate{
        padding: 20px 0 160px;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__one{
        position: absolute;
        top: -0%;
        left: -28%;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__two{
        position: absolute;
        top: -0%;
        right: -28%;
    }
    .how__it__works.how__it__works_syndicate .rotating__container .span__two {
        position: absolute;
        bottom: 22%;
        left: -3.5%;
    }
    .how__it__works.how__it__works_syndicate .rotating__container .span__four{
        position: absolute;
        bottom: 25%;
        right: -4.5%;
    }
    .how__it__works.how__it__works_syndicate .rotating__container .span__five{
        position: absolute;
        bottom: -7%;
        right: 40.5%;
    }
    .how__it__works.how__it__works_syndicate .rotating__container__mobile{
        display: none;
    }
    .accordion-item {
        margin-bottom: 10px;
        background-color: none;
        border: none;
        display: none;
        z-index: 9;
    }
    .accordion-button {
        font-size: 24px;
        font-weight: 600;
        font-family: "Helvetica";
        color: #000000;
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 100%; /* Double the width */
        transition: all 0.5s ease;
        border-radius: 10px !important;
        z-index: 8;
    }
    .accordion-button::after {
        display: none;
    }
    .accordion-button:hover {
        color: #000000;
        background-position: 100% 0;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
    }
    .accordion-button:focus {
        border: none !important;
        box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) {
        color: #000000;
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 100%; /* Double the width */
        transition: all 0.5s ease;
    }
    .accordion-header {
        margin-bottom: 0;
        background-color: rgb(0 0 0);
    }
    .accordion-collapse{
        background-color: #000000;
    }
    .accordion-body {
        margin-top: -10px;
        border: 2px solid #E5B44E;
        border-radius: 20px;
        padding: 40px 0 20px;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .accordion-body p {
        font-size: 20px;
        font-weight: 400 !important;
        font-family: "Helvetica";
        color: rgb(255, 255, 255);
        width: 100%;
        max-width: 90%;
    }


    .why__partner__section{
        padding: 80px 0 80px;
        position: relative;
        overflow: hidden;
        background-image: url(../img/why_partner_with_innocap_bg.png);
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        border-top: 2px solid #E5B44E;
        border-bottom: 2px solid #E5B44E;
    }
    .why__partner__section .sec_heading{
        margin-bottom: 80px;
    }
    .why__partner__section .sec_heading h2 {
        margin-bottom: 0px;
        color: #E5B44E;
        font-size: 48px;
        font-weight: 600;
        font-family: "Helvetica";
    }
    .why__partner__section .box{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .why__partner__section .box h2{
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 800;
        color: black;
        background-color: #E5B44E;
        border: 2px solid white;
        border-radius: 50%;
        width: 140px;
        height: 140px;
        position: absolute;
        top: -5%;
        left: -9%;
        margin: 0;
        align-content: center;
        text-align: center;
        box-shadow: 2px 1px 8px 0px rgba(0 0 0 / 25%);
    }
    .why__partner__section .box h2:hover{
        color: #E5B44E;
        background-color: #000000;
    }
    .why__partner__section .box p{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 600;
        color: black;
        background-color: white;
        border: 2px solid #E5B44E;
        border-radius: 10px;
        padding: 10px 5px 10px 65px;
        box-shadow: 7px 4px 4px 0px rgba(0 0 0 / 25%);
        max-width: 80%;
        min-height: 130px;
        align-content: center;
    }
    .why__partner__section .box p:hover{
        color: white;
        background-color: #000000;
    }


    .legal__structure {
        padding: 80px 0px 80px;
        position: relative;
        overflow: hidden;
        border-bottom: 2px solid #E5B44E;
    }
    .legal__structure .light__yellow__shade__one{
        position: absolute;
        top: -30%;
        right: -24%;
        opacity: 40% !important;
    }
    .legal__structure .light__yellow__shade__two{
        position: absolute;
        bottom: 16%;
        left: -28%;
        opacity: 40% !important;
    }
    .legal__structure .legal__structure__img {
        position: relative;
        z-index: 2;
        border-radius: 10px;
        margin: 0 auto;
        object-fit: cover;
    }
    .legal__structure .bg-square {
        position: absolute;
        z-index: 1;
        border-radius: 0.625rem;
    }
    .legal__structure .square-1 {
        top: -4%;
        left: 12%;
        width: 85%;
        height: 290px;
        border: 2px solid #E5B44E;
        border-radius: 20px;
    }
    .legal__structure .sec_heading h2{
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 800;
        color: #E5B44E;
    }
    .legal__structure .sec_heading h6{
        font-size: 28px;
        font-family: "Helvetica";
        font-weight: 600;
        color: #ffffff;
    }
    .legal__structure .sec_heading p{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 300;
        color: #ffffff;
    }
    .legal__structure .sec_heading.sec_heading_wellcome {
        padding-left: 140px;
    }
    .legal__structure ul {
        padding-left: 15px;
    }
    .legal__structure ul li {
        list-style-type: disc;
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 300;
        color: rgb(255, 255, 255);
    }
    .legal__structure ul li::marker{
        font-size: 16px;
    }


    .required__documentation__section{
        padding: 80px 0 60px;
        position: relative;
        overflow: hidden;
    }
    .required__documentation__section::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 25%;
        left: 0;
        background: linear-gradient(to bottom, #000000, rgb(229, 180, 78, 50%));
        z-index: 0;
    }
    .required__documentation__section .content{
        z-index: 1;
        position: relative;
    }
    .required__documentation__section h2{
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 600;
        color: #E5B44E;
        margin: 0 auto 20px;
    }
    .required__documentation__section h6{
        font-size: 28px;
        font-family: "Helvetica";
        font-weight: 600;
        color: white;
        margin: 0 auto 25px;
    }
    .required__documentation__section p{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        color: white;
        margin: 0 auto 0px;
        max-width: 800px;
        text-align: center;
    }
    .required__documentation__section .icon__para{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        color: white;
        margin: 0 auto 0px;
        max-width: 800px;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .required__documentation__section .icon__para .icon{
        width: auto;
        height: 120px;
        vertical-align: middle;
    }



    .paragraph__banner__black{
        background-color: transparent;
        position: relative;
        overflow: hidden;
    }
    .paragraph__banner__black .box{
        background-color: transparent;
        border: 2px solid #E5B44E;
        border-radius: 20px;
        padding: 40px 40px;
    }
    .paragraph__banner__black .purple__shade__one{
        position: absolute;
        top: 10%;
        left: -10%;
        width: 30%;
        opacity: 30% !important;
        animation: wave-center-left 5s ease-in-out infinite;
    }
    .paragraph__banner__black .box h2{
        color: #E5B44E;
        font-weight: 800;
        font-family: "Helvetica";
    }
    .paragraph__banner__black .box p{
        font-size: 24px;
        font-family: "Helvetica";
        color: white;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    .paragraph__banner__black .purple__shade__two{
        position: absolute;
        top: 10%;
        right: -10%;
        width: 30%;
        opacity: 30% !important;
        animation: wave-center-right 5s ease-in-out infinite;
    }
    /* Faster floating animation */
    @keyframes wave-center-left {
        0% {
            transform: translate(0, 0) scale(1);
        }
        25% {
            transform: translate(30%, -15px) scale(1.05);
        }
        50% {
            transform: translate(60%, 0) scale(1.2); /* closest to center */
        }
        75% {
            transform: translate(30%, 15px) scale(1.05);
        }
        100% {
            transform: translate(0, 0) scale(1);
        }
    }
    @keyframes wave-center-right {
        0% {
            transform: translate(0, 0) scale(1);
        }
        25% {
            transform: translate(-30%, 15px) scale(1.05);
        }
        50% {
            transform: translate(-60%, 0) scale(1.2); /* closest to center */
        }
        75% {
            transform: translate(-30%, -15px) scale(1.05);
        }
        100% {
            transform: translate(0, 0) scale(1);
        }
    }

/* Syndicate Boarding Page CSS End */


/* Case Studies Page CSS Start */

    .hero-banner--inner_case_studies {
        height: calc(100dvh - 0px);
        border-bottom: 2px solid #E5B44E;
    }
    .hero-banner--inner_case_studies .border__heading{
        border: 2px solid black;
        padding: 10px;
        border-radius: 20px;
    }
    .hero-banner--inner_case_studies .fav__icon__one {
        position: absolute;
        bottom: 66%;
        left: -6%;
        width: 11%;
        opacity: 30%;
        transform: rotate(-28deg);
        z-index: 1;
    }
    .hero-banner--inner_case_studies .yellow_shade{
        position: absolute;
        bottom: -8%;
        left: -15%;
        width: 30%;
        opacity: 0.6;
        animation: yellowGlow 2.5s ease-in-out infinite alternate;
    }
    .hero-banner--inner_case_studies .yellow_shade_two {
        position: absolute;
        bottom: 50%;
        right: -12%;
        width: 30%;
        opacity: 0.6;
        animation: yellowGlow 2.5s ease-in-out infinite alternate-reverse;
        animation-delay: 0.5s; /* Staggered effect */
    }
    .hero-banner--inner_case_studies .yellow_shade,
    .hero-banner--inner_case_studies .yellow_shade_two {
        will-change: filter; /* Optimizes animation performance */
    }
    .hero-banner--inner_case_studies .hero-content::before{
        display: none;
    }
    .hero-banner--inner_case_studies .hero-content .heading {
        font-family: "Helvetica";
        font-size: 60px;
        font-weight: 750;
        margin-bottom: 20px;
        color: #E5B44E;
        line-height: 1.1;
        letter-spacing: 2px;
        text-transform: capitalize;
    }
    .hero-banner--inner_case_studies .hero-content .description {
        font-size: 16px;
        max-width: 650px;
        margin: 20px auto;
        font-family: "Helvetica";
        font-weight: 500;
        text-transform: capitalize;
    }
    .hero-banner--inner_case_studies .hero-content .hero_banner_btn{
        font-size: 20px;
        color: black;
        font-family: "Helvetica";
        font-weight: 400;
        margin: 0;
        background: var(--primary);
        background: linear-gradient(to right, #E5B44E 0%, #F8F5AC 50%, #E5B44E 100%);
        background-size: 200% 100%; /* Double the width */
        padding: 15px 30px;
        border-radius: 10px;
    }
    .hero-banner--inner_case_studies .hero-content .hero_banner_btn:hover{
        color: #000000;
        background-position: 100% 0;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
    }
    @keyframes yellowGlow {
        0% {
            filter:
                brightness(0.95)
                drop-shadow(0 0 2px #E5B44E80);
            opacity: 0.5;
        }
        50% {
            filter:
                brightness(1.15)
                drop-shadow(0 0 10px #E5B44E);
            opacity: 0.8;
        }
        100% {
            filter:
                brightness(1.05)
                drop-shadow(0 0 5px #E5B44EC0);
            opacity: 0.7;
        }
    }

    .hero-banner--inner_case_studies .hero__banner__img{
        animation: floating 3s ease-in-out infinite;
    }
    @keyframes floating {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }


    .bars {
        display: flex;
        flex-direction: column;
        margin-top: 60px;
    }
    .bar {
        width: 60%;
        height: 35px;
        border: 2px solid #E5B44E;
        border-radius: 10px;
        transform: rotate(-45deg);
        animation: moveLeftRight 2s ease-in-out infinite;
    }
    /* Exact offsets + reduced first gap */
    .bar:nth-child(1) { align-self: flex-start; margin-bottom: -50px; animation-delay: 0s; }
    .bar:nth-child(2) { align-self: flex-end;   margin-bottom: 12px; animation-delay: 0.2s; }
    .bar:nth-child(3) { align-self: center;     margin-bottom: 12px; animation-delay: 0.4s; }
    .bar:nth-child(4) { align-self: flex-start; margin-bottom: 12px; animation-delay: 0.6s; }
    .bar:nth-child(5) { align-self: flex-end;   margin-bottom: 12px; animation-delay: 0.8s; }
    .bar:nth-child(6) { align-self: center;     animation-delay: 1s; }
    @keyframes moveLeftRight {
        0%, 100% { transform: rotate(-45deg) translateX(0); }
        50%      { transform: rotate(-45deg) translateX(20px); }
    }


    .wave-container {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: absolute;
        bottom: -46%;
    }
    .wave-container svg {
        width: 100%;
        height: 100%;
    }


    .card_section{
        padding: 80px 0 80px;
        position: relative;
        overflow: hidden;
    }
    .card_section .yellow_shade{
        position: absolute;
        top: -14%;
        right: -15%;
        width: 30%;
        opacity: 0.6;
        animation: yellowGlow 2.5s ease-in-out infinite alternate;
    }
    .card_section .card{
        border: 2px solid #E5B44E;
        border-radius: 10px;
        padding: 0;
        background-color: transparent;
    }
    .card_section .card .card_header .card_img{
        width: 100%;
        border-radius: 10px 10px 0px 0px;
    }
    .card_section .card .card_body{
        padding: 0 20px;
    }
    .card_section .card .card_body h2{
        font-size: 24px;
        font-family: "Helvetica";
        font-weight: 600;
        color: #E5B44E;
        margin: 10px 0;
        min-height: 60px;
        align-content: center;
    }
    .card_section .card .card_body p{
        font-size: 16px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #ffffff;
        margin: 0 0 20px;
    }
    .card_footer {
        text-align: end;
        padding: 0px 20px 15px;
    }
    .card_footer a{
        font-size: 16px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #E5B44E;
        margin: 0;
        padding: 0;
    }
    .card_footer a:hover{
        color: #ffffff;
    }


/* Case Studies Page CSS End */


/* Case Studies Inner Page CSS Start */

    .hero_banner_case_studies_inner .hero-content .heading{
        font-family: "Helvetica";
        font-size: 85px;
    }
    .hero-banner--inner_case_studies .hero-content .subheading {
        font-family: "Helvetica";
        font-weight: 500;
        font-size: 30px;
        color: #ffffff;
        margin: 20px auto 5px;
        text-transform: capitalize;
        text-align: center;
        line-height: 40px;
    }
    .hero-banner--inner_case_studies .hero-content .subheading.subheading__desktop{
        display: block;
    }
    .hero-banner--inner_case_studies .hero-content .subheading.subheading__mobile{
        display: none;
    }
    .hero-banner--inner_case_studies .hero-content .subheading.subheading__mobile strong{
        color: #E5B44E;
    }
    .hero-banner--inner_case_studies .hero-content .subheading.subheading__mobile span{
        border-bottom: 2px solid #E5B44E;
    }


    .challenge_section{
        padding: 60px 0 60px;
    }
    .challenge_section .heading{
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 600;
        color: #E5B44E;
        margin: 0px 0px 10px;
    }
    .challenge_section .description{
        font-size: 18px;
        font-family: "Helvetica";
        font-weight: 300;
        color: white;
        margin: 0px 0px 10px;
    }
    .challenge_section .challengePic{
        width: 100%;
        border: 2px solid #E5B44E;
        border-radius: 10px;
    }


    .challenge_section .solution__content{
        text-align: end;
    }
    .challenge_section .solution__arrow{
        transform: rotate(180deg);
    }

/* Case Studies Inner Page CSS End */


/* About Us Page Start */

    .process_container {
        padding: 60px 0px;
        margin: 60px 0px;
        background: linear-gradient(135deg, #000000, #E5B44E, #000000);
        color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    .process_title {
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 600;
        color: black;
        text-align: center;
    }
    .process_content {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        color: black;
        text-align: center;
    }

    .who_we_are{
        border: none;
    }
    .dashed-arrow {
        width: 93%; /* arrow length */
        height: 2px;
        border-top: 2px dashed #E5B44E; /* dashed line */
        position: relative;
    }
    .dashed-arrow::after {
        /* content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 20px;
        height: 20px;
        border-radius: 2px;
        border-right: 4px solid #E5B44E;
        border-bottom: 4px solid #E5B44E; */
        display: none;
    }


    .what__make_different{
        padding: 0px 0px 60px;
        border-bottom: 2px solid #E5B44E;
    }
    .what__make_different .yellow_shade_one{
        position: absolute;
        top: 40%;
        right: 20%;
        width: 30%;
        opacity: 0.6;
    }
    .what__make_different .yellow_shade_two{
        position: absolute;
        top: 40%;
        right: -6%;
        width: 30%;
        opacity: 0.6;
    }
    .what__make_different .title {
        margin: 0 auto 50px;
    }
    .what__make_different .title h2{
        color: #E5B44E;
    }
    .what__make_different .box{
        padding: 15px 20px;
        align-content: center;
        min-height: 130px;
    }
    .what__make_different .box h6{
        min-height: 30px;
    }
    .what__make_different .box p{
        margin: 0;
    }


    .how__it__works__boxes{
        padding: 120px 0 120px;
        border-bottom: 2px solid #E5B44E;
    }
    .how__it__works__boxes .yellow_shade_one{
        position: absolute;
        top: -40%;
        right: 20%;
        width: 30%;
        opacity: 0.6;
    }
    .how__it__works__boxes .yellow_shade_two{
        position: absolute;
        top: -40%;
        right: -6%;
        width: 30%;
        opacity: 0.6;
    }
    .how__it__works__boxes .title {
        margin: 0 auto 50px;
    }
    .how__it__works__boxes .title h2{
        color: #E5B44E;
    }
    .how__it__works__boxes .box{
        padding: 15px 20px;
        align-content: center;
        min-height: 130px;
        background-color: #E5B44E;
        border: none;
    }
    .how__it__works__boxes .box h5{
        position: absolute;
        top: -28px;
        left: 10px;
        font-size: 24px;
        font-family: "Helvetica";
        font-weight: 600;
        color: white;
        background-color: #000000;
        border: 2px solid #E5B44E;
        border-radius: 10px;
        padding: 10px 15px;
    }
    .how__it__works__boxes .box h5.numberOne{
        padding: 10px 18px;
    }
    .how__it__works__boxes .box h6{
        min-height: 30px;
        color: black;
    }
    .how__it__works__boxes .box p{
        margin: 0;
        color: black;
    }
    .how__it__works__boxes .yellow_shade_three{
        position: absolute;
        top: 40%;
        right: 50%;
        width: 30%;
        opacity: 0.6;
    }
    .how__it__works__boxes .yellow_shade_four{
        position: absolute;
        top: 55%;
        left: 50%;
        width: 30%;
        opacity: 0.6;
    }


    .who_we_serve p{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 300;
        color: #ffffff;
    }
    .legal__structure.who_we_serve .square-2 {
        top: -3%;
        right: 2% !important;
        width: 85%;
        height: 310px;
        border: 2px solid #E5B44E;
        border-radius: 20px;
    }
    .who_we_serve .yellow_shade_one{
        position: absolute;
        top: -60%;
        left: 50%;
        width: 30%;
        opacity: 0.6;
    }
    .who_we_serve .yellow_shade_two{
        position: absolute;
        top: -70%;
        left: 20%;
        width: 30%;
        opacity: 0.6;
    }
    .who_we_serve .yellow_shade_three{
        position: absolute;
        bottom: 0%;
        left: -15%;
        width: 30%;
        opacity: 0.6;
    }
    .legal__structure.who_we_serve ul.who_we_serve_list__mobile{
        display: none;
    }
    .who_we_serve_list li strong{
        font-size: 22px;
        font-weight: 600;
        color: #E5B44E;
        font-family: "Helvetica";
    }


    .why_businesses_choose_us{
        background-image: url(../img/why_businesses_choose_us_pic.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100px 0 100px;
        position: relative;
    }
    .why_businesses_choose_us .sec_heading{
        text-align: center;
    }
    .why_businesses_choose_us .sec_heading h2{
        font-size: 48px;
        font-family: "Helvetica";
        font-weight: 600;
        color: #000000;
    }
    .why_businesses_choose_us .sec_heading p{
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 400;
        color: #000000;
        max-width: 750px;
        margin: 0px auto;
    }

/* About Us Page End */


/* Privacy & Policy Page Start */
    .personal{
        padding: 140px 0 60px;
    }
    .mainHeadingDiv{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mainHeadingDiv h2{
        border-bottom: 2px solid #E5B44E;
        padding: 0;
    }
    .personal h2{
        font-size: 30px;
        font-weight: 500;
        font-family: "Helvetica" !important;
        color: white;
    }
    .personal p{
        font-size: 20px;
        font-weight: 300;
        font-family: "Helvetica" !important;
        color: white;
    }
    .personal p a{
        text-decoration: none;
        color: white;
        font-size: 20px;
        font-weight: 300;
        font-family: "Helvetica";
    }
    .personal ul {
        padding-left: 30px;
    }
    .personal ul li{
        list-style-type: disc;
        font-size: 20px;
        font-family: "Helvetica";
        font-weight: 300;
        color: white;
    }
    .personal strong{
        font-weight: 300;
    }
    .personal ul li a{
        text-decoration: none;
        color: white;
        font-size: 20px;
        font-weight: 300;
        font-family: "Helvetica";
    }
/* Privacy & Policy Page End */


.privacyPolicySec {
    padding: 250px 0 0px;
    min-height: 69dvh;
}
.privacyPolicySec p {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 5  00;
    color: #fff;
    text-align: left;
    margin-top: 20px;
}
.privacyPolicySec h2:after {
    display: block;
    width: 80%;
    height: 1px;
    background: #E5B44E;
    content: "";
    margin-top: 10px;
}
.privacyPolicySec h2 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    text-align: left;
    display: inline-block;
}
.privacyPolicySec .para{
    margin-bottom: 60px;
}
.Btn{
    border: 1px solid #E5B44E;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 24px;
    font-family: "Montserrat";
    font-weight: 400;
    color: white;
    text-decoration: none;
}





/* Mobile/Tablet Styles */
@media (max-width: 991.98px){
    .offcanvas-body .navbar-nav .nav-item .nav-link::before,
    .offcanvas-body .navbar-nav .nav-item .nav-link::after {
        display: none;
    }
    .offcanvas-body .navbar-nav .nav-item .nav-link {
        margin: 0px 0px;
    }
}

/* Responsive CSS Start */
@media (max-width: 1441px){

/* Header CSS Start */

    .navbar-brand{
        margin: 0px;
    }
    .navbar-brand img {
        max-width: 100px;
    }
    .navbar .nav-item .nav-link{
        font-size: 18px;
    }
    .navbar .nav-phone {
        font-size: 18px;
    }

/* Header CSS End */


/* Home Page Start */

    .how__it__works .light__yellow__shade__one {
        left: -40%;
    }
    .how__it__works .light__yellow__shade__two {
        right: -40%;
    }

/* Home Page End */


/* Contact-Us Page Start */

    .contact__form__section .light__yellow__shade__one {
        left: -26%;
    }
    .contact__form__section .light__yellow__shade__two {
        top: 6%;
        right: -38%;
    }
    .contact__form__section .form__group label {
        font-size: 20x;
    }
    .contact__form__section .form__group input {
        font-size: 16px;
    }
    .contact__form__section .form__group input::placeholder {
        font-size: 16px;
    }
    .contact__form__section .form__group textarea {
        font-size: 16px;
    }
    .contact__form__section .form__group  textarea::placeholder {
        font-size: 16px;
    }
    .contact__form__section form .form_btn {
        font-size: 20px;
        padding: 10px 80px;
    }

/* Contact-Us Page End */


/* Syndicate Boarding Page Start */

    .hero-banner--inner_syndicate_boarding .fav__icon__one {
        bottom: 56%;
        left: -2%;
        width: 12%;
    }
    .hero-banner--inner_syndicate_boarding .fav__icon__two {
        bottom: 8%;
        right: 29%;
        width: 16%;
    }
    .hero-banner--inner .hero-content .description {
        max-width: 700px;
    }

    .how__it__works.how__it__works_syndicate .box__five {
        right: 20.5%;
    }


    .paragraph__banner__black .light__yellow__shade__two {
        position: absolute;
        top: 0%;
        right: 4%;
        max-width: 35%;
    }
    .paragraph__banner__black .light__yellow__shade__one {
        position: absolute;
        top: 0%;
        left: 4%;
        width: 35%;
    }

/* Syndicate Boarding Page End */


/* Case Studies Page Start */

    /* .bar:nth-child(1) { align-self: flex-start; margin-bottom: -50px; animation-delay: 0s; }
    .bar:nth-child(2) { align-self: flex-end;   margin-bottom: 0px; animation-delay: 0.2s; }
    .bar:nth-child(3) { align-self: center;     margin-bottom: 0px; animation-delay: 0.4s; }
    .bar:nth-child(4) { align-self: flex-start; margin-bottom: 0px; animation-delay: 0.6s; }
    .bar:nth-child(5) { align-self: flex-end;   margin-bottom: 0px; animation-delay: 0.8s; } */

    .hero-banner--inner_case_studies .hero__banner__img{
        max-width: 80%;
    }

/* Case Studies Page  sds End */


/* Case Studies Inner hello Page Start */

    .hero_banner_case_studies_inner .hero-content .heading{
        font-size: 60px;
    }

/* Case Studies Inner Page End */


/* About Us Page Start */


    .what__make_different .box {
        min-height: 146px;
    }


    .who__we__fund .box h6 {
        font-size: 18px;
        min-height: 30px;
    }
    .who__we__fund .box p {
        font-size: 14px;
    }


    .who_we_serve .yellow_shade_one {
        top: -44%;
    }
    .who_we_serve .yellow_shade_two {
        top: -50%;
    }
    .who_we_serve .yellow_shade_three {
        bottom: 15%;
    }

/* About Us Page End */

}

@media (max-width: 1025px){

    .navbar-nav {
        margin-right: 60px;
    }
    .navbar .nav-item .nav-link {
        font-size: 16px;
    }
    .navbar .header__btn .nav-phone{
        font-size: 16px;
        padding: 10px 20px 10px;
    }

/* Home Page Start */

    .hero-banner .hero-content .heading {
        font-size: 40px;
    }
    .hero-banner .hero-content .heading br{
        display: none;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading {
        font-size: 22px;
    }
    .hero-banner .hero-content .description {
        font-size: 20px;
    }

    .about_info .box{
        max-width: 100%;
    }
    .about_info h2{
        font-size: 30px;
    }
    .about_info p {
        font-size: 18px;
    }
    .about_info ul li {
        font-size: 12px;
    }
    .about_info .rocket__vector{
        width: 100%;
    }


    .how__it__works .title h2{
        font-size: 100px;
    }
    .how__it__works .light__yellow__shade__one {
        left: -60%;
        top: 6%;
    }
    .how__it__works .light__yellow__shade__two {
        right: -60%;
        top: 6%;
    }
    .rotating__container .fav__icon {
        top: 34%;
        left: 35%;
    }
    .rotating__container {
        width: 300px;
        height: 300px;
    }
    .how__it__works .box h5 {
        font-size: 16px;
    }
    .how__it__works .box h6 {
        font-size: 16px;
    }
    .how__it__works .box p {
        font-size: 14px;
    }
    .rotating__container span.circle {
        width: 40px;
        height: 40px;
    }
    .rotating__container .span__one {
        top: 7%;
        left: 8%;
    }
    .rotating__container .span__two {
        bottom: 18%;
        left: 1.5%;
    }
    .rotating__container .span__three {
        top: 7%;
        right: 8%;
    }
    .rotating__container .span__four {
        bottom: 30%;
        right: -4.5%;
    }


    .who__we__fund .box h6 {
        font-size: 18px;
        min-height: 50px;
    }
    .who__we__fund .box p {
        font-size: 16px;
        min-height: 64px;
    }


    .calculatorSec2 .heading{
        font-size: 50px;
    }
    .calculatorSec2 .subHeading {
        font-size: 24px;
    }
    .calculatorSec2 .calculatorBox2 h4 {
        font-size: 24px;
    }
    .calculatorControls .amountInput {
        font-size: 35px;
    }
    input[type="range"] {
        max-width: 500px;
    }
    .calculatorControls2 .loanTermSelect {
        font-size: 24px;
    }
    .calculatorBox2 .disclaimer {
        font-size: 14px !important;
        word-break: break-word;
    }


    .why_choose .title h2 {
        font-size: 50px;
    }
    .para {
        font-size: 20px;
    }
    .why_choose .content_box h6 {
        font-size: 20px;
    }
    .why_choose .content_box p {
        font-size: 20px;
        min-height: 180px;
    }


    .client_reviews_section .sec_heading h2{
        font-size: 50px;
    }
    .client_reviews_slider .review .review_text p {
        font-size: 24px;
    }
    .client_reviews_slider .review .reviewer_name h2{
        font-size: 30px;
    }


    .cta_section .cta_content h2 {
        font-size: 40px;
    }
    .cta_section .cta_content .cta_btn{
        font-size: 20px;
    }

/* Home Page End */


/* Syndicate Boarding Page Start */

    .hero-banner--inner_syndicate_boarding .fav__icon__one {
        bottom: 63%;
        left: -3%;
        width: 14%;
    }
    .hero-banner--inner_syndicate_boarding .fav__icon__two {
        bottom: 14%;
        right: 26%;
        width: 20%;
    }
    .hero-banner--inner .hero-content .heading {
        font-size: 40px;
    }
    .hero-banner--inner .hero-content .subheading {
        font-size: 20px;
    }
    .hero-banner--inner .hero-content .description {
        max-width: 100%;
    }
    .hero-banner--inner .hero-content .description {
        font-size: 18px;
    }
    .hero-banner--inner_case_studies .hero-content .heading br{
        display: block;
    }


    .how__it__works.how__it__works_syndicate .light__yellow__shade__one {
        top: -0%;
        left: -60%;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__two {
        top: -0%;
        right: -60%;
    }
    .how__it__works.how__it__works_syndicate .rotating__container .span__five {
        bottom: -7%;
        right: 43.5%;
    }
    .how__it__works.how__it__works_syndicate .box__five {
        bottom: 9.5%;
        right: 10.5%;
        width: 100%;
        max-width: 30%;
    }


    .why__partner__section .box h2 {
        font-size: 30px;
        width: 120px;
        height: 120px;
    }
    .why__partner__section .box p {
        font-size: 14px;
        min-height: 110px;
    }


    .legal__structure .square-1 {
        top: 8%;
        height: 100%;
        border-radius: 10px;
    }
    .legal__structure .sec_heading h2 {
        font-size: 30px;
    }
    .legal__structure ul li {
        font-size: 16px;
    }
    .legal__structure .light__yellow__shade__one {
        top: -80%;
        right: -50%;
    }
    .legal__structure .light__yellow__shade__two {
        bottom: -90%;
        left: -30%;
    }
    .legal__structure .sec_heading.sec_heading_wellcome {
        padding-left: 80px;
    }


    .required__documentation__section ul li {
        font-size: 20px;
    }
    .required__documentation__section .icon__para {
        font-size: 16px;
    }

    .paragraph__banner .box .inner__box p {
        font-size: 20px;
    }
    .paragraph__banner__black .box p {
        font-size: 20px;
    }

/* Syndicate Boarding Page End */


/* Case Studies Page Start */

    .hero-banner--inner_case_studies .fav__icon__one {
        bottom: 70%;
        left: -7%;
        width: 15%;
        transform: rotate(-20deg);
    }
    .hero-banner--inner_case_studies .hero-content .description {
        font-size: 20px;
        font-weight: 400;
    }
    .hero-banner--inner_case_studies .yellow_shade_two{
        bottom: 70%;
    }
    .wave-container{
        bottom: -34%;
    }


    /* .bar:nth-child(1) { align-self: flex-start; margin-bottom: -40px; animation-delay: 0s; }
    .bar:nth-child(2) { align-self: flex-end;   margin-bottom: 50px; animation-delay: 0.2s; }
    .bar:nth-child(3) { align-self: center;     margin-bottom: 50px; animation-delay: 0.4s; }
    .bar:nth-child(4) { align-self: flex-start; margin-bottom: -40px; animation-delay: 0.6s; }
    .bar:nth-child(5) { align-self: flex-end;   margin-bottom: 50px; animation-delay: 0.8s; }
    .bar {
        width: 80%;
        height: 30px;
    } */


    .card_section .card .card_body h2 {
        font-size: 20px;
        min-height: 50px;
    }

/* Case Studies Page End */


/* Case Studies Inner Page Start */

    .hero-banner--inner_case_studies .hero-content .subheading {
        font-size: 20px;
    }


    .challenge_section .heading {
        font-size: 40px;
    }
    .challenge_section .description {
        font-size: 14px;
    }

/* Case Studies Inner Page End */

/* Contact Us Page Start */

    .contact__form__section .form__img {
        max-width: 80%;
    }
    .contact__form__section .form__group label {
        font-size: 16px;
    }
    .contact__form__section .agree p {
        font-size: 16px;
    }
    .contact__form__section .circular_checkbox span:first-of-type {
        width: 18px;
        height: 14px;
    }
    .contact__form__section .circular_checkbox .checkbox_text{
        font-size: 16px;
    }
    .contact__form__section .form_btn {
        font-size: 16px;
        padding: 10px 80px;
    }

/* Contact Us Page End */

/* About Us Page Start */

    .process_title {
        font-size: 30px;
    }
    .process_content {
        font-size: 20px;
    }


    .legal__structure .sec_heading p {
        font-size: 20px;
    }


    .who__we__fund .title h2 {
        font-size: 50px;
    }
    .what__make_different .box {
        min-height: 220px;
        padding: 10px 10px;
    }
    .what__make_different .yellow_shade_one {
        top: 56%;
    }
    .what__make_different .yellow_shade_two {
        top: 56%;
    }
    .who__we__fund .box h6 {
        font-size: 20px;
        min-height: 56px;
    }
    .dashed-arrow {
        width: 100%;
    }


    .how__it__works__boxes {
        padding: 80px 0 80px;
    }
    .how__it__works__boxes .box {
        min-height: 170px;
    }


    .how__it__works__boxes .yellow_shade_three{
        top: 60%;
    }
    .how__it__works__boxes .yellow_shade_four{
        top: 55%;
    }

    .how__it__works__boxes .box h5{
        padding: 6px 15px;
    }
    .how__it__works__boxes .box h5.numberOne {
        padding: 6px 16px;
    }


    .who_we_serve .yellow_shade_two {
        top: -28%;
    }
    .who_we_serve .yellow_shade_one {
        top: -29%;
    }
    .who_we_serve_list li strong {
        font-size: 22px;
    }


    .legal__structure.who_we_serve .square-2 {
        top: -4%;
        right: 3% !important;
        height: 220px;
        border-radius: 10px;
    }


    .why_businesses_choose_us .sec_heading h2 {
        font-size: 30px;
    }


    .required__documentation__section h2 {
        font-size: 30px;
    }


/* About Us Page End */


    .personal {
        padding: 140px 0 60px;
    }
    .privacyPolicySec h2 {
        font-size: 28px;
    }
    .privacyPolicySec p {
        font-size: 20px;
    }


/* Footer Start */

    .site_footer .footer__logo{
        padding-top: 10px;
    }
    .site_footer .footer__logo .site__footer__logo {
        max-width: 220px;
    }
    .site_footer .footer__menu.footer__menu__first::before{
        right: 4px;
    }
    .site_footer .footer__menu{
        padding: 0px 10px;
    }
    .site_footer .footer__menu h6 {
        font-size: 16px;
    }
    .site_footer .footer__menu ul li a {
        font-size: 12px;
    }
    .site_footer .copyRight .copy__right__text {
        font-size: 12px;
        margin-top: 20px;
    }

/* Footer End */

}

@media (max-width: 769px){
    .animated-toggler {
        display: block;
    }
    .offcanvas.offcanvas-end {
        padding-top: 0px;
        background: black;
    }
    .offcanvas-body{
        margin-left: 0;
    }

    .navbar-nav {
        margin-right: 0px;
    }
    .offcanvas-body .drop-down{
        position: relative;
    }

    .offcanvas-body .navbar-nav .nav-item .nav-link {
        text-align: left;
        font-size: 16px;
        border-bottom: 1px solid #E5B44E;
    }
    .offcanvas-body{
        overflow-y: auto;
        overflow-x: hidden;
    }
    .offcanvas-body .nav-phone {
        margin: 20px auto 0;
        font-size: 18px;
        font-family: "Helvetica";
        padding: 0px 10px 10px 10px;
    }
    .navbar .header__btn .nav-phone {
        font-size: 16px;
        padding: 10px 50px 10px;
    }
    .offcanvas-body .drop-down{
        position: relative;
    }
    .offcanvas-body .drop-down::before{
        content: "▼";
        position: absolute;
        top: 16%;
        left: 90%;
        width: 100%;
        height: 100%;
        z-index: 1;
        color: #002954;
    }
    .offcanvas-body .drop-down.active::before{
        content: "▲";
        position: absolute;
        top: 0.5%;
        left: 90%;
        width: 100%;
        height: 100%;
        z-index: 1;

    }
    .offcanvas-header img {
        width: auto;
        height: 60px;
    }
    .top__head__list {
        display: none;
    }
    .site_footer .footer__menu{
        margin-top: 20px;
    }
    .site_footer .footer__menu::before{
        display: none;
    }
    .site_footer .footer__menu.footer__menu__first{
        min-height: 0;
    }
    .site_footer .footer__menu.footer__menu__middle{
        border: none;
    }
    .site_footer .footer__menu .social__links {
        justify-content: center;
    }
    .site_footer .footer__menu h6 {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .site_footer .footer__menu ul li a {
        font-size: 14px;
    }
    .site_footer .copyRight .copy__right__text {
        font-size: 16px;
        margin: 0;
    }


/* Home Page Start */

    .about_info .box{
        align-items: start;
    }
    .about_info h2 {
        text-align: left;
    }
    .about_info p {
        text-align: left;
        font-size: 20px;
    }
    .about_info ul{
        padding: 0;
    }
    .about_info ul li {
        font-size: 14px;
        text-align: start;
    }


    .calculatorBox2{
        margin: 30px auto 0;
    }
    .calculatorControls .amountInput {
        font-size: 30px;
    }
    .calculatorResult2 table th{
        font-size: 20px;
    }


    .how__it__works .box{
        display: none;
    }
    .how__it__works .rotating__container__desktop{
        display: none;
    }
    .how__it__works .rotating__container__mobile{
        display: block;
    }
    .how__it__works .light__yellow__shade__one{
        opacity: 60%;
    }
    .how__it__works .rotating__container__mobile span.circle{
        font-size: 18px;
        font-family: "Helvetica";
        font-weight: 600 !important;
        color: #000000 !important;
        text-align: center;
        padding-top: 4px;
    }


    .why_choose {
        padding: 40px 0 0px;
    }
    .why_choose .title {
        margin: 0 auto 10px;
    }
    .why_choose .icon_box{
        margin: 30px auto 10px;
    }
    .why_choose .content_box {
        max-width: 100%;
        margin: 0 auto;
    }
    .why_choose .content_box p {
        font-size: 16px;
        min-height: 50px;
    }


    .client_reviews_slider .review{
        max-width: 90%;
    }
    .client_reviews_slider .review .review_text p {
        font-size: 20px;
    }
    .client_reviews_slider .slick-prev {
        left: 60px;
    }
    .client_reviews_slider .slick-next {
        right: 60px;
    }
    .client_reviews_slider .slick-arrow {
        top: 120% !important;
    }


    .cta_section .cta_img {
        width: 80%;
    }


/* Home Page End */


/* Contact-Us CSS Start */
    .contact__form__section .form__img {
        width: 100%;
        max-width: 70%;
    }
/* Contact-Us CSS End */


/* Case Studies Page Start */

    .hero-banner--inner_case_studies .hero__banner__img {
        max-width: 36%;
        display: none;
    }
    .hero-banner--inner_case_studies .hero-content .description {
        font-size: 20px;
        padding: 0px;
        margin: 0 0 20px;
    }

    .bars{
        display: none;
    }
    .bar:nth-child(1) { align-self: flex-start; margin-bottom: -30px; animation-delay: 0s; }
    .bar:nth-child(2) { align-self: flex-end;   margin-bottom: 10px; animation-delay: 0.2s; }
    .bar:nth-child(3) { align-self: center;     margin-bottom: 20px; animation-delay: 0.4s; }
    .bar:nth-child(4) { align-self: flex-start; margin-bottom: -40px; animation-delay: 0.6s; }
    .bar:nth-child(5) { align-self: flex-end;   margin-bottom: 20px; animation-delay: 0.8s; }
    .bar {
        width: 30%;
        height: 20px;
    }


    .card_section .card .card_body h2 {
        font-size: 24px;
        min-height: 0px;
    }
    .card_section .card .card_body p{
        font-size: 16px;
    }

    .challenge_section .heading{
        text-align: center;
    }
    .challenge_section .description{
        text-align: center;
    }


/* Case Studies Page End */

/* About Us Page Start */

    .what__make_different .box {
        min-height: 140px;
    }
    .who__we__fund .box h6 {
        min-height: 50px;
    }
    .who__we__fund .box p {
        min-height: 50px;
    }
    .what__make_different .yellow_shade_two {
        top: 0%;
        right: -16%;
    }
    .what__make_different .yellow_shade_one {
        top: 74%;
        right: 80%;
    }


    .how__it__works__boxes .box {
        min-height: 150px;
    }
    .how__it__works__boxes .yellow_shade_one {
        top: -6%;
        right: -10%;
    }
    .how__it__works__boxes .yellow_shade_two {
        top: 74%;
        right: 80%;
    }


    .legal__structure.who_we_serve ul.who_we_serve_list__desktop{
        display: none;
    }
    .legal__structure.who_we_serve ul.who_we_serve_list__mobile{
        display: block;
    }
    .legal__structure.who_we_serve ul.who_we_serve_list__mobile li{
        text-align: left;
    }
    .legal__structure.who_we_serve .square-2 {
        top: -4%;
        right: 22% !important;
        width: 70%;
    }
    .who_we_serve .yellow_shade_one {
        top: -20%;
        left: 60%;
        width: 60%;
    }
    .who_we_serve .yellow_shade_two {
        top: 71%;
        left: -38%;
        width: 60%;
    }


/* About Us Page End */


/* Contact Us Page Start */

    .contact__form__section .light__yellow__shade__one {
        left: -5%;
        bottom: 20%;
    }
    .contact__form__section .light__yellow__shade__two {
        top: 6%;
        right: -60%;
    }
/* Contact Us Page End */


/* About Us Page Start */

    .legal__structure.who_we_serve .square-2 {
        top: -4%;
        right: 18% !important;
        width: 71%;
        height: 350px;
    }

    .who_we_serve p {
        text-align: center;
    }


/* About Us Page Start */


/* Syndicate Onboarding Page Start */

    .paragraph__banner .box .inner__box h2 {
        font-size: 40px;
    }


    .how__it__works.how__it__works_syndicate .light__yellow__shade__one {
        top: 43%;
        left: -80%;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__two {
        top: 7%;
        right: -80%;
    }
    .how__it__works .box p {
        font-size: 14px;
        width: 100%;
        max-width: 50%;
    }
    .how__it__works .box p br{
        display: none;
    }
    .how__it__works.how__it__works_syndicate .rotating__container__desktop{
        display: none;
    }
    .how__it__works.how__it__works_syndicate .rotating__container__mobile{
        display: block;
    }
    .how__it__works.how__it__works_syndicate .box{
        display: none;
    }
    .accordion{
        margin-top: 60px;
    }
    .accordion-item{
        display: block;
    }


    .why__partner__section .box h2 {
        font-size: 30px;
        width: 120px;
        height: 120px;
        left: 18%;
        top: -10%;
    }
    .why__partner__section .box p {
        font-size: 14px;
        min-height: 100px;
        max-width: 300px;
        padding: 10px 10px 10px 50px;
    }


    .legal__structure .sec_heading.sec_heading_wellcome {
        padding-left: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
    .legal__structure .square-1 {
        top: -4%;
        left: 20%;
        width: 67%;
    }
    .legal__structure .sec_heading {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .legal__structure ul {
        width: fit-content;
        padding-left: 0px;
        margin: 0 auto;
    }
    .legal__structure ul li {
        text-align: center;
    }


    h2, .h2 {
        font-size: 30px;
    }
    .required__documentation__section h6 {
        font-size: 24px;
    }

/* Syndicate Onboarding Page Start */


/* Case Studies Inner Page Start */

    .arrow{
        display: none;
    }
    .challenge_section {
        padding: 30px 0 40px;
    }
    .challenge_section .solution__arrow {
        display: none;
    }
    .challenge_section .solution__content {
        margin-top: 20px;
    }

/* Case Studies Inner Page End */


/* P&P Page Start */

    .personal p {
        font-size: 16px;
    }
    .personal ul li {
        font-size: 16px;
    }
    .personal ul li a {
        font-size: 16px;
    }
    .personal p a {
        font-size: 16px;
    }

/* P&P Page End */


/* T&C Page Start */

    .privacyPolicySec p {
        font-size: 16px;
    }

/* T&C Page End */


}

@media (max-width: 430px){

    .offcanvas.offcanvas-end {
        padding-top: 0px;
    }
    /* Animation states */
    .animated-toggler[aria-expanded="true"] .top {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .animated-toggler[aria-expanded="true"] .bottom {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    .offcanvas-header img {
        width: auto;
        height: 50px;
    }
    .offcanvas-body .top__head__list{
        columns: 2;
    }
    .offcanvas-body .top__head__list li a{
        width: 100%;
        text-align: center;
    }
    .offcanvas-body .top__head__list {
        padding: 20px 10px 10px 10px;
        display: block;
        align-items: flex-start;
    }
    .offcanvas-body .top__head__list li a {
        color: var(--white);
        background-color: #002954;
        padding: 10px 20px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .offcanvas-body ul li {
        list-style: none;
    }
    .offcanvas-body ul li a {
        font-size: 14px;
        color: rgb(0, 0, 0);
        font-weight: 400;
    }
    .offcanvas-body .nav-phone {
        margin: 0 auto;
    }
    .offcanvas-body .navbar-nav .nav-item .nav-link {
        text-align: left;
        font-size: 16px;
        border-bottom: 1px solid #E5B44E;
    }
    .offcanvas-body .nav-phone {
        margin: 0 auto;
        font-size: 18px;
        font-family: "Helvetica";
        padding: 0px 10px 10px 8px;
        text-align: center;
    }
    .offcanvas-body .navbar-nav .nav-item .nav-link{
        padding: 14px 0.65px;
    }


/* Home Page Start */


    .about_info {
        padding: 4rem 0 2rem;
    }
    .about_info__bg{
        padding: 1rem;
    }
    .about_info h2{
        text-align: center;
        width: 100%;
    }
    .about_info p {
        font-size: 16px;
        text-align: center;
    }
    .about__section__ul_desktop{
        display: none;
    }
    .about__section__ul_mobile{
        display: block;
    }


    .how__it__works {
        padding: 20px 0 50px;
    }
    .how__it__works .title h2 {
        font-size: 30px;
    }
    .how__it__works .light__yellow__shade__one {
        left: 12%;
        top: 16%;
        max-width: 80%;
        opacity: 60%;
    }
    .how__it__works .light__yellow__shade__two {
        right: -130%;
        top: 35%;
        opacity: 30%;
    }


    .who__we__fund {
        padding: 0 0 20px;
    }
    .who__we__fund .title h2 {
        font-size: 30px;
    }


    .calculatorSec2 .heading {
        font-size: 30px;
    }
    .calculatorBox2::before{
        max-width: 100%;
    }
    .calculatorSec2 .subHeading {
        font-size: 20px;
    }
    .calculatorSec2 .calculatorBox2 h4 {
        font-size: 18px;
        padding: 5px 5px;
    }
    #loanAmount{
        width: 80%;
    }
    .custom-select-wrapper{
        max-width: 300px;
    }
    .calculatorResult2 table th {
        font-size: 16px;
    }
    .calculatorResult2 table td {
        font-size: 14px;
    }
    .calculatorBox2 .disclaimer {
        max-width: 80%;
    }


    .why_choose .title h2 {
        font-size: 30px;
    }


    .client_reviews_section {
        padding: 60px 0 60px;
    }
    .client_reviews_section .sec_heading h2 {
        font-size: 30px;
    }
    .client_reviews_slider .review .review_text p {
        font-size: 16px;
    }
    .client_reviews_slider .review .reviewer_name h2 {
        font-size: 24px;
    }
    .client_reviews_slider .slick-arrow {
        top: 110% !important;
    }


    .cta_section {
        padding: 10px 0 40px;
    }
    .cta_section .cta_content h2 {
        font-size: 30px;
        text-align: center;
    }
    .cta_section .cta_content p {
        font-size: 16px;
        text-align: center;
    }
    .cta_section .cta_content .cta_btn{
        font-size: 16px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }


/* Home Page End */


/* Case Studies Page Start */

    .hero-banner--inner_case_studies .hero-content {
        z-index: 8;
        position: relative;
        font-family: "Helvetica";
        margin: 0px auto 0;
    }
    .hero-banner .hero-content .heading {
        font-size: 30px;
    }
    .hero-banner--inner_case_studies .hero-content .description {
        font-size: 16px;
    }
    .hero-banner--inner_case_studies .hero-content .hero_banner_btn {
        font-size: 14px;
        padding: 10px 30px;
    }
    .hero-banner--inner_case_studies .fav__icon__one {
        bottom: 73%;
        left: -12%;
        width: 30%;
        transform: rotate(-28deg);
    }
    .hero-banner--inner_case_studies .yellow_shade_two {
        bottom: 70%;
        width: 60%;
        right: -23%;
    }
    .hero-banner--inner_case_studies .yellow_shade {
        bottom: -12%;
        left: -28%;
        width: 60%;
    }

/* Case Studies Page End */


/* Case Studies Page Start */

    .hero-banner--inner_case_studies .hero-content .subheading{
        line-height: 30px;
    }
    .hero-banner--inner_case_studies .hero-content .subheading.subheading__desktop{
        display: none;
    }
    .hero-banner--inner_case_studies .hero-content .subheading.subheading__mobile{
        display: block;
    }
    .hero_banner_case_studies_inner .hero-content .heading.heading__mobile{
        line-height: 45px;
    }
    

/* Case Studies Page End */


    .personal h2{
        font-size: 20px;
    }
    .personal p{
        font-size: 16px;
    }
    .personal ul li{
        font-size: 16px;
    }
    .personal ul li a{
        font-size: 16px;
    }


/* About Us Page Start */


    .hero-banner.hero_banner_about_us .hero-content .heading{
        line-height: 50px;
    }
    .hero-banner.hero_banner_about_us :is(.hero-video, .hero-img){
        opacity: 60%;
    }


    .process_container {
        margin: 60px 0px 0px;
    }
    .process_content {
        font-size: 16px;
    }


    .who__we__fund.what__make_different{
        padding: 0px 0px 50px;
    }

    


    .how__it__works__boxes{
        padding: 40px 0 80px;
    }
    .how__it__works__boxes .box {
        min-height: 100px;
    }
    .what__make_different .box {
        min-height: 100px;
    }
    .how__it__works__boxes .box h5 {
        top: -24px;
    }


    .legal__structure {
        padding: 60px 0px 40px;
    }
    .legal__structure.who_we_serve .square-2 {
        top: -4%;
        right: 0% !important;
        width: 100%;
        height: 290px;
    }
    .who_we_serve_list li strong {
        font-size: 18px;
    }
    .legal__structure .sec_heading p {
        font-size: 16px;
    }
    .who_we_serve p {
        font-size: 16px;
    }
    .legal__structure.who_we_serve .who_we_serve_list__mobile li{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }
    .legal__structure.who_we_serve .who_we_serve_list__mobile li + li{
        margin-top: 6px;
    }


    .why_businesses_choose_us {
        padding: 60px 0 60px;
    }
    .why_businesses_choose_us .sec_heading h2{
        width: 100%;
        max-width: 80%;
        margin: 0 auto 10px;
        line-height: 40px;
    }
    .why_businesses_choose_us .sec_heading p {
        font-size: 16px;
    }


    .required__documentation__section p {
        font-size: 16px;
    }

/* About us Page End */

/* Syndicate Onboarding Page Start */

    .hero-banner--inner_syndicate_boarding .hero-content .subheading {
        font-size: 20px;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading__desktop {
        display: none;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading__mobile {
        display: block;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .subheading__mobile span{
        display: none;
    }
    .hero-banner .hero-content {
        padding: 20px 10px
    }


    .paragraph__banner .box .inner__box{
        padding: 40px 20px;
    }
    .paragraph__banner .box .inner__box h2 {
        font-size: 30px;
    }


    .how__it__works.how__it__works_syndicate {
        padding: 20px 0 60px;
    }
    .how__it__works .title h2 {
        font-size: 30px;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__two {
        top: 14%;
        right: -1%;
        max-width: 100%;
        opacity: 60%;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__one {
        top: 43%;
        left: -80%;
        opacity: 40%;
        z-index: 0;
    }
    .accordion-button {
        font-size: 20px;
        z-index: 1;
    }
    .accordion-body{
        background-color: #000000;
    }
    .accordion-body p {
        font-size: 16px;
        z-index: 1;
    }


    .why__partner__section .sec_heading h2{
        font-size: 30px;
    }


    h2, .h2 {
        font-size: 30px;
    }


    .why__partner__section {
        padding: 50px 0 50px;
    }
    .why__partner__section .box h2 {
        font-size: 26px;
        width: 100px;
        height: 100px;
        left: 4.5%;
        top: -10%;
    }
    .why__partner__section .box p {
        font-size: 14px;
        min-height: 80px;
        max-width: 300px;
        padding: 10px 2px 10px 75px;
    }


    .legal__structure .square-1 {
        top: -3%;
        left: 0%;
        width: 100%;
        height: 280px;
    }
    .legal__structure .we__welcome__ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .legal__structure .legal__highlights li + li{
        margin-top: 15px;
    }


    .required__documentation__section h2 {
        font-size: 30px;
    }
    .required__documentation__section h6 {
        font-size: 22px;
    }


    .paragraph__banner__black .box{
        padding: 20px 20px;
    }
    .paragraph__banner__black .box p {
        font-size: 16px;
    }

/* Syndicate Onboarding Page End */


    .form__footer{
        flex-direction: column;
    }
    .contact__form__section .circular_checkbox span:first-of-type {
        width: 50px;
        height: 14px;
    }
    .contact__form__section .agree {
        width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 375px){
    .site_footer .copyRight .copy__right__text {
        font-size: 12px;
        word-break: break-all;
    }


    .personal h2{
        font-size: 18px;
    }
    .personal p{
        font-size: 14px;
    }
    .personal ul li{
        font-size: 14px;
    }
    .personal ul li a{
        font-size: 14px;
    }


/* Home Page Start */


    .about_info h2 {
        font-size: 30px;
        text-align: center;
        width: 100%;
    }
    .about_info p {
        font-size: 16px;
    }


    .how__it__works .title h2 {
        font-size: 28px;
    }


    .para {
        font-size: 16px;
    }
    .who__we__fund {
        padding: 0 0 30px;
    }


    .calculatorSec2 .heading {
        font-size: 28px;
    }
    .calculatorSec2 .subHeading {
        font-size: 18px;
    }
    .calculatorControls2 .loanTermSelect {
        font-size: 20px;
    }
    .calculatorResult2 table th {
        font-size: 14px;
    }
    .calculatorBox2 .disclaimer {
        max-width: 90%;
    }


    .why_choose .title h2 {
        font-size: 28px;
    }


    .client_reviews_section .sec_heading h2 {
        font-size: 28px;
    }
    .client_reviews_slider .review .review_text {
        padding: 20px 10px;
    }


    .cta_section .cta_content h2 {
        font-size: 28px;
    }


/* Home Page End */


/* About Us Page Start */

    .process_title {
        font-size: 28px;
    }


    .who__we__fund .title h2 {
        font-size: 28px;
    }


    .what__make_different .title{
        margin: 0 auto 30px;
    }


    .how__it__works__boxes {
        padding: 40px 0 40px;
    }


    .legal__structure.who_we_serve .square-2 {
        top: -3%;
        right: 0% !important;
        width: 100%;
        height: 250px;
    }


    .why_businesses_choose_us .sec_heading h2 {
        font-size: 28px;
    }

/* About Us Page End */

/* Syndicate Onboarding Page Start */

    .hero-banner--inner_syndicate_boarding .hero-content .subheading {
        font-size: 16px;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .hero_banner_btn {
        font-size: 16px;
        padding: 12px 30px 10px;
    }



    .how__it__works.how__it__works_syndicate .rotating__container .span__two {
        bottom: 22%;
        left: -1.5%;
    }
    .how__it__works.how__it__works_syndicate .rotating__container .span__four {
        bottom: 25%;
        right: -2.5%;
    }
    .paragraph__banner .box .inner__box h2 {
        font-size: 28px;
    }
    .paragraph__banner .box .inner__box p {
        font-size: 16px;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__two {
        top: 18%;
    }
    .how__it__works.how__it__works_syndicate .light__yellow__shade__two {
        top: 18%;
    }
    .why__partner__section .sec_heading h2 {
        font-size: 28px;
    }
    .why__partner__section .box p {
        font-size: 14px;
        min-height: 80px;
        max-width: 320px;
        padding: 10px 6px 10px 70px;
    }
    .why__partner__section .box h2 {
        font-size: 24px;
        width: 90px;
        height: 90px;
        left: -2.5%;
        top: -8%;
    }
    .legal__structure .sec_heading h2 {
        font-size: 28px;
    }
    .legal__structure .square-1 {
        height: 250px;
    }

    .legal__structure ul li{
        list-style: none;
    }

    h2, .h2 {
        font-size: 28px;
    }
    .required__documentation__section h2 {
        font-size: 28px;
    }


/* Syndicate Onboarding Page End */

}

@media(max-width: 321px){
    .personal h2{
        font-size: 16px;
    }
    .personal p{
        font-size: 12px;
    }
    .personal ul li{
        font-size: 12px;
    }
    .personal ul li a{
        font-size: 12px;
    }

    .privacyPolicySec h2 {
        font-size: 14px;
    }
    .privacyPolicySec p {
        font-size: 12px;
    }
    .Btn {
        font-size: 12px;
        padding: 10px 10px;
    }

    .privacyPolicySec p {
        margin-top: 0px;
    }


/* Home Page Start */

    .hero-banner .hero-content .description {
        font-size: 16px;
    }
    .hero-banner .hero-content .banner__Btn {
        font-size: 16px;
    }


    .custom-select-wrapper {
        max-width: 250px;
    }


    .client_reviews_slider .review .reviewer_name h2 {
        font-size: 20px;
    }

/* Home Page End */


/* About Us Page Start */

    .process_title {
        font-size: 24px;
    }


    .who__we__fund .box h6 {
        min-height: 30px;
        font-size: 18px;
    }


    .how__it__works__boxes .box h5 {
        padding: 6px 15px;
        top: -20px;
        left: 10px;
        font-size: 20px;
    }


    .legal__structure.who_we_serve .square-2 {
        top: -5%;
        right: 0% !important;
        width: 100%;
        height: 220px;
    }


    .why_businesses_choose_us .sec_heading h2 {
        font-size: 24px;
    }

/* About Us Page End */


/* Syndicate Onboarding Start */

    .hero-banner .hero-content .heading {
        font-size: 24px;
    }
    .hero-banner--inner_syndicate_boarding .hero-content .hero_banner_btn {
        font-size: 14px;
        padding: 10px 30px 10px;
    }


    .paragraph__banner .box .inner__box {
        padding: 20px 10px;
    }
    .paragraph__banner .box .inner__box h2 {
        font-size: 24px;
    }


    .how__it__works.how__it__works_syndicate .light__yellow__shade__two {
        top: 0%;
        right: -64%;
    }
    .rotating__container {
        width: 250px;
        height: 250px;
    }
    .rotating__circle h1 span{
        font-size: 24px;
    }
    .rotating__container .fav__icon {
        top: 32%;
        left: 32%;
    }


    .why__partner__section .sec_heading {
        margin-bottom: 40px;
    }
    .why__partner__section .box h2 {
        font-size: 20px;
        width: 85px;
        height: 85px;
        left: -3.5%;
        top: -8%;
    }
    .why__partner__section .box p {
        font-size: 14px;
        min-height: 60px;
        max-width: 100%;
        padding: 10px 6px 10px 75px;
    }


    .legal__structure .square-1 {
        height: 210px;
    }
    .legal__structure .sec_heading h2 {
        font-size: 24px;
    }
    .legal__structure ul li + li{
        margin-top: 5px;
    }


    .required__documentation__section::before{
        top: 10%;
    }
    .required__documentation__section h2 {
        font-size: 24px;
    }
    .required__documentation__section h6 {
        font-size: 20px;
    }


    h2, .h2 {
        font-size: 24px;
    }

/* Syndicate Onboarding End */

}
/* Responsive CSS End */


/* /contact us css/ */
 .error-field {
        border: 2px solid #ff0000 !important;
    }

    .filled {
        border: 2px solid #00bc00 !important;
    }

    .is-invalid {
        border: 2px solid #e74c3c !important;
    }

    .is-valid {
        border: 2px solid #27ae60 !important;
    }

    .g-recaptcha {
        margin: 20px 0;
    }

    .recaptcha-error {
        border: 2px solid #e74c3c !important;
        border-radius: 5px;
        padding: 2px;
    }

    .invalid-feedback {
        display: none;
        font-size: 0.9rem;
        font-weight: 600;
        color: #e74c3c;
        margin-top: 0.25rem;
        position: relative;
        padding-left: 1.5em;
    }

    .invalid-feedback::before {
        content: '⚠';
        position: absolute;
        left: 0;
        top: 0;
        color: #e74c3c;
        font-weight: bold;
    }

    .invalid-feedback.pulse {
        animation: pulse-border 1s ease-out;
    }

    @keyframes pulse-border {
        0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
        50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
        100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
    }

    button.swal2-confirm.swal2-styled {
        background: #556ea4 !important;
    }

    .form_btn {
        transition: all 0.3s ease;
    }

    .form_btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
