@import "https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap";
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Oxygen", sans-serif;
    background-color: #021036;
    color: #000613;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
img {
    vertical-align: middle;
}
a {
    color: #1645d4;
    text-decoration: none;
    display: inline-block;
}
p {
    color: #475467;
    line-height: 26px;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
}
a:hover {
    text-decoration: none;
    color: #1645d4;
}
label {
    display: inline-block;
    margin-bottom: 5px;
}
.form-control:focus {
    outline: 0;
    box-shadow: none;
}
ul,
ol {
    padding: 0;
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
span,
label {
    margin-bottom: 0;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 600;
    color: #000613;
}
h1,
.h1 {
    font-size: 40px;
    line-height: 48px;
}
h2,
.h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 81px;
}
h3,
.h3 {
    font-size: 32px;
    line-height: 40px;
}
h4,
.h4 {
    font-size: 28px;
    line-height: 36px;
}
h5,
.h5 {
    font-size: 24px;
    line-height: 32px;
}
h6,
.h6 {
    font-size: 20px;
    line-height: 28px;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 16px;
    color: #667085 !important;
    text-transform: capitalize;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-size: 16px;
    color: #667085 !important;
    text-transform: capitalize;
}
input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font-size: 16px;
    color: #667085 !important;
    text-transform: capitalize;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
    font-size: 16px;
    color: #667085 !important;
    text-transform: capitalize;
}
input:focus-visible {
    outline: 0;
}
.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}
.text-primary {
    color: #1645d4;
}
.hide {
    display: none;
}
.btn-style-one {
    border-radius: 5px;
    border: 2px solid var(--secondary);
    padding: 10px 16px;
    color: #475467;
    position: relative;
    background: #fff0;
}
.btn-style-one:before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: var(--secondary);
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    animation: followPath 17s linear infinite;
}
@keyframes followPath {
    0% {
        left: calc(0% - 7px);
        top: calc(0% - 7px);
    }
    25% {
        left: calc(100% - 7px);
        top: calc(0% - 7px);
    }
    50% {
        left: calc(100% - 7px);
        top: calc(100% - 7px);
    }
    75% {
        left: calc(0% - 7px);
        top: calc(100% - 7px);
    }
    100% {
        left: calc(0% - 7px);
        top: calc(0% - 7px);
    }
}
.btn-style-one:hover {
    border-radius: 5px;
    border: 2px solid var(--secondary);
    padding: 10px 16px;
    color: #fff;
    background: linear-gradient(180deg, #6fc74f 0%, #238600 100%);
}
.btn-style-one i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(-45deg);
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.btn-primary {
    color: #fff !important;
    background-color: #1645d4;
    border-color: #1645d4;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
}
.btn-primary:hover {
    color: #fff !important;
    background-color: #1645d4;
    border-color: #1645d4;
}
.btn-outline-primary {
    color: #1645d4 !important;
    background-color: #fff0;
    border-color: #1645d4;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
}
.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #1645d4;
    border-color: #1645d4;
}
.btn_v2 {
    position: relative;
    padding: 12px 32px;
    border: 2px solid #2563eb;
    border-radius: 2px;
    backdrop-filter: blur(3.5px);
    background: #0210368f;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn_v2:hover {
    color: #fff !important;
}
.btn_v2::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 0;
    height: 0;
    border-top: 20px solid #2563eb;
    border-left: 20px solid #fff0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn_v2:hover::after {
    opacity: 1;
}
.btn_v3 {
    position: relative;
    padding: 12px 32px;
    border: 2px solid #fff;
    border-radius: 2px;
    background-color: #fff;
    color: #000613;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn_v4,
.btn_v4:hover,
.btn_v4:active,
.btn_v4:focus {
    background-color: #374151;
    border-color: #374151;
}
.btn_v3:hover {
    color: #000613 !important;
    background-color: #fff;
}
.cl_resources .card.clickable-card h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loan-state-section .loan-state-card {
    height: 100%;
}
.loan-state-section .loan-state-card .loan-state-body {
    height: auto;
}
.load-more-box .hard-money-card .btn-primary {
    padding: 11px 12px;
}
.btn_v3::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 0;
    height: 0;
    border-top: 20px solid #2563eb;
    border-left: 20px solid #fff0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn_v3:hover::after {
    opacity: 1;
}
.single-state .row.hard-money-row .hard-money-card p {
    min-height: 52px;
}
.single-post .js-ajax-tabs-responce .card.clickable-card,
.single-post .js-ajax-tabs-responce .card {
    height: 100% !important;
}
.btn.btn-white {
    color: #1645d4;
    background-color: #fff;
    border-color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
}
.btn.btn-white:active,
.btn.btn-white:focus {
    color: #1645d4;
    background-color: #fff;
    border-color: #fff;
}
.btn-primary-soft {
    color: #e62e05;
    background-color: #e62e051a;
}
.btn-primary-soft:hover {
    color: #fff;
    background-color: #1645d4;
}
.text-primary {
    color: #1645d4 !important;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #1645d4;
}
.bg-one {
    background: #f2f4f7;
}
.mega-menu {
    position: absolute;
    left: 50%;
    width: 1320px;
    top: 100%;
    padding: 2rem;
    transform: translateX(-50%);
    background: #fff;
    display: none;
    box-shadow: 0 2px 12px #0000001a;
    z-index: 1000;
}
.nav-item.dropdown:hover .mega-menu {
    display: block;
}
.mega-menu .card {
    border: none;
    transition: all 0.3s ease-in-out;
}
.mega-menu .card:hover {
    background: #f8f9fa;
}
.mg-menu-card {
    display: flex;
    background: #fff0;
    align-items: start;
    border: 1.5px solid #f2f3f7;
    border-radius: 12px;
    background: #fff0;
    padding: 12px;
}
.mg-menu-card h6 {
    font-size: 18px;
    line-height: 20px;
    color: #000613;
    margin-bottom: 4px;
}
.mg-menu-card p {
    font-size: 14px;
    line-height: 20px;
    color: #000613;
}
.mg-menu-img {
    text-align: center;
}
.mg-menu-img img {
    height: 276px;
}
.mega-menu .icon-box i {
    color: #1645d4;
}
.mg-menu-card:hover {
    background: #f2f3f7;
}
.mg-menu-card:hover .icon-box {
    background-color: #fff;
}
.mega-menu-title {
    font-size: 16px;
    margin-bottom: 12px;
}
.mega-menu .icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 12px;
    background: #f2f3f7;
}
nav.navbar.bg-dark {
    background-color: #021035 !important;
}
.menu_end_btn {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
}
.menu_end_btn .btn {
    padding: 8px 26px;
}
.navbar-nav li.nav-item .dropdown-toggle::after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    margin-left: 0.5em;
    vertical-align: middle;
    font-size: 0.7rem;
    border: 0;
}
.menu_end_btn .text-white .fa-solid.fa-phone {
    margin-right: 0.3rem;
}
.menu_end_btn .btn.btn-outline-primary {
    color: #fff !important;
    border: 2px solid #1645d4;
}
.menu_end_btn .btn.btn-primary {
    border: 2px solid #1645d4;
}
.transition-navbar {
    transition: all 0.3s ease;
    opacity: 1;
}
.pagging__list--elipsis .icon-elipsis {
    padding: 0 6px;
    font-size: 1.1rem;
    color: #999;
}
nav.navbar.bg-dark.transition-navbar.scrolled {
    box-shadow: 0 2px 10px #0000001a;
    transform: translateY(0);
    animation: fadeInNavbar 0.5s ease-in-out;
    background-color: #021035 !important;
}
.offerings_banner .card_v6 {
    margin-top: 194px;
    position: absolute;
    bottom: 132px;
    left: 50%;
    width: 72%;
    transform: translateX(-50%);
}
.banner.offerings_banner {
    background-position: top;
    padding: 94px 0 368px;
}
.cl_video_block .card.block_rf {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}
.cl_contact .card-body {
    padding: 28px;
}
.banner.offerings_banner .banner_invest_btn {
    margin-bottom: 252px;
}
.banner.offerings_banner:before {
    background: #fff0;
}
.banner.offerings_banner img.shape-right {
    width: auto;
}
@keyframes fadeInNavbar {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar-nav li.nav-item a.nav-link {
    padding: 8px 16px;
    color: #fff;
}
.navbar-nav li.nav-item a.nav-link:hover {
    background-color: #252c3f;
}
@media (max-width: 991.98px) {
    .mega-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 1rem 0;
        width: 100%;
        left: 0;
        transform: none;
    }
    .menu_end_btn {
        flex-direction: column;
    }
    .menu_end_btn .btn {
        width: 100%;
    }
    .nav-item.show .mega-menu {
        display: block !important;
    }
}
.search_popup {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    height: 100%;
    width: 100%;
    z-index: 9999;
    padding: 100px 0;
    display: none;
}
.search_wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.search_wrap .title {
    font-size: 47px;
    margin: 0 0 70px;
    font-weight: 700;
}
.search_form {
    position: relative;
}
.search_form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #1645d4;
    padding: 10px 50px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    background-color: #f7f7f7;
    color: #475467;
}
.search_form input::placeholder {
    font-size: 30px;
    color: #475467;
    opacity: 0.5;
}
.search_btn {
    position: absolute;
    right: 20px;
    background: #fff0;
    border: 0;
    font-size: 25px;
    color: #1645d4;
    top: 50%;
    transform: translateY(-50%);
}
.search_close {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #1645d4;
    cursor: pointer;
}
.header_search i {
    font-size: 18px;
    color: #fff;
}
.side_menu span {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 2px;
    width: 25px;
    background: #232323;
    transition: all 0.35s ease-in-out;
}
.side_menu span:nth-child(2) {
    top: 8px;
    width: 35px;
}
.side_menu span:nth-child(3) {
    top: 16px;
    width: 15px;
}
.side_menu a:hover span {
    width: 30px;
}
.side_menu a:hover span:nth-child(2) {
    width: 35px;
}
.side_menu a:hover span:nth-child(3) {
    width: 40px;
}
.side_menu a {
    position: relative;
    padding: 9px 20px !important;
    display: block;
}
.side_menu {
    margin-left: 20px;
    display: flex;
    align-items: center;
}
.banner {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 94px 0 102px;
    background-position: top center;
    position: relative;
    overflow: hidden;
    z-index: 199;
}
.banner:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #fff0, #021036 85.096%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner.banner_loans::before {
    background: #fff0;
}
.banner_invest_btn {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 74px;
}
.banner_content {
    z-index: 199;
    position: relative;
    text-align: center;
}
.banner h2 {
    font-size: 92px;
    font-style: normal;
    font-weight: 300;
    color: #fff;
    line-height: 109px;
    text-transform: uppercase;
}
.banner h2 strong {
    font-size: 112px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}
