@import "https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap";

:root {
    --container-width: 1600px;
    --site-blue: #153762;
    --site-red-1: #c80123;
    --site-red-2: #b80b28;
    --site-card-red: #f76363;
    --site-card-green: #40ad87;
    --site-card-blue: #7080fa;
    --white: #fff;
    --cta-banner-gradient: linear-gradient(95deg, #2b70c8 -9.95%, #285184 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    margin: 0;
}

p,
span,
a,
ul li {
    font-family: "Outfit", sans-serif;
    margin: 0;
    line-height: 24px;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

input[type="checkbox"] + label{margin-top:-3px;}

label{margin-bottom:5px !important;}

.site_container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
}

.site_row {
    display: flex;
    flex-wrap: wrap;
}

header.site_header {
    position: relative;
    z-index: 99999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

header.site_header .site_row {
    align-items: center;
}

header.site_header .site_container {
    padding-inline: 100px;
}

header.site_header .top_bar {
    background: var(--site-blue);
    padding-block: 12px;
}

header.site_header .top_bar .site_row {
    justify-content: space-between;
}

header.site_header .top_bar ul.contact_info {
    display: flex;
    align-items: center;
    gap: 25px;
}

header.site_header .top_bar ul.contact_info li a {
    display: flex;
    align-items: center;
    gap: 7px;
}

header.site_header .top_bar ul.contact_info li a span {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    text-transform: lowercase;
    color: var(--white);
    display: inline;
}

header.site_header .top_bar ul.social_info {
    display: flex;
    align-items: center;
    gap: 22px;
}

header.site_header .site_navbar {
    transition: 0.3s all;
    padding-block: 10px;
    position: sticky;
    -webkit-positioon: sticky;
    height: -moz-fit-content;
    height: fit-content;
    top: 0;
    background: var(--white);
}

header.site_header .site_navbar .site_row {
    justify-content: space-between;
}

header.site_header .site_navbar .site_menu {
    width: 100%;
    max-width: 490px;
}

header.site_header .site_navbar .site_menu ul.site_main_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item {
    position: relative;
    margin:auto;
    padding:0 15px;
}

header.site_header .site_navbar .site_menu ul.site_main_menu.after-login li.menu_item{
    padding:0 1px;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item a.menu_link {
    color: #3e3d3d;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item::after {
    content: "";
    position: absolute;
    right: -18px;
    height: 100%;
    width: 1px;
    background-color: rgba(62, 61, 61, 0.2);
    top: 50%;
    transform: translateY(-50%);
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item:nth-child(2)::after{
    right: -36px;
    margin-left:0;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item:last-child::after,
header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item:nth-child(4)::after
{
    display:none;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.menu_item:last-child::after {
    display: none;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child {
    position: relative;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child:hover ul.dropdown_menu {
    transform: scale(1);
    opacity: 1;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child:hover span::after {
    transform: translateY(-50%) rotate(0);
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child span {
    color: #3e3d3d;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    position: relative;
    display: inline-block;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child span::after {
    content: "";
    position: absolute;
    top: 60%;
    right: -20px;
    transform: translateY(-50%) rotate(-180deg);
    transition: 0.3s all;
    width: 10px;
    height: 10px;
    background: url(../../assets/img/chevron_up.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child ul.dropdown_menu {
    position: absolute;
    filter: drop-shadow(0px -10px 38px rgba(0, 0, 0, 0.15));
    background: var(--white);
    width: 231px;
    border-radius: 3px;
    top: 101%;
    transform-origin: top left;
    transform: scale(0);
    transition: 0.3s all;
    opacity: 0;
    z-index: 99;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child ul.dropdown_menu::before {
    content: "";
    position: absolute;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 15px solid var(--white);
    top: -9px;
    left: 10px;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child ul.dropdown_menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child ul.dropdown_menu li:last-child {
    border-bottom: 0;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.has_child ul.dropdown_menu li a {
    display: block;
    padding: 18px;
    color: #686565;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

header.site_header .site_navbar .site_menu ul.site_main_menu li.active a.menu_link {
    color: var(--site-red-1);
}

header.site_header .site_navbar a.header_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 4px;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
    background: var(--site-red-2);
}

header.site_header .site_navbar.sticky_header {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 99999;
    background: #f2f6fa;
    padding-block: 5px;
}

.home_banner {
    position: relative;
}

.home_banner .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home_banner .bg_layer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.home_banner .bg_layer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #fff, transparent);
    width: 100%;
    height: 100%;
}

.home_banner .txt_layer {
    padding-block-start: 180px;
    padding-block-end: 220px;
    position: relative;
}

.home_banner .txt_layer .site_container {
    padding-inline: 100px;
}

.home_banner .txt_layer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/banner_curve.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    pointer-events: none;
}

.home_banner .txt_layer .txt_block {
    position: relative;
}

.home_banner .txt_layer .txt_block::before {
    content: "";
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: var(--site-red-1);
    opacity: 0.06;
    position: absolute;
    left: -90px;
    top: -50px;
}

.home_banner .txt_layer .txt_block span.tagline {
    display: block;
    padding-inline-start: 53px;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.68px;
    text-transform: uppercase;
    color: var(--site-red-1);
}

.home_banner .txt_layer .txt_block span.tagline::before {
    top: 50%;
    width: 43px;
    height: 1px;
    position: absolute;
    content: "";
    left: 0;
    background: var(--site-red-1);
    transform: translateY(-50%);
}

.home_banner .txt_layer .txt_block h1 {
    width: 100%;
    max-width: 545px;
    color: #0f0f0f;
    font-size: 65px;
    font-style: normal;
    font-weight: 600;
    line-height: 73px;
    text-transform: capitalize;
    margin-block-start: 34px;
}

.home_banner .txt_layer .txt_block a.site_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 30px;
    border-radius: 4px;
    background: var(--site-red-1);
    margin-block-start: 56px;
    transition: 0.3s all;
    border: 1px solid rgba(0, 0, 0, 0);
}

.home_banner .txt_layer .txt_block a.site_cta:hover {
    background: var(--white);
    border: 1px solid var(--site-red-1);
}

.home_banner .txt_layer .txt_block a.site_cta:hover span {
    color: var(--site-red-1);
}

.home_banner .txt_layer .txt_block a.site_cta:hover svg path {
    fill: var(--site-red-1);
}

.home_banner .txt_layer .txt_block a.site_cta span {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
    transition: 0.3s all;
}

.home_banner .txt_layer .txt_block a.site_cta svg path {
    transition: 0.3s all;
}

.block_heading {
    text-align: center;
}

.block_heading span.tagline {
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.68px;
    text-transform: uppercase;
    color: var(--site-red-1);
    padding-inline: 8px;
    position: relative;
    z-index: 1;
}

.block_heading span.tagline::before {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(100% + 86px);
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1px;
    background: var(--site-red-1);
    z-index: -1;
}

.block_heading span.tagline::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    background: var(--white);
    z-index: -1;
}

.block_heading .block_title {
    color: #0f0f0f;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 63px;
    text-transform: capitalize;
    margin-block-start: 27px;
}

.loan_calculator {
    padding-block-start: 50px;
    padding-block-end: 100px;
}

.loan_calculator .site_container {
    padding-inline: 230px;
}

.loan_calculator .site_row {
    margin-block-start: 60px;
    gap: 30px;
}

.loan_calculator .site_row .colm {
    width: calc((100% - 60px) / 3);
}

.loan_calculator .calc_card {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    padding: 28px 32px;
    position: relative;
}

.loan_calculator .calc_card h4.card_title {
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
    text-transform: capitalize;
    color: var(--white);
    padding-block-end: 14px;
    position: relative;
    z-index: 1;
}

.loan_calculator .calc_card h4.card_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 30px;
    background: var(--white);
}

.loan_calculator .calc_card p {
    margin-block-start: 13px;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: var(--white);
}

.loan_calculator .calc_card a.site_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 27px;
    border-radius: 4px;
    background: var(--white);
    margin-block-start: 25px;
    transition: 0.3s all;
    border: 1px solid rgba(0, 0, 0, 0);
}

.loan_calculator .calc_card a.site_cta:hover {
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--white);
}

.loan_calculator .calc_card a.site_cta:hover span {
    color: var(--white) !important;
}

.loan_calculator .calc_card a.site_cta:hover svg path {
    fill: var(--white);
}

.loan_calculator .calc_card a.site_cta span {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.3s all;
}

.loan_calculator .calc_card a.site_cta svg path {
    transition: 0.3s all;
}

.loan_calculator .calc_card.card_accent_1 {
    background: var(--site-card-red);
}

.loan_calculator .calc_card.card_accent_1::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    background: #f87a7a;
}

.loan_calculator .calc_card.card_accent_1::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: 20px;
    bottom: -50px;
    border: 17px solid #f87a7a;
}

.loan_calculator .calc_card.card_accent_1 a.site_cta span {
    color: var(--site-card-red);
}

.loan_calculator .calc_card.card_accent_2 {
    background: var(--site-card-green);
}

.loan_calculator .calc_card.card_accent_2::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 105px;
    height: 105px;
    background: url(../../assets/img/green_curve.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.loan_calculator .calc_card.card_accent_2::before {
    content: "";
    position: absolute;
    top: -50px;
    right: 16px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 17px solid #5cb998;
}

.loan_calculator .calc_card.card_accent_2 a.site_cta span {
    color: var(--site-card-green);
}

.loan_calculator .calc_card.card_accent_3 {
    background: var(--site-card-blue);
}

.loan_calculator .calc_card.card_accent_3::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 148px;
    height: 148px;
    background: #97a3fa;
    border-radius: 50%;
}

.loan_calculator .calc_card.card_accent_3::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -60px;
    width: 148px;
    height: 148px;
    background: #8593fa;
    border-radius: 50%;
}

.loan_calculator .calc_card.card_accent_3 a.site_cta span {
    color: var(--site-card-blue);
}

.apply_for_loan_block {
    padding-block: 100px;
    background: rgba(242, 246, 250, 0.8);
}

.apply_for_loan_block .block_heading span.tagline::after {
    background: #f5f8fb;
}

.apply_for_loan_block .site_container {
    padding-inline: 200px;
}

.apply_for_loan_block .full_width_img_block {
    width: 100%;
    aspect-ratio: 1047/362;
    border-radius: 15px;
    overflow: hidden;
    margin-block-start: 65px;
    max-width: 1047px;
    margin-inline: auto;
}

.apply_for_loan_block .full_width_img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.apply_for_loan_block .site_row {
    gap: 40px;
    margin-block-start: 40px;
}

.apply_for_loan_block .site_row .colm {
    max-width: 537px;
    width: 100%;
}

.apply_for_loan_block .site_row .colm .benefit_list {
    width: calc(100% - 33px);
    background: var(--white);
    padding: 38px 40px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    transform: translateY(-100px);
}

.apply_for_loan_block .site_row .colm .benefit_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.07);
    z-index: -1;
}

.apply_for_loan_block .site_row .colm .benefit_list::after {
    content: "";
    position: absolute;
    bottom: -36px;
    right: -33px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--site-card-blue);
    z-index: -2;
}

.apply_for_loan_block .site_row .colm .benefit_list h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
}

.apply_for_loan_block .site_row .colm .benefit_list ul {
    margin-block-start: 24px;
}

.apply_for_loan_block .site_row .colm .benefit_list ul li {
    padding-left: 34px;
    position: relative;
    color: #898989;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-block-end: 12px;
}

.apply_for_loan_block .site_row .colm .benefit_list ul li:last-child {
    margin-block-end: 0;
}

.apply_for_loan_block .site_row .colm .benefit_list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../assets/img/benefit_check.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
}

.apply_for_loan_block .site_row .colm_two {
    max-width: calc(100% - 577px);
    width: 100%;
}

.apply_for_loan_block .site_row .colm_two p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: #898989;
}

.apply_for_loan_block .site_row .colm_two p.strong {
    font-size: 15px;
    font-weight: 600;
    margin-block-start: 32px;
    font-family: "Jost", sans-serif;
}

.apply_for_loan_block .site_row .colm_two a.site_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 30px;
    border-radius: 4px;
    background: var(--site-red-1);
    margin-block-start: 32px;
    transition: 0.3s all;
    border: 1px solid rgba(0, 0, 0, 0);
}

.apply_for_loan_block .site_row .colm_two a.site_cta:hover {
    background: var(--white);
    border: 1px solid var(--site-red-1);
}

.apply_for_loan_block .site_row .colm_two a.site_cta:hover span {
    color: var(--site-red-1);
}

.apply_for_loan_block .site_row .colm_two a.site_cta:hover svg path {
    fill: var(--site-red-1);
}

.apply_for_loan_block .site_row .colm_two a.site_cta span {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
    transition: 0.3s all;
}

.apply_for_loan_block .site_row .colm_two a.site_cta svg path {
    transition: 0.3s all;
}

.testimonial_block {
    padding-block: 90px;
}

.testimonial_block .site_container {
    padding-inline: 230px;
}

.testimonial_block .review_slider {
    position: relative;
    margin-block-start: 30px;
    z-index: 1;
}