.banner p {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 48px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.card.card_v1 {
    border: 1.5px solid #1645d4;
    border-radius: 8px;
    background: #021036;
}
.cl_img img {
    width: 106.1px;
    height: 106.1px;
    object-fit: cover;
    border-radius: 9999px;
}
.cl_img {
    position: relative;
    z-index: 199;
    display: inline-block;
}
.cl_img img.shape_one {
    position: absolute;
    top: 0;
    right: -50px;
    border-radius: 0;
    width: auto;
    height: auto;
    z-index: -1;
}
.cl_img img.shape_two {
    position: absolute;
    bottom: 0;
    left: -14px;
    border-radius: 0;
    width: auto;
    height: auto;
}
.cl_block_v2 {
    position: relative;
    background-color: #1645d4;
    padding: 94px 0;
    z-index: 12;
}
.cl_block_v2:after {
    content: "";
    position: absolute;
    background: linear-gradient(360deg, #1645d4 39.904%, #fff0 100%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cl_block_v2:before {
    content: "";
    position: absolute;
    background-image: url(new/assets/img/shape/shape-7.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cl_block_v2 h2 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
    z-index: 11;
    position: relative;
}
.cl_block_v2 p {
    color: #fff;
}
a.link_v1 {
    color: #fff;
    margin-top: 26px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration-line: underline;
}
a.link_v1:hover {
    color: #fff;
}
a.link_v1 i {
    transform: rotate(-45deg);
}
.feature_icon {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 42px;
}
.cl_marketplace {
    position: relative;
    background-color: #fff;
    padding: 94px 0;
    z-index: 1999;
}
.mp_num h5 {
    font-size: 50px;
    font-weight: 700;
    line-height: 63px;
}
.featured_offerings {
    background-color: #021036;
    padding: 94px 0;
    position: relative;
}
img.shape-eight {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 158px;
}
.featured_offerings.homepage .container .row {
    margin-top: 84px;
}
.featured_offerings.cl_journey {
    background-size: 42%;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    position: relative;
    overflow: hidden;
    z-index: 199;
    padding: 114px 0 146px;
}
.featured_offerings_row {
    margin-top: 84px;
}
.card.card_v1 h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}
.card.card_v1 p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 28px;
}
.card.card_v1 .card-body {
    padding: 28px;
}
.card.card_v2 {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 15px 0 #0000001a 4px 6px 0 #0000001a;
    background: #fff;
    overflow: hidden;
}
.offer_meta ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}
.offer_meta ul li i {
    color: #1645d4;
}
.card.card_v2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #4d4d4d;
}
.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
}
a.read-more,
a.read-more-content {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #4d4d4d;
    text-decoration: underline;
}
.offer_block_sm {
    border-radius: 8px;
    background: #f2f3f7;
    padding: 18px;
    margin-bottom: 18px;
    text-align: left;
}
.offer_block_sm h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6d7178;
}
.card.card_v2 .offer_block_sm p {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #000613;
}
ul.offer_tags {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 29px;
}
.offer_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
}
.offer_meta .offer_price .btn.btn-primary:hover,
.card_horizontal .offer_details_card .btn.btn-primary:hover {
    transform: scale(1.05);
}
ul.offer_tags li {
    border-radius: 9999px;
    background: #f2f3f7;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 7px 18px;
}
img.offer-cover-img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}
.offer_price h6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #6d7178;
}
.card.card_v2 .offer_price p {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #000613;
}
.card.card_v2 .offer_block_sm i {
    color: #1645d4;
}
.invest_card {
    padding-top: 200px;
}
.outline_title {
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff0;
    -webkit-text-stroke: 2px #e2423d;
    z-index: 199;
}
.steps-section {
    color: #fff;
    position: relative;
}
.steps-line {
    position: absolute;
    top: 19px;
    left: 19%;
    right: 18%;
    height: 2px;
    background-color: #f2f3f757;
    z-index: 1;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step .circle-outer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff4d;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step .circle-inner {
    width: 20px;
    height: 20px;
    background-color: #f2f3f7;
    border-radius: 50%;
}
.step-title {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}
.step-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.banner_content h1 {
    color: #fff;
    font-size: 62px;
    font-weight: 700;
    line-height: 78px;
}
.text_overlay {
    font-size: 94px;
    font-weight: 800;
    line-height: 44px;
    color: #f2f4f7;
    margin-bottom: -10px;
}
.widget-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
}
.widget-title:before {
    content: "";
    position: absolute;
}
.footer {
    background: #000613;
    background: #000613;
    z-index: 199;
    overflow: hidden;
    position: relative;
}
.footer_about p {
    color: #f2f4f7;
}
aside.widget ul li {
    margin-bottom: 6px;
}
aside.widget ul li a {
    color: #f2f4f7;
}
.text-black {
    color: #000;
}
.footer .footer-social-links ul li {
    display: inline-block;
    margin-left: 8px;
}
.top-footer .logo {
    margin-bottom: 50px;
}
.footer .footer-social-links ul li:first-child {
    margin-left: 0;
}
.footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}
.footer ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}
.footer ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}
.footer_btm {
    text-align: center;
    margin-top: 38px;
}
.footer-social-links ul li a {
    color: #000;
    line-height: 32px;
}
.copy-right {
    color: #f2f4f7;
}
.bottom-footer {
    background: #101828;
    padding: 10px 0;
}
.top-footer {
    padding: 55px 0 32px;
}
ul.footer_about li {
    display: inline-block;
}
.faq_blk .accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    overflow: hidden;
}
.faq_blk .accordion .accordion-item .accordion-button:before {
    content: "";
    position: absolute;
    width: 9px;
    height: 25px;
    background: #1645d4;
    left: 0;
}
.faq_blk .accordion-button:after {
    content: "\f054";
    background-image: none;
    font-family: "FontAwesome";
    transition: none !important;
    top: 0;
    position: relative;
    color: #344054;
}
.faq_blk .accordion-button:not(.collapsed):after {
    content: "\f077";
    background-image: none;
    font-family: "FontAwesome";
    transform: none;
    top: 0;
    position: relative;
    color: #1645d4;
}
.faq_blk .accordion-body {
    line-height: 26px;
    padding: 0 32px 19px;
    color: #475467;
    font-size: 16px;
    background-color: #f9fafb;
    font-weight: 400;
}
.faq_blk .accordion .accordion-item .accordion-header {
    line-height: normal;
}
.faq_blk .accordion .accordion-item .accordion-button {
    padding: 25px 32px;
    position: relative;
    color: #344054;
    font-size: 18px;
    font-weight: 400;
    box-shadow: none;
}
.faq_blk .accordion-button:not(.collapsed) {
    background-color: #f9fafb;
    border-radius: 0;
    color: #1645d4 !important;
    font-weight: 500 !important;
}
.faq_blk {
    margin-top: 81px;
}
.faq {
    margin: 114px 0 71px;
    position: relative;
}
.faq:before {
    content: "";
    position: absolute;
    background-image: url(new/assets/img/banner/cloth_banner.png);
    background-size: auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: top right;
    right: 0;
    z-index: -11;
}
.disclosure-section {
    background-color: #021036;
    padding: 24px 0;
    text-align: center;
}
.disclosure-preview,
.disclosure-extra {
    color: #fff;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}
.disclosure-toggle {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
}
.disclosure-toggle:hover {
    text-decoration: underline;
}
.disclosure-extra {
    overflow: hidden;
    height: 0;
    transition: height 0.5s ease;
}
.disclosure-extra-content {
    padding-top: 1rem;
    color: #fff;
    line-height: 1.6;
}
.cookie_policy {
    padding: 20px 16px;
    background-color: #fff;
}
.cookie_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie_text {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 55%;
}
.cookie_text i {
    font-size: 20px;
    color: #1645d4;
}
.cookie_text h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #111827;
}
.cookie_text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6d7178;
}
.btn.btn-outline,
.btn.btn-white {
    border: 1px solid #d1d5db;
    color: #374151;
    background: #f3f4f6;
    padding: 11px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 6px;
}
.btn.btn-white {
    background: #fff;
}
.cookie_btn {
    display: flex;
    align-items: center;
    gap: 14px;
}
.card.card_v2.card_horizontal .card-body {
    display: flex;
    flex-direction: row;
    gap: 34px;
}
.card.card_v2.card_horizontal {
    margin-bottom: 28px;
}
.card.card_v2.card_horizontal img.offer-cover-img {
    height: 100%;
    object-fit: cover;
    width: 408px;
    border-radius: 8px;
}
.offer_content {
    width: 36%;
}
.offer_content .offer_meta .title_content {
    min-height: 76px;
}
.card.card_v2 .offer_details_card p,
.card.card_v2 .offer_details_card span {
    font-size: 13px;
    font-weight: 700;
    line-height: 29px;
    color: #000613;
}
.card.card_v2 .offer_details_card span {
    font-weight: 400;
}
.card_v6 {
    border: 1.5px solid #1645d4;
    border-radius: 8px;
    background: #021036;
    padding: 54px;
    z-index: 11;
    position: relative;
    margin-top: 95px;
}
.blurred-content {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}
.uwp-crop-form {
    margin: 0;
}
.offer_details_card {
    width: 29%;
    padding: 17px;
    border-radius: 8px;
    background: #f2f3f7;
}
.bg-primary {
    background-color: #1645d4 !important;
}
.pagination .page-link,
.pagging__list li a {
    background-color: #fff0;
    border: none;
    color: #fff;
    padding: 3px 12px;
}
.pagination li.page-item.active a.page-link,
.pagging__list li.pagging__list--active a {
    background-color: #1645d4;
}
.pagging__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
}
.pagging__list--disabled a {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}
.btn.disabled {
    pointer-events: none;
    opacity: 0.6;
}
.custom-dropdown-btn {
    color: #fff;
    background-color: #fff0;
    border: 1px solid #ffffff80;
    border-radius: 4px;
    padding: 8px 16px;
}
.custom-dropdown-btn::after {
    margin-left: 0.5rem;
}
.custom-dropdown-menu {
    background-color: #fff;
    border-radius: 6px;
    padding: 12px;
    border: none;
    box-shadow: 0 2px 10px #00000026;
}
.custom-dropdown-menu .dropdown-item {
    padding: 10px 16px;
    color: #000613 !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.custom-dropdown-menu .dropdown-item.active {
    font-weight: 500;
    background: #f2f3f7;
}
.custom-dropdown-menu .dropdown-item:hover {
    background-color: #f1f2f6;
}
.custom-dropdown-btn:hover,
.custom-dropdown-btn:active,
.custom-dropdown-btn:first-child:active,
.custom-dropdown-btn:focus-visible {
    background-color: #fff0;
    color: #fff;
    border-color: #fff;
}
.filter_offers {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin-top: 48px;
}
.scrollable-dropdown {
    max-height: 250px;
    overflow-y: auto;
}
.offerings_summary_title h5 {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
}
.offerings_summary_title ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}
.offerings_summary_title ul li.badge-sucess,
.offerings_summary_title ul li.badge-failed {
    border-radius: 9999px;
    background: #059669;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 6px 16px;
}
.offerings_summary_title ul li.badge-failed {
    background: red;
}
.offerings_summary_title {
    padding: 50px 16px;
}
ul.tab_v1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #374151;
}
.tab_v1 li a {
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 16px 24px;
    color: #6d7178;
}
.tab_v1 li a.active {
    background: #252c3f !important;
    color: #fff !important;
}
.card_v4 .card {
    border: 1px solid #374151;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.cl_list_offers {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cl_list_offers .offer_block_sm {
    width: 188px;
}
.card_v4 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000613;
}
.summary_btn {
    margin-top: 19px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-direction: row;
}
.card_v7 {
    border-radius: 8px;
    background: #f2f3f7;
    padding: 18px;
    margin-top: 24px;
}
.nda-banner {
    background-color: #1653ea;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .nda-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.nda-banner-left {
    display: flex;
    gap: 0.75rem;
}
.nda-icon {
    color: #fff;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}
.nda-text .nda-title {
    font-weight: 600;
    color: #fff;
}
.nda-text .nda-subtitle {
    font-size: 0.875rem;
    color: #ffffffb3;
}
.nda-banner-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nda-label {
    color: #fff;
    font-size: 0.875rem;
    margin: 0;
}
.key-documents-title {
    margin: 1.5rem 0 1rem;
}
.doc-card {
    background-color: #727a8d;
    color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.doc-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.doc-icon {
    font-size: 1.5rem;
    color: #c6ddff;
}
.doc-title {
    font-weight: 600;
}
.doc-subtitle {
    font-size: 0.875rem;
    color: #ffffffb3;
}
.doc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}
.doc-file-info {
    font-size: 0.75rem;
    color: #ffffffb3;
}
.doc-locked {
    background-color: #fff3;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.info-box .info-group {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
}
.info-group p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}
.info-label {
    font-weight: 500;
    color: #374151;
}
.info-group a {
    color: #1653ea;
    text-decoration: none;
    font-weight: 500;
}
.highlight-block h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.highlight-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.highlight-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.highlight-list li::before {
    content: "\f058";
    font-family: "FontAwesome";
    color: #1653ea;
    position: absolute;
    left: 0;
    top: 0;
}
.cl_block_v2.cl_summary_block_v2 {
    margin: 108px 0;
}
.question-box {
    background-color: #1c2434;
    position: relative;
    margin-top: 30px;
}
.question-input-group .form-control {
    background-color: #2a3347;
    border: none;
    color: #fff;
}
.question-input-group .form-control::placeholder {
    color: #a1a7b5;
}
.question-input-group .btn {
    background-color: #1653ea;
    border: none;
}
.question-input-group .btn:hover {
    background-color: #0f3eb8;
}
.question-box img.shape-eight {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 124px;
}
.question-box .input-group {
    gap: 8px;
}
form span.required {
    color: #ef4444;
}
.form-control-lg,
.form-select-lg {
    font-size: 16px;
}
.btn_close_v1 {
    position: absolute;
    top: 24px;
    right: 24px;
}
.potential_risk p {
    color: #d1d5db;
    min-height: 50px;
}
.potential_risk .card.card_v4 {
    height: 100%;
}
.borrower_cover_img {
    position: relative;
}
.borrower_cover_img .img_borrower_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #111827, #fff0 100%);
    padding: 12px 22px;
}
.borrower_cover_img {
    position: relative;
    border-radius: 8px;
}
.doc-card.unlocked {
    background-color: #252c3f;
}
.doc-card.unlocked a.btn {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}
.doc-card.unlocked .doc-icon {
    font-size: 1.5rem;
    color: #3b82f6;
}
.mobile-filter {
    display: none;
}
.mobile-filter .btn {
    width: 100%;
}
.mobile-filter .nav-link.dropdown-item {
    padding: 6px 16px;
}
.mobile-filter .nav-link.dropdown-item.active {
    color: #4500d4 !important;
    border: 0;
}
.mobile-filter ul.dropdown-menu.show {
    width: 100%;
}
.mobile-filter .btn,
.mobile-filter .btn:active,
.mobile-filter .btn:focus,
.mobile-filter .btn:hover {
    background-color: #252c3f;
    color: #fff;
    outline: 0;
    border: 0;
}
.mobile-profile-dropdown .mobile-dropdown-card {
    display: none;
}
.banner.event_banner {
    background-image: url(new/assets/img/events-bg.jpg);
    background-position: center 68%;
}
.event_list img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.event_banner:after {
    content: "";
    position: absolute;
    background: linear-gradient(360deg, #fff0 0%, #021036 98.648%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.offer_block_sm i {
    color: #1645d4;
}
.offer_block_sm p {
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    color: #000613;
}
.teams_list .card {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    cursor: pointer;
}
.team_social li a {
    color: #9ca3af;
}
.teams_list .card h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}
.teams_list .card h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #6d7178;
}
ul.team_social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.teams_list .card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #6d7178;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.teams_list img.team_img {
    height: 282px;
    object-fit: cover;
}
.clickable-card {
    cursor: pointer;
}
.triangle_sm {
    border-top: 20px solid #2563eb;
    border-left: 20px solid #fff0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
.team_names {
    position: relative;
}
.resources_banner .banner_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.input-group.search-form {
    width: 45%;
}
.cl_resources {
    background-color: #f2f3f7;
    padding: 60px 16px;
}
.cl_resources .card {
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 #0000000d;
    background: #fff;
    border: none;
    height: 100%;
    margin: 0;
}
.cl_resources .card .card-body {
    padding: 22px;
}
.cl_resources .card .card-body .rs_tags a {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.cl_resources .card .card-body h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cl_resources .card .card-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cl_resources .nav.nav-tabs .nav-link {
    border: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    color: #000613;
    text-align: left;
    width: 100%;
}
.cl_resources .nav.nav-tabs .nav-link.active {
    background-color: #fff0;
    border-bottom: 2px solid #000613;
}
.cl_resources .nav.nav-tabs li.nav-item {
    width: 33.33%;
}
.cl_resources .nav.nav-tabs {
    margin-top: 62px;
}
.cl_resources .tab-content {
    padding: 32px 0;
}
.single-post .cl_resources .card {
    height: auto;
}
.press-inquiry-box {
    position: relative;
    background-color: #1645d4;
    z-index: 12;
    margin-top: 48px;
    overflow: hidden;
}
.press-inquiry-box:before {
    content: "";
    position: absolute;
    background-image: url(new/assets/img/shape/shape-7.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.press-inquiry-box:after {
    content: "";
    position: absolute;
    background: linear-gradient(360deg, #1645d4 39.904%, #fff0 100%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cl_contact {
    padding: 94px 0;
}
.card.card_v5 {
    border: 1.5px solid #1645d4;
    border-radius: 8px;
    background: #021036;
    padding: 10px;
    margin-bottom: 28px;
}
.card.card_v5 h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
}
.card.card_v5 p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.cl_signup {
    padding: 0 0 82px;
    position: relative;
}
.login-card .triangle_sm {
    top: 14px;
    right: 14px;
}
.card.card_v5.light {
    border: 1.5px solid #1645d4;
    border-radius: 8px;
    background: #f2f3f7;
    position: relative;
}
.card.card_v5.light h5,
.card.card_v5.light p {
    color: #000613;
}
.card.card_v5.light .triangle_sm {
    top: 14px;
    right: 14px;
}
.consent_text {
    color: #4a5a85;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.form_step_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.form_step_btn .btn,
.form_step_btn_box .btn {
    width: 182px;
}
.cl_signup_steps {
    padding: 70px 0 95px;
}
.progress-wrapper {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.progress-step {
    width: 72px;
    height: 6px;
    border-radius: 6px;
    background-color: #e5e7eb;
}
.progress-step.active {
    background-color: #0b51ff;
}
.required-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 26px;
}
.option-card {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.option-card:hover {
    border-color: #0b51ff;
    box-shadow: 0 0 0 0.1rem #0b51ff26;
}
.success-shape {
    width: 100px;
}
.option-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
    accent-color: #0b51ff;
}
.option-label {
    margin: 0;
    font-size: 1rem;
    color: #111827;
}
label.form-label.label_v1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}
.btn.btn-back {
    color: #fff !important;
    background-color: #4a5a85;
    border-color: #4a5a85;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
}
#privacyOverlay2 .inner-box,
#privacyOverlay3 .inner-box,
#privacyOverlay .inner-box,
#entityOverlay .inner-box {
    max-height: 90%;
    overflow: auto;
}
.upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.upload-box:hover {
    border-color: #0b51ff;
}
.upload-box .upload-icon {
    font-size: 2.5rem;
    color: #9ca3af;
}
.upload-box .upload-text {
    color: #111827;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 18px;
}
.upload-box .upload-subtext {
    color: #000613;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}
.upload-box input[type="file"],
.pagging__list.pagination .pagging__list-title {
    display: none;
}
.page-numbers.dots {
    display: inline-block;
    padding: 0 6px;
    color: #ccc;
    font-size: 16px;
}
.custom-dropdown-v2 {
    position: relative;
    width: 100%;
}
.dollar-i-box {
    background: #1645d4;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dollar-i-box i {
    font-size: 12px;
    color: #fff;
}
span.drop_arrow {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
}
span.drop_arrow i {
    color: gray;
}
.custom-dropdown-v2 .dropdown-toggle-custom {
    width: 100%;
    text-align: left;
    background-color: #fff;
    border: 1px solid #d1d5db;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-dropdown-v2 .dropdown-toggle-custom:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px #6366f14d;
}
.custom-dropdown-v2 .dropdown-menu-custom {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    background-color: #fff;
}
.custom-dropdown-v2 .dropdown-menu-custom.show {
    display: block;
    padding: 10px;
}
.custom-dropdown-v2 .dropdown-item-custom {
    padding: 10px 14px;
    cursor: pointer;
    background-color: #f2f3f7;
    border-radius: 6px;
    margin-bottom: 8px;
}
.custom-dropdown-v2 .dropdown-item-custom:last-child {
    margin-bottom: 0;
}
.custom-dropdown-v2 .dropdown-item-custom:hover {
    background-color: #f3f4f6;
}
.custom-dropdown-v2 .dropdown-item-custom.active {
    background-color: #4a5a85;
    color: #fff;
}
.cl_block_v2.cl_summary_block_v2.cl_thanks {
    border-radius: 8px;
    overflow: hidden;
}
.email_search {
    border-radius: 6px;
    background: #f2f3f7;
    padding: 26px;
}
.email_search input.form-control {
    border: 1px solid #374151;
    border-radius: 6px !important;
    background: #252c3f;
    color: #fff;
}
.email_search .input-group {
    gap: 18px;
}
.email_search .input-group .btn {
    position: relative;
    z-index: 2;
    border-radius: 6px !important;
}
.banner.banner_v3 {
    padding: 122px 0 304px;
    background-position: bottom center;
}
.how-it-works-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    background-color: #000;
    height: 379px;
    transition: transform 0.3s ease;
}
.how-it-works-card:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #fff0 19.231%, #000c 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.how-it-works-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.4s ease;
}
.how-it-works-link:hover .how-it-works-card img {
    transform: scale(1.05);
}
.how-it-works-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    height: 94px;
}
.how-it-works-badge {
    background-color: #fff;
    color: #000;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
}
.how-it-works-badge a {
    color: #000;
}
.how-it-works-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.how-it-works-card .triangle_sm {
    border-top: 20px solid #2563eb;
    border-left: 20px solid #fff0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 12px;
    top: 10px;
    z-index: 19;
}
.cl_block_v2.cl_block_white {
    background-color: #fff;
    overflow: hidden;
}
.cl_block_v2.cl_block_white:after {
    background: linear-gradient(360deg, #fff 39.904%, #fff0 100%);
}
.board-members-row {
    margin-top: 94px;
}
.cl_video_block {
    padding: 94px 0;
    position: relative;
    background: #000613;
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
#privacyModal .wp-block-spacer,
#privacyOverlay .wp-block-spacer,
#privacyOverlay2 .wp-block-spacer,
#privacyOverlay3 .wp-block-spacer {
    height: auto !important;
}
.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #ffffff57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.video-play-button:hover {
    background-color: red;
}
.video-play-button::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 15px solid #fff;
    border-top: 10px solid #fff0;
    border-bottom: 10px solid #fff0;
    margin-left: 5px;
}
.shape-right {
    position: absolute;
    right: 0;
    width: 17%;
}
.shape-left {
    position: absolute;
    bottom: -62px;
    width: 20%;
    left: 0;
}
.shape-left-center {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(180deg);
    width: 18%;
}
.shape-center {
    top: 50%;
    transform: translateY(-50%);
}
.info-box-v2 {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px #00000008;
}
.icon-box-v2 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px #00000008;
    height: 100%;
}
.icon-box-v2 i {
    font-size: 24px;
    color: #1645d4;
    margin-top: 5px;
}
.icon-box-v2 h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}
.tier-card.bg-senior:before {
    content: "";
    position: absolute;
    background-image: url(new/assets/img/shape/shape-7.png);
    background-size: 172%;
    background-repeat: no-repeat;
    background-position: top center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.tier-card.bg-senior:after {
    content: "";
    position: absolute;
    background: linear-gradient(360deg, #1645d4 39.904%, #fff0 100%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 40px;
    font-size: 16px;
}
.check-list i {
    color: #2563eb;
    margin-right: 8px;
}
.featured_v3 {
    background: #f2f3f7;
    padding: 94px 0;
    position: relative;
}
.icon-box-v2 p {
    font-size: 16px;
    line-height: 22px;
    color: #1f2937;
}
.block_lf,
.block_rf {
    margin: 0 52px;
}
.stock-returns {
    margin: 75px 0 138px;
}
.address-box p {
    color: #000613;
    font-size: 16px;
    font-weight: 400;
}
.address-box {
    display: flex;
    align-items: start;
}
.address-box i {
    margin-top: 8px;
}
.investor-features {
    margin: 42px 0 72px;
}
.cl_work_block .steps-line {
    position: absolute;
    top: 19px;
    left: 12%;
    right: 18%;
    height: 2px;
    background-color: #f2f3f757;
    z-index: 1;
    width: 75%;
}
.cl_work_block.advs-box {
    border-radius: 8px;
    overflow: hidden;
}
.work_cl_text {
    margin-top: 80px;
}
ul.investors_features_list {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 58px;
    flex-direction: row;
}
ul.investors_features_list li {
    border-radius: 8px;
    background: #252c3f;
    color: #fff;
    font-size: 18px;
    display: flex;
    width: 100%;
    height: 75px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
ul.investors_features_list li a {
    border-radius: 8px;
    background: #252c3f;
    padding: 12px 22px;
    color: #fff;
    font-size: 18px;
    display: flex;
    width: 100%;
    height: 75px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}
ul.investors_features_list li a:hover {
    transform: scale(1.05);
}
.featured_offerings.hardmoney-img {
    z-index: 122;
}
.hardmoney-img img.shape-left-center {
    z-index: -10;
}
.featured_v4 {
    background-color: #fff;
    padding: 94px 0;
    position: relative;
    z-index: 122;
}
.faq_block .accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
}
.faq_block .accordion .accordion-item .accordion-button {
    font-size: 20px;
    color: #000613;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 18px;
    position: relative;
    background: #f2f3f7;
}
.faq_block .accordion .accordion-button::after {
    content: "\f078";
    color: #6b7280;
    background-image: none;
    font-family: "FontAwesome";
    transition: none !important;
    top: -10px;
    position: relative;
}
.faq_block .accordion .accordion-button:not(.collapsed)::after {
    content: "\f077";
    background-image: none;
    font-family: "FontAwesome";
    transform: none;
    top: -10px;
    position: relative;
}
.faq_block .accordion .accordion-body {
    font-size: 18px !important;
    line-height: 28px;
    color: #3c3c3c;
    padding: 22px 18px;
}
.faq_block .accordion .accordion-body .card_v4 p {
    font-size: 18px !important;
}
.page-template-template-faq .faq {
    margin: 0;
}
.circle_icon {
    display: flex;
    align-items: start;
    gap: 16px;
}
.circle_icon p {
    font-size: 18px;
    color: #fff;
}
.circle_icon .bg-blue {
    border-radius: 9999px;
    background: #1645d4;
    width: 48px;
    height: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.circle_icon .bg-blue i {
    color: #fff;
    font-size: 20px;
}
.icon-box-v2.gradient-box {
    border: 1.5px solid #1645d4;
    border-radius: 12px;
    box-shadow: 0 25px 50px 0 #00000040;
    background: linear-gradient(133.82deg, #010d2c 0.965%, #021751 98.561%);
    z-index: 1;
    position: relative;
}
.how-it-works-row {
    margin: 58px 0 0;
}
.shape-top-left {
    position: absolute;
    top: 0;
}
.icon-box-v2.gradient-box li {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
}
.icon-box-v2.gradient-box li i {
    font-size: 16px;
    margin-right: 6px;
}
.text-body {
    color: #000613;
}
.cl_block_v2.cl_block_white img.shape-left {
    width: 14%;
}
.cl_block_v2.cl_block_white.capital-stack-advantage {
    z-index: 122;
    padding-bottom: 215px;
    overflow: hidden;
}
.advantage-description {
    padding: 0 94px;
}
.card-stack {
    max-width: 915px;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: 0 4px 14px #00000014;
    margin-top: -254px;
    z-index: 133;
    position: relative;
}
.tier-card.bg-senior .tier-title h6 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}
.tier-card .tier-title h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}
.card-stack .tier-card {
    padding: 30px;
    color: #fff;
    border-radius: 8px;
}
.tier-card.bg-senior .tier-title div,
.tier-card.bg-senior .tier-title div h6 {
    color: #fff;
}
.card-stack .tier-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: start;
}
.card-stack .tier-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400;
    color: #404040;
}
.card-stack .tier-badge {
    position: absolute;
    right: 26px;
    top: -22px;
    background: #1d4ed8;
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 40px;
    border-radius: 999px;
    border: 2px solid #fff;
    font-weight: 600;
    z-index: 1999;
}
.card-stack .bg-senior {
    background: linear-gradient(180deg, #1645d4 17.778%, #1645d4 117.778%);
    border-radius: 8px;
    box-shadow: 0 8px 10px 0 #0000001a 20px 25px 0 #0000001a;
    margin-bottom: -10px;
    z-index: 122;
}
.card-stack .bg-mezzanine {
    color: #000;
    border: 1px solid #8bc3de;
    background: linear-gradient(90deg, #8bc3de, #8bc3de 100%);
    margin-bottom: -28px;
    z-index: 1;
}
.card-stack .bg-preferred {
    color: #000;
    border: 1px solid #a9afc3;
    background: linear-gradient(90deg, #a9afc3, #a9afc3 100%);
    padding: 48px 30px 30px;
}
.card-stack .bg-common {
    color: #000;
    border: 1px solid #d8dae2;
    background: linear-gradient(90deg, #d8dae2, #d8dae2 100%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: -11;
    margin-top: -28px;
    padding: 48px 30px 30px;
}
.card-stack .icon-circle {
    font-size: 20px;
    margin-right: 10px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #1645d4;
    min-width: 48px;
}
.card-stack .info-row {
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 400;
}
.card-stack .info-row strong {
    display: inline-block;
}
.card-stack .icon-box-v2.gradient-box {
    padding: 39px 118px;
    text-align: center;
}
.ltv-card {
    background-color: #0f172a;
    color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px #0003;
    max-width: 700px;
    margin: 40px 0 0;
}
.ltv-title {
    font-size: 16px;
    font-weight: 600;
}
.ltv-title i {
    color: #3b82f6;
    margin-right: 8px;
    font-size: 20px;
}
.ltv-card p {
    color: #d1d5db;
    font-size: 13px;
    line-height: 20px;
}
.ltv-bar-container {
    background-color: #1e293b;
    border-radius: 999px;
    height: 16px;
    margin-top: 16px;
    overflow: hidden;
    display: flex;
}
.ltv-loan {
    background-color: #1d4ed8;
    width: 65%;
}
.ltv-equity {
    background-color: #60a5fa;
    width: 35%;
}
.ltv-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-top: 8px;
    color: #d1d5db;
}
.icon-box-v2.gradient-box-v2 {
    border-radius: 8px;
    box-shadow: 0 10px 15px 0 #0000001a 4px 6px 0 #0000001a;
    background: linear-gradient(136.17deg, #022a5a 14.832%, #1645d4 98.845%);
}
.icon-box-v2.gradient-box-v2 h6 {
    font-size: 18px;
}
.banner.due-diligence-banner .shape-left {
    width: 15%;
    top: 50%;
    transform: translateY(-50%);
}
.banner.due-diligence-banner {
    padding: 49px 0 34px;
    background-position: center;
}
.cl_block_v2.cl_block_white h2 {
    color: #000613;
}
.cl_block_v2.cl_block_white p {
    color: #000613;
}
.cl_block_v2.cl_block_white .how-it-works-title {
    color: #fff;
}
.tier-card .dept-card {
    width: 100%;
}
.why_borrowers .how-it-works-row {
    margin: 0;
}
ul.borrowers_collateral_list {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin-top: 38px;
    flex-direction: row;
}
.loan_type_btn .btn {
    padding: 9px 14px;
}
ul.borrowers_collateral_list li {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #000613;
    background-color: #fff;
    border-radius: 9999px;
    padding: 12px 20px;
    width: auto;
    text-align: center;
}
ul.borrowers_collateral_list li i {
    color: #1645d4;
    margin-right: 5px;
}
.loan-type-offer {
    position: relative;
    background: linear-gradient(180deg, #010d2c 0%, #021751 100%);
    border: 1px solid #1645d4;
    border-radius: 12px;
    padding: 3rem;
    color: #fff;
    margin-top: 3rem;
    z-index: 12;
}
.loan-type-card {
    background-color: #021036;
    border: 1px solid #1645d4;
    display: flex;
    align-items: start;
    padding: 1.5rem;
    height: 100%;
    border-radius: 0.75rem;
    gap: 4px;
}
.loan-type-card i {
    margin-top: 6px;
    font-size: 20px;
}
img.shape-right-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20%;
    z-index: -11;
}
.fund_deals .shape-left-center {
    transform: translateY(-50%);
}
.banner_borrowers .shape-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(180deg);
    width: 18%;
}
.banner_borrowers .shape-right {
    position: absolute;
    right: 0;
    transform: rotateY(180deg);
    width: 17%;
    bottom: 0;
}
.banner .banner_content .shape-center {
    position: absolute;
    width: 32%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateY(180deg);
    z-index: -11;
}
.card.card_v2.card_horizontal.card_horizontal_v2 img.offer-cover-img {
    height: 100%;
    object-fit: cover;
    width: 298px;
    border-radius: 0;
}
.card.card_v2.card_horizontal.card_horizontal_v2 .card-body {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
}
.card.card_v2.card_horizontal.card_horizontal_v2 .offer_content {
    width: 100%;
    padding: 28px 20px;
}
.card.card_v2.card_horizontal.card_horizontal_v2 .offer_meta {
    display: flex;
    align-items: start;
    gap: 6px;
    margin-bottom: 18px;
}
.card.card_v2.card_horizontal.card_horizontal_v2 .offer_meta i {
    font-size: 24px;
    color: #1645d4;
}
.loan_type_btn {
    display: flex;
    align-items: center;
    gap: 12px;
}
.banner_borrowers img.shape-left.rotate-left {
    transform: translateY(-50%);
    width: 14%;
}
.check-list.vertical {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.offer_details_card.offer_card_gradient {
    width: 100%;
    border: 1.5px solid #1645d4;
    border-radius: 8px;
    background: linear-gradient(134.42deg, #02164d 0.3%, #010d2c 99.7%);
    padding: 30px;
}
.offer_details_card.offer_card_gradient p {
    color: #fff;
}
.offer_details_card.offer_card_gradient span {
    color: #fff;
}
.offer_details_card.offer_card_gradient ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #374151;
}
img.shape-right.rotate-180 {
    transform: rotateY(180deg);
    z-index: -11;
}
.map_v2 {
    border-radius: 8px;
    background: #252c3f;
    text-align: center;
    padding: 28px;
}
.map_v2 .map-body {
    position: relative;
    border-radius: 8px;
    background: #021036;
    padding: 28px;
    z-index: 122;
}
.map_v2 .map-body:before {
    content: "";
    position: absolute;
    background-image: url(new/assets/img/shape/shape-7.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.map-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 48px 0 8px;
}
.map-stats h6 {
    color: #1645d4;
    font-size: 36px;
    margin-bottom: 18px;
}
.map-stats p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.loan-state-card {
    background-color: #f5f6fa;
    border-radius: 10px;
    flex: 1 1 300px;
    box-shadow: 0 4px 12px #0000001a;
}
.loan-state-header {
    background-color: #1249df;
    color: #fff;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}
.loan-state-body {
    padding: 20px;
    position: relative;
    height: 100%;
    margin-bottom: 28px;
}
.loan-state-list {
    list-style: none;
    margin: 0;
    margin-bottom: 22px;
}
.loan-state-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1rem;
    color: #111;
}
.loan-state-list li i {
    color: #1249df;
    margin-right: 0.6rem;
    width: 20px;
    text-align: center;
    margin-top: 0px !important;
}
.card.card_v2.card_horizontal.card_horizontal_v2 {
    height: 100%;
}
.loan-state-list.two-column {
    display: flex;
    gap: 0.4rem 1rem;
}
.loan-state-btn {
    position: relative;
    bottom: auto;
}
.loan-state-section {
    margin-top: 80px;
}
.hard-money-card {
    border-radius: 8px;
    background: #f2f3f7;
    padding: 22px;
    height: 100%;
}
.load-more-box {
    margin-bottom: 28px;
}
.hard-money-card h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 16px;
}
.hard-money-row {
    margin-top: 72px;
}
.card-body.card-body-v4 {
    padding: 32px;
}
.timeline {
    position: relative;
    padding: 40px 0;
}
.cl_video_block.why_borrowers.timeline-box {
    padding-bottom: 0;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 76%;
    background: #0d6efd;
}
.timeline-item {
    position: relative;
    margin-bottom: 100px;
}
.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    text-align: left;
}
.timeline-item:nth-child(even) .timeline-content {
    left: 52%;
    text-align: left;
}
.timeline-content {
    position: relative;
    width: 48%;
    padding: 20px;
    border: 1.5px solid #1645d4;
    border-radius: 12px;
    box-shadow: 0 25px 50px 0 #00000040;
    background: linear-gradient(133.82deg, #010d2c 0.965%, #021751 98.561%);
}
.timeline-content p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}
.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: #0d6efd;
    border: 4px solid #0d6efd;
    border-radius: 50%;
    z-index: 10;
}
.timeline-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: 160px;
}
.timeline-content h5 {
    color: #0d6efd;
    margin-bottom: 20px;
}
.cl_num {
    width: 48px;
    height: 48px;
    position: relative;
    display: inline-block;
    align-items: center;
    background-color: #1645d4;
    text-align: center;
    line-height: 48px;
    border-radius: 9999px;
}
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 8px;
    }
    .timeline-content {
        width: 90% !important;
        left: 25px !important;
        text-align: left !important;
        padding-left: 21px;
    }
    .timeline-dot {
        left: 8px;
    }
    .timeline-content h5 {
        font-size: 16px;
    }
    .cl_num {
        width: 39px;
        height: 39px;
        line-height: 39px;
    }
}
.cl-advtge-block .icon-box-v2 h6 {
    font-size: 18px;
    font-weight: 500;
}
.cl-advtge-block .icon-box-v2.gradient-box {
    padding: 62px;
}
.icon-block-v1 .circle_icon .bg-blue {
    width: 64px;
    height: 64px;
}
.icon-block-v1 {
    margin-bottom: 55px;
    text-align: center;
}
.testimonial-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
    min-height: 280px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}