.testimonial_block .review_slider .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial_block .review_slider .bg_layer img {
    width: 100%;
    height: auto;
}

.testimonial_block .review_slider .slider_layer .quote_img {
    display: block;
    margin-inline: auto;
    margin-block: 60px;
}

.testimonial_block .review_slider .slider_layer .slide_item {
    width: 100%;
    max-width: 764px;
    text-align: center;
    margin-inline: auto;
}

.testimonial_block .review_slider .slider_layer .slide_item p.client_says {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: #898989;
    width: 100%;
    max-width: 638px;
    margin-inline: auto;
}

.testimonial_block .review_slider .slider_layer .slide_item .avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid var(--white);
    margin-inline: auto;
    margin-block-start: 20px;
    overflow: hidden;
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
}

.testimonial_block .review_slider .slider_layer .slide_item .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial_block .review_slider .slider_layer .slide_item span.avt_name {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--site-blue);
    margin-block-start: 20px;
    display: block;
}

.testimonial_block .review_slider .slider_layer .slide_item span.sm_txt {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #3f3f3f;
    display: block;
}

.testimonial_block .review_slider .slider_layer .owl-dots {
    margin-top: 30px;
}

.testimonial_block .review_slider .slider_layer .owl-dots .owl-dot {
    outline: none;
}

.testimonial_block .review_slider .slider_layer .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    background: #d9d9d9;
    transition: 0.3s all;
}

.testimonial_block .review_slider .slider_layer .owl-dots .active span {
    width: 17px;
    height: 7px;
    border-radius: 7px;
    background: var(--site-red-1);
}

.cta_banner {
    position: relative;
    z-index: 1;
}

.cta_banner::before {
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #eff6ff;
    position: absolute;
    z-index: -1;
}

.cta_banner .site_container {
    padding-inline: 230px;
}

.cta_banner .cta_block {
    padding: 62px 70px;
    background: var(--cta-banner-gradient);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta_banner .cta_block::after {
    content: "";
    position: absolute;
    width: 214px;
    height: 214px;
    right: -100px;
    top: -90px;
    border-radius: 50%;
    background: #3674c3;
    z-index: 1;
}

.cta_banner .cta_block .inner_row {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.cta_banner .cta_block .inner_row .left_part {
    width: 567px;
}

.cta_banner .cta_block .inner_row .left_part h3 {
    color: var(--white);
    font-size: 35px;
    line-height: 50px;
    font-weight: 600;
}

.cta_banner .cta_block .inner_row .left_part p {
    margin-top: 40px;
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.cta_banner .cta_block .inner_row .right_part {
    width: calc(100% - 727px);
    position: relative;
    z-index:2;
}

.cta_banner .cta_block .inner_row .right_part ul.contact_info li {
    margin-bottom: 19px;
}

.cta_banner .cta_block .inner_row .right_part ul.contact_info li:last-child {
    margin-bottom: 0;
}

.cta_banner .cta_block .inner_row .right_part ul.contact_info li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta_banner .cta_block .inner_row .right_part ul.contact_info li a span {
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
    color: var(--white);
}

.cta_banner .cta_block .inner_row .right_part a.site_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 30px;
    border-radius: 4px;
    background: var(--white);
    margin-block-start: 32px;
    transition: 0.3s all;
    border: 1px solid rgba(0, 0, 0, 0);
}

.cta_banner .cta_block .inner_row .right_part a.site_cta:hover {
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--white);
}

.cta_banner .cta_block .inner_row .right_part a.site_cta:hover span {
    color: var(--white);
}

.cta_banner .cta_block .inner_row .right_part a.site_cta:hover svg path {
    fill: var(--white);
}

.cta_banner .cta_block .inner_row .right_part a.site_cta span {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--site-blue);
    transition: 0.3s all;
}