.testimonial-card p {
    font-size: 16px;
}
.testimonial-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.testimonial-icon svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}
.testimonialslider .swiper-slide {
    width: 60%;
}
.single-post-v1 h2 {
    font-size: 30px;
    line-height: 36px;
}
.post-profile img {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
}
.post-profile {
    display: flex;
    align-items: start;
    gap: 16px;
}
.post-profile h6 {
    font-size: 18px;
}
.post-profile p {
    font-size: 14px;
}
img.post-img {
    width: 100%;
    height: 402px;
    object-fit: cover;
}
.single-post-v1 ul {
    padding-left: 34px;
}
.single-post-v1 ul li {
    list-style: disc;
    margin-bottom: 5px;
}
.share-link {
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-link i {
    font-size: 18px;
}
.card_v5 {
    box-shadow: 0 4px 16px 0 #00000040;
    background: #f2f3f7;
    padding: 42px 118px;
    text-align: left;
    border-radius: 8px;
    position: relative;
    margin-bottom: -198px;
}
.card_v5:before {
    content: "";
    position: absolute;
    background-image: url(new/assets/img/shape/shape-19.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 68%;
}
.income-block {
    border-radius: 8px;
    background: #021036;
    position: relative;
    overflow: hidden;
}
.income-block .income-content {
    position: relative;
    padding: 50px 32px 32px;
}
.income-block .income-content h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}
.income-block img {
    height: 203px;
    width: 100%;
    object-fit: cover;
}
.income-block .income-content p {
    font-size: 16px;
    line-height: 24px;
}
.income-block-row {
    margin: 68px 0 78px;
}
.income-block .income-content .icon {
    border: 4px solid #1645d4;
    border-radius: 9999px;
    box-shadow: 0 10px 15px 0 #0000001a 4px 6px 0 #0000001a;
    background: #1d4ed84d;
    display: inline-block;
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 64px;
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
}
.income-block .income-content .icon i {
    color: #fff;
    font-size: 24px;
}
.ft-cat {
    position: absolute;
    right: 12px;
    top: 8px;
}
.ft-cat .badge {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    background-color: #1645d4;
    border-radius: 9999px;
    padding: 4px 12px;
}
.ft-cat .badge.green {
    background-color: #059669;
}
.ft-cat .badge.blue {
    background-color: #1645d4;
}
.ft-cat .badge.red {
    background-color: #dc2626;
}
.ft-cat .badge.orange {
    background-color: #FF8C00;
}
.icon-circle.color-light-blue {
    color: #3b82f6;
}
.icon-circle.color-gray {
    color: #8bc3de;
}
.icon-circle.color-cream {
    color: #991b1b;
}
.card.card_v2.card_horizontal .card_img {
    position: relative;
    height: 100%;
}
.loan-types .loan_tiles .card.card_v2.card_horizontal .card_img {
    height: auto;
}
.card.card_v2.card_horizontal a.read-more {
    bottom: 20px;
}
.signin-error-box a {
    color: #842029;
}
.modal-open #readMoreModal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.shape-fifteen {
    top: 82px;
}
.btn-close.mpdal_btn_close {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #2a5cd4;
    background: none;
    z-index: 199;
}
.team_names h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}
.team_names h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #6d7178;
}
.modal-body .team_names,
.modal-body .team_social {
    padding: 15px 18px;
}
.teammodal .modal-body {
    background-color: #1f2937;
}
.teammodal .modal-content {
    border-radius: 0;
    border: none;
}
.team-details-cl {
    padding: 68px;
}
.team-details-cl p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.btn-close.mpdal_btn_close i {
    font-size: 24px;
}
.modal-body .team_names .triangle_sm {
    right: 10px;
    top: 10px;
}
.card.card_v5.light:before,
.auth_block .card.card_v5:before {
    display: none;
}
.auth_content {
    margin-bottom: 118px;
}
.auth_block .shape-right {
    width: 9%;
}
.form-control-icon {
    position: relative;
}
.form-control-icon input {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.form-control-icon .input-icon-left {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #b0b0c3;
    font-size: 1rem;
}
.form-control-icon .input-icon-right {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    color: #b0b0c3;
    font-size: 1rem;
    cursor: pointer;
}
.card.card_v2 .card-body {
    padding: 24px;
}
.card.card_v5.light .card-body {
    padding: 22px;
}
.banner.banner_v3 {
    padding: 122px 0 188px;
    background-position: bottom;
}
.login-card .card-body {
    padding: 48px !important;
}
.marketplace-desc {
    background: #ffffff1a;
    height: auto;
    padding: 34px;
}
.cl_signup_steps .shape-left,
.cl_signup_steps .shape-right {
    z-index: -1;
}
.jcf-list-content ul {
    max-height: 500px;
    display: inline-grid;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px #00000026;
    padding: 6px 0;
    background-color: #fff;
    scrollbar-width: thin;
    scrollbar-color: #ccc #fff0;
    scroll-behavior: smooth;
}
.custom-dropdown-menu::-webkit-scrollbar,
.jcf-list-content ul::-webkit-scrollbar {
    width: 6px;
}
.custom-dropdown-menu::-webkit-scrollbar-thumb,
.jcf-list-content ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.custom-dropdown-menu::-webkit-scrollbar-track,
.jcf-list-content ul::-webkit-scrollbar-track {
    background: #fff0;
}
.custom-dropdown-menu .dropdown-item,
.jcf-list-content ul li span.jcf-option {
    padding: 10px 16px;
    font-size: 14px;
    color: #222;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
}
.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus,
.jcf-list-content ul li span.jcf-option:hover,
.jcf-list-content ul li span.jcf-option.jcf-hover {
    background-color: #f0f0f5;
    color: #000;
}
.jcf-list-content ul li span.jcf-option.jcf-selected {
    background-color: #e0e0e8;
    font-weight: 600;
}
.jcf-list-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcf-select {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 160px;
    color: #fff;
    cursor: pointer;
    position: relative;
    background-color: #fff0;
    border: 1px solid #ffffff80;
    border-radius: 4px;
    padding: 8px 16px;
    color: #000613;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
#invs_step7 .jcf-select {
    min-width: 100px;
    padding: 9px 16px;
}
#investmentTabs .jcf-select {
    border: 1px solid #374151;
    display: none !important;
}
.ira_provider .jcf-select{
    border: 1px solid #e2e8f0;
    width: 100%;
}
#investmentTabs .jcf-select .jcf-select-opener::before,
#investmentTabs .jcf-select .jcf-select-text span,
.individualAccredited p,
.entityAccredited p {
    color: #000;
}
.wpcf7-form .jcf-select,
.custom-select-box .jcf-select {
    color: #000;
    border: 1px solid #ced4da;
    width: 100%;
}
.custom-select-box .jcf-select {
    border-radius: 0.5rem;
}
.jcf-select-opener::before {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid #fff0;
    border-bottom: 0;
    border-left: 0.3em solid #fff0;
    color: #fff;
}
.wpcf7-form .jcf-select-opener::before,
.custom-select-box .jcf-select-opener::before,
.ira_provider .jcf-select-opener::before{
    color: #475467;
}
.wpcf7-form .wpcf7-submit,
.page-template-template-contact .jcf-list-content ul,
.page-template-template-contact .jcf-list-content ul,
.page-template-template-checkout .jcf-list-content ul {
    width: 100%;
}
.jcf-select-text span {
    color: #fff;
    font-weight: 500;
}
.wpcf7-form .jcf-select-text span,
.custom-select-box .jcf-select-text span,
.custom-select-box .jcf-select-opener::before,
.ira_provider .jcf-select-text span {
    color: #475467;
}
.jcf-select.jcf-select-dropdown-menu {
    background-color: #090040;
    border-color: #ccc;
    border-radius: 6px;
}
.jcf-select-drop {
    z-index: 9999999;
}
.jcf-list-content ul li span.jcf-option {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}
.jcf-list-content ul li span.jcf-option:hover,
.jcf-list-content ul li span.jcf-option.jcf-hover {
    background-color: #f1f1f1;
}
.jcf-list-content ul {
    display: inline-grid;
}
.jcf-list-content ul li span.jcf-option.jcf-selected {
    background-color: #e5e5f5;
    font-weight: 600;
}
.jcf-list-content ul li {
    display: contents;
}
#loginform p.login-username label,
#modalloginform p.login-username label {
    text-align: left !important;
    margin-top: 0.25rem !important;
    width: 100% !important;
    margin-bottom: 0.5rem;
    font-size: 0.875em;
}
#loginform p.login-username input,
#modalloginform p.login-username input {
    font-size: 16px;
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}
.cl_signup_steps .container .row div h4,
.login-error a,
.login-error p {
    color: #fff;
}
.login-error a,
.login-error p {
    font-size: 15px;
    margin-top: 10px;
}
#forgotpassword input[type="email"] {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 16px;
}
.uwp_forgot_submit {
    color: #fff !important;
    background-color: #1645d4 !important;
    border-color: #1645d4 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 24px !important;
    padding: 11px 20px !important;
}
#forgotpassword .form-label {
    font-size: 0.875em;
}
.forgotpwd-box .mb-4 {
    font-size: 64px !important;
    font-weight: 700 !important;
    line-height: 81px !important;
}
.forgotpwd-box .mb-1 {
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 600;
}
#forgotpassword .uwp-register-link {
    display: none !important;
}
.cl_signup_steps .pwdreset.card-body h2 {
    font-size: 64px !important;
    font-weight: 700 !important;
    line-height: 81px !important;
}
.cl_signup_steps .pwdreset.card-body h5 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}
.cl_signup_steps .pwdreset.card-body p a {
    color: #1645d4;
}
#pwdresetform .input-group label.small {
    text-align: left !important;
    margin-top: 0.25rem !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.875em !important;
}
#pwdresetform .input-group input[type="password"],
#pwdresetform .input-group input[type="text"] {
    border-radius: 0.5rem !important;
    border-right: 0 solid #007bff !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