.cta_banner .cta_block .inner_row .right_part a.site_cta svg path {
    transition: 0.3s all;
}

footer.site_footer .top_block {
    padding-block: 100px;
    background: #eff6ff;
}

footer.site_footer .top_block .site_row {
    gap: 72px;
}

footer.site_footer .top_block .site_row .col_1 {
    width: 100%;
    max-width: 290px;
}

footer.site_footer .top_block .site_row .col_1 p {
    font-size: 16px;
    line-height: 26px;
    color: #676767;
    margin-block-start: 16px;
}

footer.site_footer .top_block .site_row .col_4 {
    width: 100%;
    max-width: 340px;
}

footer.site_footer .top_block .site_row .col_2,
footer.site_footer .top_block .site_row .col_3 {
    width: calc((100% - 850px) / 2);
}

footer.site_footer .top_block ul.social_link {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

footer.site_footer .top_block .f_title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--site-blue);
    margin-bottom: 24px;
    text-transform: capitalize;
}

footer.site_footer .top_block ul.contact_links li {
    margin-bottom: 16px;
}

footer.site_footer .top_block ul.contact_links li:last-child {
    margin-bottom: 0;
}

footer.site_footer .top_block ul.contact_links li a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

footer.site_footer .top_block ul.contact_links li a span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    color: #676767;
}

footer.site_footer .top_block ul.q_links li {
    margin-bottom: 10px;
}

footer.site_footer .top_block ul.q_links li:last-child {
    margin-bottom: 0;
}

footer.site_footer .top_block ul.q_links li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: #676767;
    display: block;
}

footer.site_footer .bottom_block {
    background: var(--site-blue);
    padding: 22px 10px;
    text-align: center;
}

footer.site_footer .bottom_block p {
    color: var(--white);
}

footer.site_footer .site_container {
    padding-inline: 230px;
}

.what_we_do_block {
    padding: 100px 0;
}

.what_we_do_block .site_container {
    padding-inline: 230px;
}

.what_we_do_block .site_row {
    gap: 60px;
    align-items: center;
}

.what_we_do_block .site_row .colm {
    width: calc((100% - 60px) / 2);
}

.what_we_do_block .block_heading {
    text-align: left;
}

.what_we_do_block .block_heading span.tagline {
    padding: 0 8px 0 0;
}

.what_we_do_block .block_heading span.tagline::before {
    left: 0;
    width: calc(100% + 43px);
    transform: translateY(-50%);
}

.what_we_do_block p {
    color: #898989;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 32px;
}

.what_we_do_block h6 {
    margin-top: 32px;
    color: #0f0f0f;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.what_we_do_block ul {
    list-style-type: disc;
    margin-top: 24px;
    padding-left: 20px;
}

.what_we_do_block ul li {
    color: #898989;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 17px;
}

.what_we_do_block ul li:last-child {
    margin-bottom: 0;
}

.our_mission_block {
    background: rgba(242, 246, 250, 0.8);
    padding-block: 90px;
}

.our_mission_block .block_heading {
    text-align: left;
}

.our_mission_block .block_heading span.tagline {
    padding: 0 8px 0 0;
}

.our_mission_block .block_heading span.tagline::after {
    background: #f2f6fa;
}

.our_mission_block .block_heading span.tagline::before {
    left: 0;
    width: calc(100% + 43px);
    transform: translateY(-50%);
}

.our_mission_block p {
    color: #898989;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 32px;
}

.our_mission_block .site_container {
    padding-inline: 230px;
}

.our_mission_block .site_row {
    gap: 60px;
    align-items: center;
}

.our_mission_block .site_row .colm {
    width: calc((100% - 60px) / 2);
}

.our_mission_block .img_block {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;
}

.our_mission_block .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chatbot_block {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99999;
}

.chatbot_block .chat_btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--site-blue);
    position: fixed;
    right: 30px;
    bottom: 100px;
    cursor: pointer;
}