#pwdresetform .input-group .showPassword {
    display: none;
}
#pwdresetform .input-group .input-group-text {
    border-radius: 0.5rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
#pwdresetform .input-group .far.fa-fw.fa-eye {
    color: #b0b0c3 !important;
    font-size: 1rem !important;
}
#wp-submit {
    width: 100%;
}
#pwdresetform .btn-primary {
    color: #fff !important;
    background-color: #1645d4 !important;
    border-color: #1645d4 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 24px !important;
    padding: 11px 20px !important;
}
#pwdresetform .progress.mt-1 {
    margin-top: 1rem !important;
}
.modal-body .cl_signup_steps,
#signupModal .card-body,
#signupInvsModal .card-body,
#borrowerSignupModal .card-body,
#brokerSignupModal .card-body {
    padding: 0;
}
.modal-body .card.login-card #signupModal .card-body,
#signupModal .card.login-card,
#signupInvsModal .card.login-card,
#borrowerSignupModal .card.login-card,
#brokerSignupModal .card.login-card {
    border: none;
}
#signupModal .modal-body,
#signupInvsModal .modal-body,
#borrowerSignupModal .modal-body,
#brokerSignupModal .modal-body {
    padding: 0;
}
#signupModal .steps_box .card,
#signupInvsModal .steps_box .card,
#borrowerSignupModal .steps_box .card,
#brokerSignupModal .steps_box .card {
    border: none;
}
.borrower_cover_img img {
    width: 85% !important;
    max-height: 192px !important;
}
.borrower-box.bg-dark {
    background-color: #1d2126 !important;
}
.borrower-box.bg-light {
    background-color: #f8f9fa !important;
}
.signed.btn {
    background-color: #1653ea !important;
    border: none;
}
.videomodal .modal-content {
    background-color: #000 !important;
    border: 1px solid #000 !important;
}
.videomodal .modal-content .btn-close {
    position: absolute;
}
.modal-loader-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: #fff9;
    z-index: 19;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}