.chatbot_block .chat_btn .img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
}

.chatbot_block .chat_btn .img_2 {
    width: 30px;
    opacity: 0;
}

.chatbot_block .chat_btn .img_1 {
    opacity: 1;
}

.chatbot_block .chat_btn:hover+.chat_tooltip {
    opacity: 1;
    transform: scale(1);
}

.chatbot_block .chat_btn.chat_open .img_1 {
    opacity: 0;
}

.chatbot_block .chat_btn.chat_open .img_2 {
    opacity: 1;
}

.chatbot_block .chat_tooltip {
    filter: drop-shadow(0px 7px 27px rgba(0, 0, 0, 0.09));
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    right: 124px;
    position: fixed;
    bottom: 90px;
    width: 176px;
    transition: 0.3s all;
    opacity: 0;
    transform-origin: right center;
    transform: scale(0);
}

.chatbot_block .chat_tooltip::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
}

.chatbot_block .chat_tooltip span {
    display: block;
}

.chatbot_block .chat_tooltip span.title {
    color: #0f0f0f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.chatbot_block .chat_tooltip span.txt {
    color: #888;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.chatbot_block #react-root-message .chat_box {
    width: 365px;
    height: 60vh;
    position: fixed;
    right: 60px;
    bottom: 209px;
    border-radius: 16px;
    overflow: hidden;
}

.chatbot_block #react-root-message .chat_box .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chatbot_block #react-root-message .chat_box .bg_layer video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chatbot_block #react-root-message .chat_box .chat_layer {
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 20.59%,
            rgba(0, 0, 0, 0.5) 71.57%,
            #000 81.54%);
}

.chatbot_block #react-root-message .chat_box .chat_layer button.mute {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 32, 32, 0.5);
    -webkit-backdrop-filter: blur(38.0731048584px);
    backdrop-filter: blur(38.0731048584px);
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 2;
}

.chatbot_block #react-root-message .chat_box .chat_layer .type_area {
    bottom: 0;
    position: absolute;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot_block #react-root-message .chat_box .chat_layer .type_area input {
    width: calc(100% - 56px);
    height: 48px;
    border-radius: 50px;
    padding: 10px;
    border: 0;
    outline: 0;
}

.chatbot_block .chat_box .chat_layer .type_area button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--site-card-blue);
    border: 0;
}

.chatbot_block .chat_box .chat_layer .chats {
    height: calc(100% - 88px);
    overflow-y: auto;
    padding: 20px;
    /* display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end; */
    position: relative;
}

.chatbot_block .chat_box .chat_layer .chats .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 0;
    overflow: hidden;
}