.loader-img {
    width: 60px;
    height: 60px;
}
#ndaModal p {
    font-size: 16px;
    color: #000613;
    margin-bottom: 12px;
}
#ndaModal ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 14px;
}
.wp-block-heading {
    margin-bottom: 1rem !important;
    font-size: 28px !important;
    line-height: 36px !important;
}
.wp-block-list {
    margin-bottom: 1rem !important;
}
.contact-phone a,
.contact-email a,
.wpcf7-form label {
    color: #000613;
}
.wpcf7-form label {
    font-size: 14px;
}
.wpcf7-not-valid-tip {
    padding-top: 5px;
    font-size: 14px;
}
.inv_checkout {
    padding: 58px 0;
}
.inv_checkout .card-body {
    padding: 48px 62px;
}
.fc_v2 {
    background-color: #f9fafb !important;
    border-color: #e5e7eb !important;
    font-size: 20px;
}
ul.ins_summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}
ul.ins_summary li {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 0;
}
ul.ins_summary li span {
    font-size: 14px;
    color: #4b5563;
}
ul.ins_summary li p {
    font-size: 16px;
    color: #000613;
    font-weight: 500;
}
.inv_checkout_img {
    width: 100%;
    height: 302px;
    object-fit: cover;
    border-radius: 8px;
}
.payment-method {
    font-family: "Segoe UI", sans-serif;
    max-width: 600px;
    margin: 1.5rem auto;
}
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
    background: #fff;
    transition: all 0.3s ease;
}
.payment-option:hover {
    border-color: #0d6efd;
}
.payment-option input[type="radio"] {
    accent-color: #0d6efd;
    width: 18px;
    height: 18px;
    margin-top: 0.3rem;
    cursor: pointer;
}
.option-content {
    flex: 1;
}
.option-title {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0b0f22;
}
.option-desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.2rem;
}
ul.list_item_v2 li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}
.card_v8 {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 0;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.icon-circle.success {
    background-color: #d1fae5;
    color: #10b981;
}
.icon-circle.mail {
    background-color: #e0ebff;
    color: #2563eb;
}
@media only screen and (min-device-width: 280px) and (max-device-width: 767px) {
    .inv_checkout .card-body {
        padding: 30px 24px;
    }
}
.field-half {
    width: 48%;
}
.field-full {
    width: 100%;
}
.uwp-registration-form.uwp_form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 35px;
    text-align: start;
}
.uwp-registration-form.uwp_form .sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 10px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border-width: 0;
}
.uwp-register-class .card-body {
    padding: 0 !important;
}
.uwp-registration-form.uwp_form .btn.btn-primary {
    color: #fff !important;
    background-color: #1645d4;
    border-color: #1645d4;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
}
.uwp-register-class .uwp-footer-links,
.uwp-register-class .card-title {
    display: none;
}
.uwp-register-class {
    margin-top: 1.5rem;
}
.uwp-register-class label {
    font-size: 0.875em !important;
}
.uwp-registration-form.uwp_form .btn.btn-primary:hover {
    box-shadow: none !important;
    color: #fff !important;
    background-color: #1645d4;
    border-color: #1645d4;
}
input#invest-input {
    padding: 5px !important;
    margin-bottom: 0 !important;
    border-radius: 2px;
    border: 0;
}
#invest-form input.btn.btn-light {
    padding: 6px 28px;
    border-radius: 2px !important;
    border: 0;
    margin-top: -5px;
    margin-left: 5px;
}
.form-check-input:checked {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}
.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}
.form_step_btn a {
    color: #1645d4 !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.uwp-registration-form .uwp-password-wrap .input-group-text {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}
.uwp-registration-form .showPassword.input-password-hide {
    display: none;
}
.uwp-registration-form .uwp-password-wrap .progress {
    margin-top: 1rem !important;
}
#emailInput {
    transition: border 0.3s;
}
#emailInput.error {
    border: 1px solid red !important;
}
.form_step_btn_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.form_step_btn_box.step1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: unset;
}
.input-invalid {
    border: 1px solid red !important;
    box-shadow: 0 0 5px 2px #ff000080 !important;
}
#drop-area.input-invalid {
    border-color: red;
    box-shadow: 0 0 6px red !important;
}
.upload-progress {
    margin-top: 10px;
}
#drop-area .progress {
    background-color: #eee;
    border-radius: 20px;
    height: 25px;
}
#drop-area .progress-bar {
    background-color: #007bff;
    height: 100%;
    border-radius: 20px;
    transition: width 0.3s ease;
}
#selectedValue.input-invalid {
    border: 2px solid red !important;
    box-shadow: 0 0 6px red !important;
}
.modal-content .btn-close {
    top: 10px !important;
    right: 20px !important;
    z-index: 10 !important;
    color: #2a5cd4;
}
.featured_v4.faq_block,
.lightbluebg {
    background-color: #f2f3f7;
}
.faq_block .accordion .accordion-item .accordion-button {
    font-size: 18px;
    background: #fff;
    color: #000613;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 18px;
    position: relative;
}
.faq_block #faq_accordion .accordion-button::after {
    content: "\f078";
    color: #6b7280;
}
.faq_block #faq_accordion .accordion-button:not(.collapsed)::after {
    content: "\f077";
}
.dropdown-toggle::after {
    border-top: 0.3em solid;
    border-right: 0.3em solid #fff0;
    border-bottom: 0;
    border-left: 0.3em solid #fff0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    margin-left: 0.5em;
    vertical-align: middle;
    font-size: 0.7rem;
    border: 0;
}
.dropdown img#profilePic {
    width: 25px;
    height: auto;
    margin-left: 5px;
}
.single_pg .content strong {
    padding: 10px 0;
    display: block;
}
.featured_v4.single_pg {
    padding-top: 0;
}
#faq_accordion .accordion-item .accordion-button {
    font-size: 20px;
    color: #000613;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 18px;
    position: relative;
    background: #f2f3f7;
}
#faq_accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
}
.faq-related #faq_accordion .accordion-body ul {
    font-size: 18px;
    color: #475467;
}
.profile_dropdown button.btn:active,
.profile_dropdown button.btn:focus {
    border: 0;
    box-shadow: none;
    outline: 0;
}
.profile_dropdown ul.dropdown-menu,
#beneficiary-wrapper {
    width: 100%;
}
img.myprofile {
    width: 38px;
    height: auto;
    border-radius: 9999px;
    border: 4px solid #1645d4;
}
.label-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.label-box .fas.fa-question-circle {
    font-size: 25px;
}
.blurred {
    filter: blur(6px);
    pointer-events: none;
}
.inner-overlay {
    display: none;
    z-index: 1055;
}
.inner-backdrop {
    position: absolute;
    inset: 0;
    background: #00000059;
    backdrop-filter: blur(2px);
}
.inner-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem #00000040;
    width: 90%;
    z-index: 1060;
}
#preview-enlarged .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 20px;
    background-color: #c8c8c8e6;
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px #0003;
}
#preview-enlarged .nav-arrow:hover {
    background-color: #a0a0a0f2;
}
#preview-enlarged .nav-arrow.left {
    left: 10px;
}
#preview-enlarged .nav-arrow.right {
    right: 10px;
}
#thumbnail-container .thumbnail {
    border: none !important;
}
#thumbnail-container .thumbnail.focused {
    border: 2px solid #fbb20f !important;
}
.invest_card .circle_icon .bg-blue {
    background: #1d4ed830;
    border: 4px solid #1645d4;
    width: 64px;
    height: 64px;
}
.investortestimonialslider .swiper-slide {
    width: 60%;
}
.investortestimonialslider .testimonial-card {
    background: #fff0;
    padding: 0;
    min-height: 0;
}
.testimonialslider .testimonial-card {
    background-color: #fff;
    padding: 30px;
    min-height: 280px;
}
.swiper-pagination.invetor_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.testimonial_card .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}
.swiper-pagination.invetor_pagination .swiper-pagination-bullet,
.testimonial_card .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}
.swiper-button-prev.investor_navpagprev {
    position: absolute;
    bottom: 0;
    left: 45%;
    top: auto;
    transform: translateX(-45%);
    z-index: 12;
}
.swiper-button-next.investor_navpagnext {
    position: absolute;
    bottom: 0;
    right: 44%;
    top: auto;
    transform: translateX(-44%);
    z-index: 12;
}
.swiper-button-next.investor_navpagnext:after,
.swiper-button-prev.investor_navpagprev:after {
    font-size: 16px;
    background-color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.cardopten {
    background-color: #ffffff20;
    border-radius: 8px;
    padding: 28px;
    margin-top: 50px;
}
.cardopten p {
    color: #fff;
    font-style: italic;
}
.page-template-template-home .testimonials_video {
    margin-bottom: 68px;
}
.contact-box {
    position: relative;
}
.contact-box.cf7-blur-active .wpcf7 {
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}
.contact-box.cf7-blur-active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px;
    border: 4px solid #999;
    border-top-color: #5b00f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.badge-custom {
    font-size: 16px;
    background-color: #fff;
    color: #000613;
    padding: 4px 15px;
    border-radius: 5px;
}
.featured_offerings.fund_deals {
    z-index: 12;
}
#cf7-contact-message-box {
    margin-bottom: 20px;
}
.page-template-template-contact .cf7-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 12px 20px;
    border-left: 5px solid #3c763d;
    border-radius: 5px;
}
.page-template-template-contact .cf7-error {
    background: #f2dede;
    color: #a94442;
    padding: 12px 20px;
    border-left: 5px solid #a94442;
    border-radius: 5px;
}
.page-template-template-contact .wpcf7-response-output,
.page-template-template-contact .wpcf7-spinner {
    display: none;
}
.offeringtile_title.title_v3 {
    height: 100px;
}
.offer_meta .offering-block-header li {
    font-size: 14px;
}
.btn-primary {
    transition: transform 0.2s ease-in-out;
}
.offer_price .btn-primary:hover {
    transform: scale(1.05);
}
.check-list {
    gap: 20px 40px;
}
.featured_offerings.testimonial_card {
    margin-bottom: 54px;
}
.fund_deals .shape-left-center {
    width: 31%;
    z-index: -1;
}
.fund_deals img.shape-right-bottom {
    width: 29%;
}
.title_v3 {
    height: 100px;
}
.offer_meta li {
    font-size: 14px;
}
.banner.banner_borrowers:before {
    background: linear-gradient(180deg, #021036de, #021036 85.096%);
}
.loan_type_btn {
    gap: 8px;
    flex-flow: wrap;
}
.loan_type_btn .btn {
    font-size: 12px;
}
.offerings-holder .js-ajax-tabs-responce .pagging.ajax-pagging .pagging__list .pagging__list--prev,
.offerings-holder .js-ajax-tabs-responce .pagging.ajax-pagging .pagging__list .pagging__list--next {
    display: block !important;
}
.page-template-template-dashboard .brokerbtn,
.sticky-div {
    padding: 0 12px;
}
.card.card_v2.card_horizontal.card_horizontal_v2 .loan_type_btn {
    flex-flow: column;
    align-items: start;
}
.navbar-brand img.custom-logo {
    width: 100px;
    height: auto;
}
.menu_end_btn .profile_dropdown .dropdown-item {
    padding: 8px 12px;
}
.profile_dropdown button.btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.dash_v2 .navigation {
    position: absolute;
    width: 300px;
    height: 100%;
    background: #001c46;
    border-left: 10px solid #001c46;
    transition: 0.5s;
    overflow: hidden;
}
.dash_v2 .navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 0;
}
.dash_v2 .navigation ul li {
    position: relative;
    width: 100%;
    list-style: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.choose-section ul,
.intro-section .logo-block,
ol:not([class]),
ul:not([class]) {
    margin-bottom: 15px;
}
.dash_v2 .navigation ul li.active_menu {
    background-color: #fff !important;
}
.dash_v2 .navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: #fff;
}
.dash_v2 li.active_menu a {
    color: #0a2558 !important;
}
.dash_v2 .navigation ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 75px;
    text-align: center;
}
.dash_v2 .navigation ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}
.dash_v2 .navigation ul li a .icon img {
    margin-top: 10px;
}
.dash_v2 .main {
    position: relative;
    width: calc(100% - 300px);
    left: 300px;
    background: #fff;
    transition: 0.5s;
    top: 0;
    overflow-y: scroll;
    height: 84vh;
}
.dash_v2 .topbar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.dash_v2 .main h2 {
    line-height: 60px;
}
.dash_v2 .toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    cursor: pointer;
}
.dash_v2 .page_title,
.dash_v2 .page_title p {
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 600;
    padding-top: 12px;
    color: #001c46;
}
.cardBox {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
.cardBox,
.dash_v2 .details,
.dash_v2 .details .recentOrders {
    padding: 20px;
    position: relative;
}
.cardBox .card {
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    flex-direction: inherit;
    border: none;
}
.cardBox .card .carddiv,
.career .blockquote .image-holder {
    width: 130px;
}
.cardBox .card .numbers {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    color: #001c46;
}
.cardBox .card .cardName {
    color: #999;
    font-size: 16px;
    margin-top: 5px;
}
.cardBox .card .iconBx {
    font-size: 3.5rem;
    color: #999;
}
.page-template-template-dashboard .alert.alert-success {
    --bs-alert-color: #44c553;
    --bs-alert-bg: #ecf9ee;
    --bs-alert-border-color: #beebc3;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    width: 97%;
    margin: 0 auto;
    display: none;
}
.page-template-template-dashboard .tab-container {
    position: relative;
    padding: 20px;
}
.tab-container .tab-menu ul {
    margin: 0;
    padding: 0;
}
.tab-container .tab-menu ul li {
    list-style-type: none;
    display: inline-block;
}
.tab-container .tab-menu ul li a.active-a {
    background-color: #001c46;
    color: #fff;
}
.tab-container .tab-menu ul li a {
    text-decoration: none;
    color: #001c46;
    background-color: #001c4614;
    padding: 7px 25px;
    border-radius: 4px;
}
#map-layer {
    width: 100%;
    margin: 20px 0;
    min-height: 400px;
    margin: 20px 0;
    min-height: 400px;
}
#map-layer,
.france .contact-us .main-section .text,
.page-id-2394 #createuser .acf-field input[type="email"],
.page-id-2394 #createuser .acf-field input[type="number"],
.page-id-2394 #createuser .acf-field input[type="password"],
.page-id-2394 #createuser .acf-field input[type="search"],
.page-id-2394 #createuser .acf-field input[type="text"],
.page-id-2394 #createuser .acf-field input[type="url"],
.page-id-2394 #createuser .acf-field select,
.page-id-2394 #your-profile .acf-field input[type="email"],
.page-id-2394 #your-profile .acf-field input[type="number"],
.page-id-2394 #your-profile .acf-field input[type="password"],
.page-id-2394 #your-profile .acf-field input[type="search"],
.page-id-2394 #your-profile .acf-field input[type="text"],
.page-id-2394 #your-profile .acf-field input[type="url"],
.page-id-2394 #your-profile .acf-field select,
.page-id-2576 #createuser .acf-field input[type="email"],
.page-id-2576 #createuser .acf-field input[type="number"],
.page-id-2576 #createuser .acf-field input[type="password"],
.page-id-2576 #createuser .acf-field input[type="search"],
.page-id-2576 #createuser .acf-field input[type="text"],
.page-id-2576 #createuser .acf-field input[type="url"],
.page-id-2576 #createuser .acf-field select,
.page-id-2576 #your-profile .acf-field input[type="email"],
.page-id-2576 #your-profile .acf-field input[type="number"],
.page-id-2576 #your-profile .acf-field input[type="password"],
.page-id-2576 #your-profile .acf-field input[type="search"],
.page-id-2576 #your-profile .acf-field input[type="text"],
.page-id-2576 #your-profile .acf-field input[type="url"],
.page-id-2576 #your-profile .acf-field select {
    max-width: 100%;
}
.cardBox .card,
.dash_v2 .details .recentOrders {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 7px 25px #00000014;
}
.dash_v2 .cardHeader h2,
.dash_v2 .main h2 {
    color: #001c46;
    font-size: 26px;
    font-weight: 600;
}
#gridview,
.banner-info-img,
.custom-collapse,
.dash_v2 .main h2,
div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    text-align: center;
}
.tab-container .tab {
    display: none;
    padding-top: 26px;
}
.tab-container .tab-active {
    display: block !important;
}
.fancybox-button,
.jcf-list,
.jcf-list .jcf-list-content,
.jcf-select,
.offering .chart span,
img,
textarea {
    vertical-align: top;
}
.blockquote-section .text-block,
.login-form {
    max-width: 800px;
    margin: 0 auto;
}
.broker-form .wpforms-submit,
.broker-form button.wpforms-page-button {
    background-color: #001c46 !important;
    color: #fff !important;
    font-size: 18px !important;
    font-family: Oxygen, Arial, Helvetica, sans-serif;
}
.dash_v2 .details table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.dash_v2 .details .recentOrders table tr:last-child,
.invoice-box table tr.item.last td {
    border-bottom: none;
}
.dash_v2 .details .recentOrders table tr {
    font-weight: 500;
    color: #222;
    border-bottom: 1px solid #0000001a;
    text-align: center;
}
.dash_v2 .details .recentOrders table tr td {
    width: 108px;
    font-size: 14px;
    padding: 10px;
}
.dash_v2 .details .recentOrders table tr td a {
    background-color: #fff0;
    color: #001c46;
}
.actionSelect a,
.actionSelectUpload a {
    font-size: 12px;
    color: #538cca;
    width: 100%;
    float: left;
}
.dash_v2 .cardHeader .btn,
.dash_v2 .details .recentOrders table tbody tr:hover {
    background: #0a2558;
    color: #fff;
}
.page-template-template-dashboard .wpforms-frontend-entries tr:hover a {
    color: #fff !important;
    text-decoration: none;
}
.pic-holder .upload-file-block,
.pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #5a5c69b3;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.close:hover,
.pic-holder .upload-file-block,
.tooltip:hover {
    cursor: pointer;
}
.fancybox-fx-fade.fancybox-slide--current,
.fancybox-thumbs > ul > li.fancybox-thumbs-active:before,
.pic-holder.uploadInProgress .upload-loader,
.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus ~ .upload-file-block,
.video-active .bg-video {
    opacity: 1;
}
.profile-pic-wrapper {
    width: 100%;
    position: relative;
    margin-top: 35px;
}
.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 150px;
    /* height: 150px; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex: none;
    padding: 0;
}
.page-template-template-user-profile .login-form form.uwp-account-form.uwp_form.mt-3 {
    width: 62%;
    margin: 0 auto;
}
.page-template-template-user-profile .login-form .field-half {
    width: 100%;
}
.page-template-template-user-profile .login-form input {
    opacity: 1;
    color: #001c46;
}
/* .page-template-template-user-profile .login-form input[type="email"],
.page-template-template-user-profile .login-form input[type="password"],
.page-template-template-user-profile .login-form input[type="text"],
.page-template-template-account #resetpassform input[type="email"],
.page-template-template-account #resetpassform input[type="password"],
.page-template-template-account #resetpassform input[type="text"],
.page-template-template-account .login-form-wrap .field-locked input[type="text"],
#your-profile .acf-field input[type="number"],
#your-profile .acf-field textarea {
    color: #001c46;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    box-sizing: border-box;
    display: block;
    background: #f6f7f7;
    border: 1px solid #f6f7f7;
    padding: 9px 10px;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    width: 100%;
    margin: 0;
    outline: 0;
    box-shadow: none;
    transition: border 0.3s;
} */
#resetpassform .resetpass-submit .button.button-primary,
#your-profile .acf-input .acf-actions .acf-repeater-add-row,
.form-submit #updateuser {
    background: #001c46;
    color: #fff;
    border: 1px solid #001c46;
    padding: 10px 18px;
    line-height: 1.4;
    min-width: 342px;
    transition: 0.3s;
    font-size: 20px;
}
#your-profile .acf-input .acf-actions .acf-repeater-add-row {
    display: block;
    width: 100%;
    max-width: 100px;
    margin: 0 auto;
    text-align: center;
}
#resetpassform .resetpass-submit {
    margin-top: 20px;
}
.acf-repeater > .acf-actions .acf-button {
    float: right;
    pointer-events: auto !important;
}
#__bs_notify__,
.desktop-visible,
.disclaimer-content.show:after,
.fancybox-button--pause svg path:first-child,
.fancybox-button--play svg path:nth-child(2),
.fancybox-infobar,
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small,
.fancybox-navigation,
.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc,
.login-form-wrap h2,
.offerings-holder .jcf-select .jcf-select-opener::after,
.page-template-template-account .footer-bottom,
.page-template-template-account footer#footer,
.page-template-template-broker-deal .footer-bottom,
.page-template-template-broker-deal footer#footer,
.page-template-template-brokers span.showPassword.input-password-hide,
.page-template-template-dashboard .footer-bottom,
.page-template-template-dashboard footer#footer,
.page-template-template-linked-accounts .footer-bottom,
.page-template-template-linked-accounts footer#footer,
.page-template-template-user-profile .footer-bottom,
.page-template-template-user-profile footer#footer,
.pagging__list .pagging__list--next,
.pagging__list .pagging__list--prev,
.people .choose-section .opener,
.pic-holder.uploadInProgress .upload-file-block,
.slick-arrow.slick-hidden,
.slick-slide.slick-loading img,
.toggle-collapse,
.uwp-profile-extra,
.uwp-profile-extra.uwp_page,
body.nav-active .nav-opener span,
h3.card-title.text-center.mb-4,
select .hideme,
ul.errors-box:empty {
    display: none;
}
#your-profile h3 ,
.dash_v2 .login-form h3{
    display: none;
}
.main-section {
    font-size: 24px;
    padding: 112px 0;
    text-align: center;
    background-position: 50% 50%;
    background-size: cover;
}
article {
    display: block;
    background-color: #fff;
}
article .content {
    max-width: 1234px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}