.chatbot_block .chat_box .chat_layer .chats .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chatbot_block .chat_box .chat_layer .chats .my_end {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.chatbot_block .chat_box .chat_layer .chats .my_end .my_chat {
    width: -moz-fit-content;
    width: fit-content;
}

.chatbot_block .chat_box .chat_layer .chats .my_end span.txt {
    background: var(--site-card-blue);
    padding: 20px;
    border-radius: 16px 16px 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.chatbot_block .chat_box .chat_layer .chats .their_end .their_chat {
    width: -moz-fit-content;
    width: fit-content;
}

.chatbot_block .chat_box .chat_layer .chats .their_end span.txt {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 0 16px 16px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.chatbot_block .chat_box .chat_layer .chats .chat_time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.chatbot_block .chat_box .chat_layer .chats .chat_time span.time {
    font-size: 10px;
    color: var(--white);
}

.toggle-calculators {
    /* transform: scale(1) !important; */
    opacity: 1 !important;

}
.mic-off-cls >img{
    height: 25px !important;
}


.message_box {
    /* height: 500px; */
    height: calc(100% - 88px);

    width: 100%; 
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.message_layer {
    flex-grow: 1;
    overflow-y: auto;  
    display: flex;
    flex-direction: column-reverse;  
    padding: 20px;
    box-sizing: border-box;
}


.message_chats {
    display: flex;
    flex-direction: column;
    gap: 10px;  
}

.message_text {
    /* background-color: #f1f1f1; */
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
}
.message_chats span.txt {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 0 16px 16px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}
.message_chats .my_end {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.message_chats .my_end span.txt {
    /* background: var(--site-card-blue); */
    background-color: rgba(112,128,250, 0.4);
    padding: 20px;
    border-radius: 16px 16px 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}
.chat-reset-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 4px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    background: var(--site-red-2);
    outline: none;
    border: 0;
}
.chat-group-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

}

.message_box span.time {
    font-size: 10px;
    color: var(--white);
} 

.message_chats .my_end span.txt-wrong {
    /* background: var(--site-red-1); */
    background-color:rgb(200, 1, 34, 0.4);
    padding: 20px;
    border-radius: 16px 16px 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.errors-from{
    color: red;
}

.chat_layer .mute >img {
    width: 41px;
    height: 22px;
  }

  .contactuspage .site_container{
    padding-inline:200px;
    min-height: 20em;
}

.contactuspage p{
    line-height: 25px;
    font-size: 18px;
}

.signature-preview{
    display:flex;
    align-items: center;
}
.site_container h1 {
    font-size: 35px;
    font-weight: 500;
}


@media screen and (max-width:1440px){
    footer.site_footer .top_block .site_row .col_1{max-width:213px;}
    footer.site_footer .top_block .site_row .col_2, footer.site_footer .top_block .site_row .col_3{width:calc((100% - 769px) / 2);}
}


.site_container .heding-cms-page{
 font-size: 30px;
}





/* Desktop Menu */
/* .desktop_menu {
    display: flex;
} */

.site_main_menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu_item {
    margin: 0 15px;
    position: relative;
}

.menu_link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Dropdown Menu for Desktop */
.has_child .dropdown_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.has_child:hover .dropdown_menu {
    display: block;
}

.dropdown_menu_link {
    text-decoration: none;
    color: #000;
    padding: 10px 20px;
    display: block;
}

/* Mobile Menu */
.menu_toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.toggle_icon {
    width: 25px;
    height: 3px;
    background-color: #000;
    display: block;
    position: relative;
}

.toggle_icon::before,
.toggle_icon::after {
    content: "";
    width: 25px;
    height: 3px;
    background-color: #000;
    display: block;
    position: absolute;
    transition: all 0.3s;
}

.toggle_icon::before {
    top: -8px;
}

.toggle_icon::after {
    top: 8px;
}

.mobile_menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.no-scroll {
    overflow: hidden;
}

/* Background overlay */
#menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Show overlay when menu is open */
#menu-overlay.active {
    display: block;
}

.chat-ask-question-button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 4px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    /* background: var(--site-red-2); */
    background-color: rgb(200, 1, 34, 0.4);
    outline: none;
    border: 0;

}

.my_end_continue {
    display: flex;
    justify-content: flex-end; /* Aligns content to the right */
    padding: 10px; /* Optional: Adds spacing around the content */
}

.my_chat_continue {
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: flex-end; /* Aligns children to the right */
}

.chat-group-button-continue {
    display: flex;
    justify-content: flex-end; /* Ensures buttons are aligned to the right */
}

.chat-reset-button-continue {
    padding: 10px 20px; /* Optional: Adjusts button size */
 
    background-color: rgb(43 156 37 / 40%);
    color: white; /* Optional: Sets button text color */
    border: none;
    border-radius: 5px; /* Optional: Rounds button corners */
    cursor: pointer;
}

.custom-modal-class{
    top: 114px!important;
    z-index: 99999;
}

.modal-dialog {
    max-width: 600px; /* Set a maximum width for the modal */
    margin: 30px auto; /* Center the modal horizontally */
    overflow-y: auto; /* Enable vertical scrolling if content is too large */
    height: auto; /* Allow height to expand to fit content */
    max-height: calc(100vh - 210px); /* Adjust the max height based on viewport height */
}

.modal-body {
    max-height: calc(100vh - 250px); /* Limit the height of the body for scrolling */
    overflow-y: auto; /* Enable scrolling for overflow content */
}

.signature-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex
;
    flex-direction: column;
    width: 50%;
}

.signature-container canvas {
    border: 2px solid #32CD32;
    border-radius: 5px;
}

.signature-container .buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#signpad_save , #signpad_undo {
    display: none;
}

.justify-space-between{
    justify-content: space-between;
}

#foth-step-from >label >sup {
    display: none;
}