.outer.LinkOuter {
    display: flex;
    border: 1px solid #cfcfcf;
    padding: 9px 18px;
}
.blue-btn {
    background: #001c46;
    color: #fff;
    border: 1px solid #001c46;
}
.btn.viewiframe,
.brokerbtn .btn {
    display: inline-block;
    text-align: center;
    padding: 10px 18px;
    line-height: 1.4;
    min-width: 342px;
    transition: 0.3s;
    font-size: 20px;
    border-radius: 0;
}
.brokerbtn .btn:hover {
    background: #b5d560;
    border: 1px solid #b5d560;
    color: #fff;
}
.acc-table td,
.acc-table th {
    padding: 10px;
    text-align: left;
}
.acc-table tr,
.invoice-box table tr.item td {
    border-bottom: 1px solid #eee;
}
.acc-table tr:last-child {
    border-bottom: none !important;
}
.acc-table td img {
    vertical-align: middle;
    margin-right: 6px;
    float: left;
}
.acc-table {
    width: 100%;
    font-size: 14px;
    color: #787878;
    margin: 10px auto;
    text-align: center;
}
.page-template-template-dashboard .brokerbtn {
    text-align: center;
}
.cardBox.linechartcard {
    grid-template-columns: repeat(2, 1fr);
}
.doc-input,
.doc-label {
    width: 50% !important;
    float: left !important;
    clear: none !important;
}
.doc-input label {
    width: 97% !important;
}
.doc-last {
    float: left !important;
    clear: both !important;
}
.file.uploaded {
    border-color: green !important;
}
.file.uploaded div {
    color: green !important;
}
.doc-label .wpforms-field-label {
    display: none !important;
}
.wpforms-field-container {
    display: flex !important;
    width: 100% !important;
}
.wpforms-page.wpforms-page-1,
.wpforms-page.wpforms-page-2,
.wpforms-page.wpforms-page-3,
.wpforms-page.wpforms-page-4 {
    width: 100% !important;
}
.doc-input input[type="file"] {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    outline: 0 !important;
}
.doc-input label {
    width: 97% !important;
}
label.file {
    position: relative !important;
    display: block !important;
    font-size: 80% !important;
    text-align: center !important;
    text-transform: uppercase !important;
    border: 2px dashed #ccc !important;
    padding: 1.4rem !important;
    border-radius: 6px !important;
}
.wpforms-field-checkbox input[type="checkbox"] {
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.wpforms-submit.broker-submit {
    background-color: #1645d4 !important;
    border-color: #1645d4;
    border-radius: 6px !important;
    font-weight: 500;
    font-size: 16px !important;
    width: 140px !important;
    position: absolute !important;
    bottom: 20px !important;
    left: auto;
    right: 8rem;
}
.dash_v2 .login-form #wordfence-ls th{
        width: 210px;
    padding: 20px 10px 20px 0;
}
.dash_v2 .login-form #wordfence-ls td{
     padding: 15px 10px;
}
.dash_v2 .login-form .uwp_page .container,
.dash_v2 .login-form .uwp_page .container .row{
    height: auto !important;
}
@media (max-width: 991px) {
    .dash_v2 .navigation {
        left: -300px;
    }
    .dash_v2 .navigation.active {
        width: 300px;
        left: 0;
    }
    .dash_v2 .main {
        width: 100%;
        left: 0;
    }
    .dash_v2 .main.active {
        left: 300px;
    }
    .cardBox,
    .dash_v2 .cardBox {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .cardBox,
    .dash_v2 .cardBox {
        grid-template-columns: repeat(1, 1fr);
    }
    .cardHeader h2,
    .dash_v2 .cardHeader h2 {
        font-size: 20px;
    }
    .dash_v2 .user {
        min-width: 40px;
    }
    .dash_v2 .navigation {
        width: 100%;
        left: -100%;
        z-index: 1000;
    }
    .dash_v2 .navigation.active {
        width: 100%;
        left: 0;
    }
    .dash_v2 .toggle {
        z-index: 10001;
    }
    .dash_v2 .main.active .toggle {
        color: #fff;
        position: fixed;
        right: 0;
        left: initial;
    }
}
.dash_v2 .login-form .form-table:nth-last-of-type(2),
.dash_v2 .login-form .form-table:nth-last-of-type(3),
.dash_v2 .login-form .form-table:nth-last-of-type(4) {
    display: none;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .dash_v2 .main.active {
        left: 80px;
    }
    .tab-container .tab-menu ul li {
        margin-bottom: 30px;
    }
    .tab-container .tab .card img {
        width: 100%;
    }
    form.uwp-account-form.uwp_form.mt-3 {
        width: 100% !important;
    }
    div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .wpforms-page-indicator-page {
        margin: 0 10px 12px 0 !important;
    }
    .login-form-wrap,
    .page-template-template-dashboard .brokerbtn,
    .sticky-div {
        padding: 0 12px;
    }
}

/******************************** New CSS Started  *************************************/


/* Dashboard CSS Start */

.dashboard {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
}

.dashboard-app {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-top: 60px;
    background-color: #fff;
}

.dashboard-content {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 25px;
}

.dashboard-nav {
    min-width: 238px;
    position: fixed;
    left: 0;
    top: 85px;
    bottom: 0;
    overflow: auto;
    background-color: #373193;
}

.dashboard-compact .dashboard-nav {
    display: none;
}

.dashboard-nav header {
    min-height: 84px;
    padding: 8px 27px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.dashboard-nav header .menu-toggle {
    display: none;
    margin-right: auto;
}

a.dashboard-nav-item.active {
    color: #021036;
    background: #F2F3F7;
}

.dashboard-nav a:hover {
    text-decoration: none;
}

.dashboard-nav {
    background-color: #021035;
}

.dashboard-nav a {
    color: #fff;
}


/* .brand-logo i {
            color: #d2d1d1;
            font-size: 27px;
            margin-right: 10px;
        } */

.dashboard-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-item {
    min-height: 56px;
    padding: 8px 20px 8px 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.02em;
    transition: ease-out 0.5s;
}

.dashboard-nav-item i {
    width: 36px;
    font-size: 19px;
    margin-left: -40px;
}

.dashboard-nav-item:hover {
    background: rgba(255, 255, 255, 0.04);
}


/* .dashboard .active {
  background: #F2F3F7;
} */

.dashboard-nav-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown.show {
    background: rgba(255, 255, 255, 0.04);
}

.dashboard-nav-dropdown.show>.dashboard-nav-dropdown-toggle {
    font-weight: bold;
}

.dashboard-nav-dropdown.show>.dashboard-nav-dropdown-toggle:after {
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
}

.dashboard-nav-dropdown.show>.dashboard-nav-dropdown-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.dashboard-nav-dropdown-toggle:after {
    content: "";
    margin-left: auto;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(81, 81, 81, 0.8);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.dashboard-nav .dashboard-nav-dropdown-toggle:after {
    border-top-color: rgba(255, 255, 255, 0.72);
}

.dashboard-nav-dropdown-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown-item {
    min-height: 40px;
    padding: 8px 20px 8px 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: ease-out 0.5s;
}

.dashboard-nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dashboard .menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}

.dashboard .menu-toggle:hover,
.dashboard .menu-toggle:active,
.dashboard .menu-toggle:focus {
    text-decoration: none;
    color: #fff;
}

.dashboard .menu-toggle i {
    font-size: 20px;
}

.dashboard-toolbar {
    min-height: 40px;
    /* background-color: #dfdfdf; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 27px;
    position: absolute;
    top: 85px;
    right: 0;
    left: 0;
    z-index: 11;
}

.nav-item-divider {
    height: 1px;
    margin: 1rem 0;
    overflow: hidden;
    background-color: rgba(236, 238, 239, 0.3);
}

@media (min-width: 992px) {
    .dashboard-app {
        margin-left: 238px;
    }
    .dashboard-compact .dashboard-app {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 15px 0px;
    }
}

@media (max-width: 992px) {
    .dashboard-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1070;
    }
    .dashboard-nav.mobile-show {
        display: block;
    }
}

@media (max-width: 992px) {
    .dashboard-nav header .menu-toggle {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 992px) {
    .dashboard-toolbar {
        left: 238px;
    }
    .dashboard-compact .dashboard-toolbar {
        left: 0;
    }
}


/* Dashboard CSS End */

.offeringcard_img img {
    border-radius: 8px;
    height: 192px;
    width: 100%;
}


/* .offeringcard_img {
    margin-top: 34px;
} */

.offeringcard_title h5 {
    color: rgba(17, 24, 39, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.offeringcard_tblock {
    padding: 16px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.offeringcard_tblock .ft-cat {
    position: relative;
    right: auto;
    top: auto;
}

.btn-success {
    color: #fff !important;
    background-color: #16A34A;
    border-color: #16A34A;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
}

.btn-success:hover {
    color: #fff !important;
    background-color: #16A34A;
    border-color: #16A34A;
}

.btn-v3 {
    color: #374151 !important;
    background-color: #f2f3f7;
    border-color: #f2f3f7;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 12px;
}

.btn-v3:hover {
    color: #374151 !important;
    background-color: #f2f3f7;
    border-color: #f2f3f7;
}

.request_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offeringcard_tcontent ul li span.dot.green {
    background-color: #22C55E;
}

.offeringcard_tcontent ul li span.dot.blue {
    background-color: #1645D4;
}

.offeringcard_tcontent ul li span.dot {
    background-color: #D1D5DB;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 9999px;
    margin-right: 8px;
}

.offeringcard_tcontent ul li {
    margin-bottom: 6px;
    color: #9CA3AF;
}

.offeringcard_tcontent .active {
    color: #111827;
    background: transparent;
}

.add_loan_request {
    background-color: #1645D4;
    width: 64px;
    height: 64px;
    color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.new_loan_card {
    background: linear-gradient(90.00deg, rgba(239, 246, 255, 1), rgba(219, 234, 254, 1) 100%);
    border-image: linear-gradient(90deg, rgba(239, 246, 255, 1), rgba(219, 234, 254, 1)) 1;
    overflow: hidden;
    border-radius: 12px;
    border: 0px;
}

.card.offeringcardv4 {
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 8px;
}

.nav-tabs.tabv2 .nav-link {
    color: #6D7178;
}

.nav.nav-tabs.tabv2 {
    border-bottom: 1px solid #374151;
}

.nav-tabs.tabv2 .nav-link.active {
    background-color: #252C3F;
    border: 1px solid #000613;
    color: #fff;
}

.dashboard-content.myaccount_loanrequest {
    background-image: url(assets/img/loans-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.v-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.dashboard_form input::-webkit-input-placeholder,
.dashboard_form select::-webkit-input-placeholder,
.dashboard_form textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #ADAEBC !important;
    text-transform: capitalize;
}

.dashboard_form input:-ms-input-placeholder,
.dashboard_form select:-ms-input-placeholder,
.dashboard_form textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #ADAEBC !important;
    text-transform: capitalize;
}

.dashboard_form input::-ms-input-placeholder,
.dashboard_form select::-ms-input-placeholder,
.dashboard_form textarea::-ms-input-placeholder {
    font-size: 14px;
    color: #ADAEBC !important;
    text-transform: capitalize;
}

.dashboard_form input::placeholder,
.dashboard_form select::placeholder,
.dashboard_form textarea::placeholder {
    font-size: 14px;
    color: #ADAEBC !important;
    text-transform: capitalize;
}

.input-groupv2 {
    position: relative;
}

.input-groupv2 i {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #CED4DA;
}

.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 78px;
}

.stepper .step {
    display: flex;
    align-items: center;
    position: relative;
}

.stepper .circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: #F2F3F7;
    color: #ADAEBC;
    z-index: 2;
}

.stepper .label {
    margin-left: 8px;
    font-size: 14px;
    color: #ADAEBC;
    font-weight: 600;
}


/* Connector line */

.stepper .step::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    /* add gap after circle */
    width: 60px;
    /* increase line length */
    height: 3px;
    background: #e5e7eb;
    transform: translateY(-50%);
    z-index: 1;
}

.stepper .step:last-child::after {
    display: none;
    /* no line after last step */
}


/* Completed */

.stepper .step.completed .circle {
    background: #1d4ed8;
    color: #fff;
}

.stepper .step.completed .label {
    color: #ADAEBC;
    font-weight: 600;
}

.stepper .step.completed::after {
    background: #1d4ed8;
}


/* Active */


/* .stepper .step.active .circle {
  background: #1d4ed8;
  color: #fff;
} */

.stepper .step.active .label {
    color: #000;
    font-weight: 700;
}

.dropzone {
    border: 2px dashed #cbd5e1;
    /* gray border */
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #64748b;
    /* gray text */
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.dropzone.dragover {
    border-color: #2563eb;
    /* blue */
    background-color: #f0f9ff;
}


/* Wrapper */

.budget-wrapper {
    margin: 16px 0 0;
}


/* Header alignment */

.budget-header {
    margin-bottom: 0.5rem;
}

.budget-left {
    text-align: left;
    color: #6c757d;
    font-size: 0.9rem;
}

.budget-right {
    text-align: right;
    color: #6c757d;
    font-size: 0.9rem;
}


/* Progress Bar */

.custom-progress {
    height: 12px;
    border-radius: 20px;
    background-color: #E5E7EB;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-used {
    width: 65%;
    background-color: #2563EB;
    /* Bootstrap primary */
    border-radius: 20px;
}


/* Stats Row */

.budget-stats {
    text-align: center;
}

.budget-stats .stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 18px;
}

.budget-stats .stat-label {
    font-size: 14px;
    color: #4B5563;
    margin: 0;
}


/* Colors for values */

.total-budget {
    color: #000000;
}

.amount-used {
    color: #16A34A;
}


/* green */

.remaining {
    color: #1645D4;
}


/* blue */

.draw-requests {
    color: #111827;
}

.card_v3 {
    background-color: #fff;
    border: 1px solid rgba(55, 65, 81, 1);
    border-radius: 8px;
    padding: 22px;
}

table.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    /* gap between rows */
}


/* table thead th {
    background-color: #000;
  } */

table.custom-table thead th {
    text-align: left;
    padding: 12px;
    background-color: #F2F3F7 !important;
    font-weight: bold;
    border: 0 !important;
}

table.custom-table tbody tr {
    background: #fff;
    border: 1px solid #e5e7eb;
    /* row border */
    border-radius: 6px;
}

table.custom-table tbody td {
    padding: 20px 12px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

table.custom-table tbody tr td:first-child {
    border-left: 1px solid #e5e7eb;
    border-radius: 6px 0 0 6px;
}

table.custom-table tbody tr td:last-child {
    border-right: 1px solid #e5e7eb;
    border-radius: 0 6px 6px 0;
}

table.custom-table tfoot td {
    padding: 12px;
    font-weight: bold;
    background-color: #F2F3F7 !important;
    border: 0 !important;
}

.alert.alert-success {
    background-color: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
}

.alert.alert-light {
    background-color: #F2F3F7;
    border: 1px solid #F2F3F7;
    color: #374151;
}

.fs-sm {
    font-size: 14px;
}

.fs-xs {
    font-size: 12px;
}

.property_info {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.property_info img {
    width: 367.34px;
    height: 192px;
    object-fit: cover;
    border-radius: 8px;
}

.badge.success {
    background-color: #DCFCE7;
    font-size: 12px;
    color: #166534;
}

.badge.danger {
    background-color: #FEE2E2;
    font-size: 12px;
    color: #991B1B;
}

.badge.primary {
    background-color: #EFF6FF;
    font-size: 12px;
    color: #1645d4;
}

.badge.warning {
    background-color: #FEFCE8;
    font-size: 12px;
    color: #FEF08A;
}

table.table_v1 thead tr th {
    background-color: #F2F3F7;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 8px;
}

table.table_v1 tbody tr td {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 8px;
}

.payment_icon {
    background-color: #021036;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    margin: 0 auto;
}

.payment_icon i {
    color: #fff;
    font-size: 28px;
}

.account-type-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, background-color .2s;
    user-select: none;
    width: 100%;
}

.option-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 1px 0 rgba(16, 24, 40, .04);
}


/* custom radio */

.option-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.option-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #0d1b4c;
    /* navy dot */
    opacity: 0;
    transition: opacity .15s;
}


/* checked state */

.account-type-group input[type="radio"]:checked+label {
    border-color: #dbeafe;
    background: #f8fbff;
    box-shadow: 0 0 0 2px #e0ecff inset;
}

.account-type-group input[type="radio"]:checked+label .option-radio {
    border-color: #2563eb;
}

.account-type-group input[type="radio"]:checked+label .option-radio::after {
    opacity: 1;
}


/* keyboard focus */

.account-type-group input[type="radio"]:focus+label {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .25);
    outline: 0;
}

.alert.alert-primary p {
    color: #084298;
}

.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 40px 0 0px;
}

.stepper-wrapper .step {
    text-align: center;
    position: relative;
    flex: 1;
}

.stepper-wrapper .step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 17px;
    /* circle center align */
    left: -50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.stepper-wrapper .step.completed:not(:first-child)::before {
    background: #2563eb;
    /* active/completed blue line */
}


/* ✅ Active step */

.step.active .step-circle {
    background: #2563eb;
    /* blue circle */
}

.step.active:not(:first-child)::before {
    background: #2563eb;
    /* blue line up to active */
}

.stepper-wrapper .step-circle {
    width: 34px;
    height: 34px;
    background: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* 👈 circle वर दिसेल */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.stepper-wrapper .step.completed .step-circle,
.stepper-wrapper .step.active .step-circle {
    background: #2563eb;
}

.stepper-wrapper .step-title {
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.3;
}

.stepper-wrapper .step.completed .step-title {
    color: #111827;
    font-weight: 500;
}

.stepper-wrapper .step.active .step-title {
    color: #2563eb;
    font-weight: 600;
}

.stepper-wrapper .step-circle i.inactive {
    color: #9CA3AF;
}

.tfa_activate {
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 6px;
    background: rgba(249, 250, 251, 1);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tfa_activate p.status {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 400;
}

.active_btn a.btn {
    font-size: 14px;
    font-weight: 400;
    padding: 6px 20px;
}

.active_btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dotg.red {
    background-color: #EF4444;
}

.dotg.green {
    background-color: #22C55E;
}

.dotg.blue {
    background-color: #1645D4;
}

.dotg {
    background-color: #D1D5DB;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 9999px;
    margin-right: 8px;
}

.profile-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.profile-pic {
    position: relative;
    width: 120px;
    height: 120px;
    border: 3px solid #0056d2;
    /* blue border */
    border-radius: 50%;
    overflow: hidden;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #0056d2;
    color: #fff;
    border-radius: 50%;
    padding: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.card-danger {
    border: 1px solid rgba(254, 202, 202, 1);
    border-radius: 8px;
    background: rgba(254, 242, 242, 1);
    padding: 20px;
    text-align: start;
}

.card-danger h6 {
    color: #991B1B;
    font-size: 16px;
}

.card-danger ul {
    list-style: disc;
    padding-left: 18px;
    color: #991B1B;
}

.card-danger ul li {
    font-size: 14px;
}

@media only screen and (min-device-width: 280px) and (max-device-width: 767px) {
    .request_btn {
        flex-direction: column;
    }
    .offeringcard_title h5,
    .offeringcard_tcontent p {
        font-size: 16px;
    }
    .offeringcard_title p {
        font-size: 14px;
    }
    .tfa_activate {
        flex-direction: column;
        gap: 16px;
    }
    .stepper {
        justify-content: center;
        align-items: center;
        gap: 26px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stepper .step::after {
        display: none;
    }
    .budget-stats {
        text-align: center;
        gap: 26px;
    }
    .budget-stats .stat-value {
        font-size: 18px;
    }
    .property_info {
        flex-direction: column;
        gap: 24px;
    }
    .option-card {
        width: 100%;
    }
    .stepper-wrapper .step:not(:first-child)::before {
        display: none;
    }
    .stepper-wrapper {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items: center;
    }
    .active_btn {
        flex-direction: column;
    }
}

.profile-pic .bg-transparent{
    height: 100%;
}
.profile-pic .card-body,
.profile-pic .profile-pic-wrapper{
    height: 100%;
    padding: 0;
    margin: 0;
}
#ajaxLoader{
    position: fixed;
}
#resetpassform .form-control:disabled{
    background-color: #FFF;
}
span.toggle-password{
    top: 50% !important;
}
.font15{
    font-size: 15px;
}
.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .active
  .wpforms-page-indicator-page-number {
  color: #fff;
  background-color: #1d4ed8 !important;
}

.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .wpforms-page-indicator-page-number {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px 0 0;
  line-height: 32px;
  text-align: center;
  background-color: #ddd;
  background: #f2f3f7;
  color: #adaebc;
}

.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .active
  span.wpforms-page-indicator-page-title {
  color: #000;
}

.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  span.wpforms-page-indicator-page-title {
  font-size: 14px;
  color: #adaebc;
  font-weight: 600;
}

.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .wpforms-page-indicator-page {
  display: flex;
  align-items: center;
  position: relative;
}

  .broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .wpforms-page-indicator-page.active:after{
        background: #1d4ed8 !important;
    }

.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .wpforms-page-indicator-page:after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 60px;
  height: 3px;
  background: #e5e7eb;
  transform: translateY(-50%);
  z-index: 1;
}

.broker-form.submit-loan-form
  .wpforms-form
  .wpforms-page-indicator.circles
  .wpforms-page-indicator-page:last-child::after {
  display: none;
}

.broker-form.submit-loan-form .wpforms-form .wpforms-page-indicator.circles {
    border-top: 0;
    border-bottom: 0;
    border-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 58px;
}
.broker-form.submit-loan-form .wpforms-form .wpforms-field-label {
    font-weight: 400;
    font-size: 14px;
}

.broker-form.submit-loan-form .wpforms-form input[type=text],
.broker-form.submit-loan-form .wpforms-form input[type=number] {
    min-height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 16px;
    border-radius: .5rem;
    border: 1px solid #ced4da;
    font-weight: 400;
}
.broker-form.submit-loan-form .wpforms-form textarea{
    border-radius: .5rem;
}
.broker-form.submit-loan-form .wpforms-form .choices__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    min-height: calc(1.5em + 1rem + 2px) !important;
    padding: .5rem 1rem;
    font-size: 16px;
    border-radius: .5rem !important;
    border: 1px solid #ced4da;
    font-weight: 400;
}

.broker-form.submit-loan-form .wpforms-form .wpforms-page-button {
    min-width: 90px;
    text-align: center;
    color: #fff !important;
    background-color: #1645d4 !important;
    border-color: #1645d4;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
    border-radius: 6px;
    margin-right: 0 !important;
}
.broker-form.submit-loan-form .wpforms-form .wpforms-page-button.wpforms-page-next{
    float: right;
}
.broker-form.submit-loan-form .wpforms-form .wpforms-page-button.wpforms-page-prev {
    min-width: 90px;
    text-align: center;
    color: #fff !important;
    background-color: #4A5A85 !important;
    border-color: #4A5A85;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    padding: 11px 20px;
    border-radius: 6px;
}
.broker-form.submit-loan-form .wpforms-field-container .wpforms-page {
    width: 60% !important;
    margin: 0 auto;
}
.broker-form.submit-loan-form .wpforms-page.wpforms-page-5.last {
    width: 80% !important;
}
/* //////////// */

#wpforms-form-2538 .wpforms-page label.wpforms-error,
#wpforms-form-2538 .wpforms-page .wpforms-field-select .jcf-select.jcf-unselectable,
#wpforms-form-2538 .wpforms-field.wpforms-field-name,
#wpforms-form-2538 .wpforms-field.wpforms-field-email{
 display: none !important;
}

#wpforms-form-2538 .wpforms-field-description{
    font-size: 16px;
}
#wpforms-form-2538 .wpforms-field.wpforms-field-checkbox .wpforms-field-description{
    font-size: 13px;
}
#wpforms-form-2538 .wpforms-field.wpforms-field-checkbox .wpforms-field-label-inline{
    font-size: 15px;
    font-weight: 600;
}
/* ///////////////// */
    .tooltip-box {
      background: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border-radius: 12px;
      padding: 10px 14px;
      line-height: 1.5;
      font-size: 14px;
      color: #111827;
    }
    .tooltip-status {
      background: #4f46e5;
      color: #fff;
      border-radius: 8px;
      padding: 2px 6px;
      font-size: 12px;
      margin-left: 8px;
    }
       .custom-tooltip {
      background: #fff;
      border-radius: 10px;
      padding: 10px 12px;
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      width: 270px;
    }
    .tooltip-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
    }
     .status-badge,
    .status-badge.funded {
      background: #1645d4;
      color: white;
      font-size: 12px;
      border-radius: 12px;
      padding: 2px 8px;
    }
    .status-badge.pending,
    .status-badge.notapproved{
    background: #de4825;
    }
    .status-badge.inprogress {
    background: #22C55E;    
    }        
    .tooltip-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #666;
      background: #f2f3f7;
      border-radius: 6px;
      padding: 6px 8px;
    }
    #loans-map #map {
      width: 100%;
      height: 40vh;
    }
/* #wpforms-form-2538 .wpforms-field.wpforms-field-divider{
    margin-bottom: 20px;
} */
/* ////////// */
#ira_account_input{
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}
/* ///////////// */

#uwp-password-strength {
    margin-top: 6px;
}
#uwp-password-strength .progress {
    background-color: #f2edf3;
    border-radius: 6px;
    height: 16px !important;
    overflow: hidden;
}
#uwp-password-strength .progress-bar {
    transition: width 0.4s ease;
}