@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend Deca:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Lexend Deca:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #002954;
    --secondary: #B22234;
    --bg-light: #2a3e812b;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --text-color: #000000;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--white);
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: var(--primary);
}

html {
    scroll-behavior: unset !important;
}

body {
    font-family: "Lexend Deca", sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.75;
    color: #414752;
    overflow-x: hidden;
    font-display: swap;
    scroll-behavior: unset !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lexend Deca", sans-serif;
    font-display: swap;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

h1,
.h1 {
    font-size: 46px;
}

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

p {
    margin-bottom: 10px;
}

.theme-color {
    color: var(--primary);
}

.theme-btn {
    background: var(--primary);
    padding: 8px 50px;
    display: inline-block;
    font-family: "Inter", sans-serif;
    color: var(--white);
    position: relative;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border-radius: 2px;
    border: 2px solid transparent;
    border-radius: 10px;
}

.theme-btn.outlined_btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.theme-btn i {
    margin-right: 10px;
}

.theme-btn:hover {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}

*:hover,
*:focus,
* {
    outline: none !important;
}

a,
input[type=submit] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: #777777;
}

.header_top_links {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

.header_top_links .header_top_left,
.header_top_links .header_top_right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header_top_links a {
    color: var(--white);
    font-family: 'Lexend Deca';
    font-weight: 300;
    font-size: 14px;
    line-height: 12px;
}

.header-top {
    background: var(--primary);
    padding: 10px 0;
}

.header_top_links a i {
    margin-right: 8px;
}

.navbar-brand.active{
    left: -80%;
}
.navbar-brand{
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.offcanvas-header{
    position: relative;
    overflow: hidden;
}
/* .lines{
    background-color: #002954;
    position: relative;
    width: 100%;
}
.offcanvas-header span:before, .offcanvas-header span:after {
    display: block;
    background-color: #002954;
    height: 3px;
    width: 22px;
    position: absolute;
    content: '';
    -webkit-transform-origin: .28571rem center;
    transform-origin: .28571rem center;
    right: 0;
    margin: 0 auto;
}
.offcanvas-header .lines:before {
    top: -3px;
    transform: translate(0, 0) rotate(45deg);
}
.offcanvas-header .lines:after {
    top: 6px;
    transform: translate(0, 0) rotate(-45deg);
} */
/* Hamburger Button */
.animated-toggler {
    position: fixed;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
    z-index: 1051; /* Higher than offcanvas */
}
.animated-toggler{
    display: none;
}
/* Offcanvas positioning */
.offcanvas {
  z-index: 1050; /* Below the hamburger */
}
/* Rest of your existing animation styles */
.toggler-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 18px;
  margin: 0 auto;
}
.toggler-icon .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #002954;
  left: 0;
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggler-icon .line.active{
    top: 0px;
}
.animated-toggler .top{
    top: 8px;
}
.animated-toggler .bottom {
  bottom: 0px;
}
/* Animation states */
.animated-toggler[aria-expanded="true"] .top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.animated-toggler[aria-expanded="true"] .middle {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.animated-toggler[aria-expanded="true"] .bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}




.navbar-brand img {
    max-width: 160px;
}

nav.navbar.navbar-expand-lg {
    background: #E5E5E5 !important;
}

nav.navbar.navbar-expand-lg {
    background: #E5E5E5 !important;
}

.navbar .nav-item .nav-link {
    color: var(--primary);
    font-family: "Inter";
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    margin: 0px 10px;
}

.navbar .nav-phone {
    font-family: "Inter";
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 10px;
    text-align: right;
    color: var(--primary);
}

.navbar .nav-item .nav-link {
    position: relative;
    overflow: visible;
    padding: .75em .4em;
}

.navbar .nav-item .nav-link::before,
.navbar .nav-item .nav-link::after {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    background: var(--primary);
    content: "";
    position: absolute;
}

.navbar .nav-item .nav-link::before {
    top: -webkit-calc(110% - .25em);
    top: calc(110% - .25em);
    left: -webkit-calc(50% - .3em);
    left: calc(50% - .3em);
    width: .6em;
    height: .6em;
    border-radius: 1.2em;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.navbar .nav-item .nav-link::after {
    top: 110%;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.navbar .nav-item .nav-link:hover::before {
    webkit-transform: scale(1);
    transform: scale(1)
}

.navbar .nav-item .nav-link:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

/* .hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    position: relative;
    color: var(--white);
} */

.hero-banner {
    position: relative;
    height: calc(100dvh - 114px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner--inner {
    height: 600px;
}

:is(.hero-video, .hero-img) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay,
.hero-banner::before {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(0 0 0 / 26%);
    top: 0;
    left: 0;
}
.hero-product-banner::before{
    background: rgb(0 0 0 / 20%);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-slide {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Typography */
.hero-banner .subheading {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    text-align: center;
}

.hero-banner .hero-content{
    z-index: 8;
    position: relative;
}

.hero-banner .hero-content .box{
    background: rgba(0, 41, 84, 30%);
    padding: 40px 10px;
    width: fit-content;
    margin: 80px auto 0;
    border-radius: 20px;
}
.hero-banner.getAQuote .hero-content .box{
    margin: 0px auto 0;
}
.hero-banner .hero-content .box .heading{
    font-family: "Lexend Deca", sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-banner .heading {
    font-family: "Lexend Deca", sans-serif;
    font-size: 3.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-banner .hero-product-content .description{
    font-size: 28px;
    max-width: 720px;
    margin: 20px auto;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
}
.hero-banner .hero-product-content .description.meetTeam{
    max-width: 100%;
}
.hero-banner .hero-product-content .description .instVerifiedBadge{
    width: auto;
    height: 20px;
}
.hero-banner .description {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 20px auto;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
}

/* Buttons */
.banner-buttons .btn {
    margin: 0 10px;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
    font-family: "Lexend Deca", sans-serif;
}

.banner-buttons .btn:hover {
    background: #ffffff;
    color: #002954;
}

.banner-product-btn{
    font-size: 28px;
    font-family: "Lexend Deca";
    font-weight: 500;
    color: white;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #99A0A1;
    padding: 0px 30px;
}

.banner-product-btn:hover{
    background-color: #99A0A1;
    color: white;
}

/* Slick arrows */
.hero-slider .slick-arrow {
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-next {
    right: 30px;
}

.hero-slider .slick-arrow i {
    color: #fff;
    font-size: 20px;
}

.hero-slider .slick-next:before,
.hero-slider .slick-prev:before {
    display: none;
}

/* Animation Preparation (GSAP support) */
.hero-slider .heading,
.hero-slider .subheading,
.hero-slider .description,
.hero-slider .banner-buttons .btn {
    opacity: 0;
    transform: translateY(40px);
    transition: none !important;
    will-change: transform, opacity;
}

.step_world_sec {
    padding-top: 60px;
}

.step_world_sec .step_world_bg {
    border-radius: 10px;
    padding: 30px;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
}

.step_world_sec .step_world_bg:before {
    position: absolute;
    content: "";
    background: linear-gradient(45deg, #002954, #00295400);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.step_world_sec .step_world_bg .step_content {
    position: relative;
    z-index: 1;
}

.step_content {
    color: var(--white);
}

.step_content h2 {
    color: var(--white);
    font-family: Lexend Deca;
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.1875rem;
}

.step_content p {
    color: var(--white);
    font-family: Lexend Deca;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 5px;
}

.step_world_btn {
    background: var(--white);
    display: block;
    margin: 10px 0px;
    position: relative;
    color: var(--primary);
    font-family: Lexend Deca;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    /* 185% */
    letter-spacing: -0.075rem;
    width: 50%;
    border: 1px solid var(--primary);
    transition: 0.4s all ease;
}

.btn_flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step_world_btn:hover {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.loan_choices_sec .para {
    max-width: 880px;
    margin: 20px auto 30px;
}

.sec_heading h2 {
    color: var(--primary);
    font-family: Lexend Deca;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 111%;
    /* 4.44rem */
    letter-spacing: 0.12rem;
}
.sec_heading .adjustTitle{
    font-size: 40px;
}

.para {
    color: var(--black);
    font-family: Lexend Deca;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 2rem;
}

.loan_choice_card .image_area {
    height: 215px;
    width: 100%;
}

.loan_choice_card .image_area img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.625rem;
}

.loan_choice_card {
    border-radius: 0.625rem;
    background: var(--white);
    box-shadow: 0px 239px 67px 0px rgba(0, 0, 0, 0.00), 0px 153px 61px 0px rgba(0, 0, 0, 0.01), 0px 86px 52px 0px rgba(0, 0, 0, 0.05), 0px 38px 38px 0px rgba(0, 0, 0, 0.09), 0px 10px 21px 0px rgba(0, 0, 0, 0.10);
}

.loan_choice_card .loan_heading_link h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    margin: 10px 0px;
    text-align: left;
}

.loan_choice_card .loan_heading_link a {
    color: rgba(0, 0, 0, 0.40);
    text-align: right;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    display: block;
}

.loan_choice_card .loan_heading_link {
    padding: 20px;
}

.loan_choices_sec {
    padding-top: 60px;
    text-align: center;
    overflow-x: hidden;
}

.loan_choices_slider {
    padding: 0 20px;
    position: relative;
}

.loan_choices_slider .slick-slide-slide {
    padding: 40px 15px;
    box-sizing: border-box;
}

.loan_choice_card {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.loan_choices_slider .slick-arrow {
    background-color: white;
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    z-index: 1;
    top: 40%;
    transform: translateY(-50%);
}

.loan_choices_slider .slick-prev {
    left: -30px;
}

.loan_choices_slider .slick-next {
    right: -30px;
}

.loan_choices_slider .slick-arrow i {
    font-size: 16px;
    color: var(--primary);
}

.loan_choices_slider .slick-next:before,
.slick-prev:before {
    display: none;
}




.ceo_message_section {
    padding: 60px 0px;
    background-color: var(--white);
    position: relative;
}


.ceo_message_section .ceo-img {
    position: relative;
    z-index: 2;
    width: 28.75rem;
    height: 30.6875rem;
    border-radius: 0.9375rem;
    margin: 0 auto;
    object-fit: cover;
}
.ceo_message_section .ceo-img.ceo-border-img{
    border: 2px solid #002954;
    /* border-radius: 40px 10px 50px 50px; */
    border-radius: 10px;
}
.ceo_message_section .waterMarkBox{
    position: relative;
    padding: 80px 0;
}
.ceo_message_section .waterMarkBox.bridgeWaterMarkBox{
    padding: 0px 0;
}
.ceo_message_section .waterMarkBox:before{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/starWaterMark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.ceo_message_section .waterMarkBox.secondBox:before{
    transform: rotateY(-180deg);
}

.ceo_message_section .bg-square {
    position: absolute;
    z-index: 1;
    border-radius: 0.625rem;
}

.ceo_message_section .square-1 {
    top: -50px;
    left: -50px;
    width: 27.5625rem;
    height: 27.25rem;
    background: rgba(0, 41, 84, 0.40);
}

.ceo_message_section .square-2 {
    bottom: -30px;
    right: 0px;
    width: 19.9375rem;
    height: 12.125rem;
    background: rgba(0, 41, 84, 0.40);
}

.ceo_message_section ul li{
    list-style-type: disc;
    font-size: 20px;
    font-family: "Lexend Deca";
    font-weight: 300;
    color: black;
}




/* ==== Client Reviews ==== */
.client_reviews_section {
    padding-top: 60px;
    background: #fff;
}

.client_reviews_section .sec_heading h2 {
    margin-bottom: 0px;
}


.client_reviews_section .review_card {
    padding: 20px;
    height: 100%;
    border-radius: 0.625rem;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    min-height: 280px;
}
.profile__client__reviews .review_card {
    min-height: 240px;
}

.client_reviews_section .review_user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.client_reviews_section .review_avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
}

.client_reviews_section .review_name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--black);
}

.client_reviews_section .review_location {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 5px;
}

.client_reviews_section .review_text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 5px;
}
.client_reviews_section .read-more-btn{
    background: none;
    border: none;
    color: #0066cc;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    font-size: 0.8rem;
    display: inline-block;
}

.client_reviews_section .review_stars i {
    font-size: 0.8rem;
}

.quote_form_sec .formCaption{
    font-size: 12px;
    font-family: "Lexend Deca";
    font-weight: 400;
    color: #000000;
}

/* ==== Blog Section ==== */
.blogs_section {
    padding-top: 60px;
}

.blogs_section .sec_heading h2 {
    margin-bottom: 0px;
}

.blogs_section .blog_card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blogs_section .blog_img {
    width: 100%;
    object-fit: cover;
    height: 180px;
}

.blogs_section .blog_content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 180px);
}

.blogs_section .blog_title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 65px;
}


.blogs_section .blog_link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-decoration: none;
}


.client_reviews_slider .slick-slide,
.blogs_slider .slick-slide {
    padding: 40px 15px;
    box-sizing: border-box;
}

.client_reviews_slider,
.blogs_slider {
    padding: 0 10px;
}

/* .gallerySlider{
    overflow-x: hidden;
} */
.gallerySlider .videoBox .videoImg iframe{
    width: 100%;
}
.client_reviews_slider .slick-arrow,
.blogs_slider .slick-arrow,
.gallerySlider .slick-arrow {
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client_reviews_slider .slick-arrow img,
.blogs_slider .slick-arrow img,
.gallerySlider .slick-arrow img{
    width: 35px;
    height: 35px;
}

.client_reviews_slider .slick-prev,
.blogs_slider .slick-prev,
.gallerySlider .slick-prev{
    left: -60px;
}

.client_reviews_slider .slick-next{
    right: -60px;
}
.gallerySlider .slick-next{
    right: -60px;
}
.blogs_slider .slick-next {
    right: -55px;
}

.client_reviews_slider .slick-arrow i,
.blogs_slider .slick-arrow i {
    color: var(--primary);
    font-size: 20px;
}

.client_reviews_slider .slick-next:before,
.client_reviews_slider .slick-prev:before,
.blogs_slider .slick-next:before,
.blogs_slider .slick-prev:before,
.gallerySlider .slick-next:before,
.gallerySlider .slick-prev:before {
    display: none;
}
/* Add this CSS without modifying existing styles */

.faq_section {
    background: #e6edf4;
    padding: 60px 0;
}

.faq-title {
    font-weight: 700;
    color: #002E5B;
    font-size: 2.5rem;
}

.faq-tabs .nav-link {
    background-color: #002E5B;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 6px;
    padding: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-tabs .nav-link:hover,
.faq-tabs .nav-link.active {
    background-color: #014a8e;
}

.faq-content .tab-pane {
    transition: opacity 0.3s ease-in-out;
}

.faq-answer-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.quote_form_sec {
    padding: 4rem 0;
}

.quote_form_sec .get_started {
    border-radius: 0.625rem;
    background: #FFF;
    box-shadow: 0px 376px 105px 0px rgba(0, 0, 0, 0.00), 0px 241px 96px 0px rgba(0, 0, 0, 0.01), 0px 135px 81px 0px rgba(0, 0, 0, 0.05), 0px 60px 60px 0px rgba(0, 0, 0, 0.09), 0px 15px 33px 0px rgba(0, 0, 0, 0.10);
}

.quote_form_sec .get_started .form_sec {
    padding: 60px 30px 20px 0px;
    position: relative;
    overflow: hidden;
}
.quote_form_sec .form_sec::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 10;
    background-image: url(../img/starWaterMark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.quote_form_sec .form_sec a{
    color: black;
    text-decoration: underline;
}
.quote_form_sec.agentForm .form_sec::before{
    display: none;
}
.quote_form_sec.agentForm .quote_image .infoDiv{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding-bottom: 30px;
}
.quote_form_sec.agentForm .quote_image .infoDiv h2,
.quote_form_sec.agentForm .quote_image .infoDiv p{
    color: white;
}
.quote_form_sec.agentForm .quote_image .infoDiv .para{
    margin: 0;
}
.quote_form_sec.agentForm .quote_image::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/agentProfileFormShade.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.quote_image {
    width: 100%;
    height: 700px;
    border-radius: 0.625rem;
    overflow: hidden;
    position: relative;
}
.quote_form_sec.agentForm .quote_image{
    height: 800px;
}

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

.form_heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.form_heading h3 {
    color: var(--primary);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 3rem;
}

.form_heading p {
    color: #000;
    font-family: Lexend Deca;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.625rem;
    /* 130% */
    letter-spacing: -0.05rem;
}

.form_sec .form-control {
    border-radius: 0.3125rem;
    border: 1px solid #002954;
    padding: 10px 20px;
    position: relative;
    z-index: 8;
    background-color: transparent;
}

.form_sec .form-label {
    color: #000;
    font-family: Lexend Deca;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.625rem;
    /* 173.333% */
    letter-spacing: -0.0375rem;
    position: relative;
    z-index: 8;
}
/* .quote_form_sec .formCaption{
    font-size: 12px;
    font-family: "Lexend Deca";
    font-weight: 300;
    color: black;
    text-align: left;
    width: 100%;
    max-width: 30%;
} */


.site-footer {
    /* background: #121F27; */
    background: url(../img/footer-bg.webp) no-repeat center center/cover;
    color: #fff;
    padding: 60px 20px 30px;
    font-size: 1rem;
}

.site-footer .row>div:not(:first-child) {
    padding-left: 1.5rem;
}

.footer_logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer_logo .footer-logo {
    max-width: 300px;
}

.footer-about {
    color: #FFF;
    font-family: Lexend Deca;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
}

.in-footer-widget a h5 {
    color: #FFF;
    font-family: Lexend Deca;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4375rem;
    margin-bottom: 6px;
}

.footer-badge img:not(.ssl_certificate_img) {
    width: 6.25rem;
    height: 6.6875rem;
    flex-shrink: 0;
    aspect-ratio: 100/107;
    display: block;
}

.footer-badge .ssl_certificate {
    color: #FFF;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
}

.ssl_certificate_img {
    width: 5.52081rem;
    height: 2.1875rem;
    flex-shrink: 0;
    aspect-ratio: 88.33/35.00;
}

.footer-badge p {
    font-size: 1.125rem;
    color: #fff;
    margin-top: 1rem;
}

.footer-heading {
    margin-bottom: 15px;
    color: #FFF;
    font-family: Lexend Deca;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-links {
    /* list-style: none; */
    padding: 0px 15px;
    margin: 0;
}

.footer_contact_list {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #FFF;
    font-family: Lexend Deca;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5625rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.footer-links a i {
    margin-top: 0.25rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    color: #ccc;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-social a:hover {
    color: #fff;
}

.footer-review-bar p {
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.footer-bottom {
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom .footer-disclaimer {
    color: #FFF;
    text-align: center;
    font-family: Lexend Deca;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    word-break: break-all;
}


@media (min-width: 992px) {
    .site-footer .row>div {
        position: relative;
    }

    .site-footer .row>div:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        border-left: 2px dashed #99A0A1;
        height: 97%;
    }
    .boxes:not(.slick-initialized) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.footer-badge {
    padding-left: 10px;
}

.footer-review-bar p {
    color: #FFF;
    text-align: center;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0px;
}

.footer-review-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.connect_with_us {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    margin-top: 40px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 200px;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--white);
}

/* Contact Us Page Start */
.form-info .box{
    width: 100%;
    max-width: 90%;
}
.form-info p{
    font-size: 20px;
    font-family: "Lexend Deca";
    font-weight: 400;
    color: white;
}
.form-info__bg {
    background: url(../img/form-info-bg.png) no-repeat center center/cover;
    border-radius: 0.625rem;
    padding: 4rem;
}
.form-info__bg.trusted_guide{
    background: url(../img/firstHomeBuyerPic.png) no-repeat top center/cover;
}
.form-info__bg.refinance_solutions{
    background: url(../img/refinanceSolutionsPic.png) no-repeat top center/cover;
    border-radius: 40px;
}
.form-info__bg.rehab_loans{
    background: url(../img/rehabParaBg.png) no-repeat top center/cover;
}
.form-info__bg.reverse_mortgage{
    background: url(../img/reverseMortgage.png) no-repeat top center/cover;
}
.form-info__bg.jumbo_home_loan{
    background: url(../img/jumbo_home_loan.png) no-repeat top center/cover;
}
.form-info__bg.non_qm{
    background: url(../img/non_qm.png) no-repeat top center/cover;
}
.form-info__bg.asset_depletion{
    background: url(../img/asset_depletion.png) no-repeat top center/cover;
}
.form-info__bg.dscr{
    background: url(../img/dscr.png) no-repeat bottom center/cover;
}
.form-info__bg.forbearnceRefinance{
    background: url(../img/forbearnceRefinance.png) no-repeat center left/cover;
}
.form-info__bg.fixed_mortgage{
    background: url(../img/fixedMortgage.png) no-repeat top center/cover;
}
.form-info__bg.stated_Income{
    background: url(../img/stated_Income.png) no-repeat center center/cover;
}
.form-info__bg.cash_offer{
    background: url(../img/cash_offer.png) no-repeat center center/cover;
}
.form-info__bg.investment_property{
    background: url(../img/investment_property.png) no-repeat center center/cover;
}
.form-info__bg.va_home_loan{
    background: url(../img/va_home_loan_pic.png) no-repeat center center/cover;
}
.form-info__bg.agent_profile{
    background: url(../img/agent_profile.png) no-repeat center center/cover;
}
.form-info__bg.join_our_team{
    background: url(../img/join_our_team.png) no-repeat center center/cover;
}
.form-info__bg.agent_profile .title{
    width: 60%;
}
.form-info {
    padding: 4rem 0;
}

.form-info .title {
    width: 50%;
    font-size: 2.75rem;
    color: var(--white);
}

.form-info p {
    color: var(--white);
}
.form-info a{
    font-size: 20px;
    font-weight: 500;
    color: #002954;
    border: 2px solid white;
    background-color: white;
    padding: 10px 30px;
    border-radius: 10px;
}
.form-info a:hover{
    color: white;
    background-color: transparent;
}

.form-info__bgCards {
    margin-top: 3rem;
}

.form-info__bgCard {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.form-info__bgCard>img {
    width: 30px;
}

.form-info__bgCard-content h4 {
    font-size: 2rem;
    color: var(--white);
    text-decoration: 1px underline;
    margin-bottom: 0.5rem;
}
.form-info__bg .nmlsText{
    font-weight: 600;
}

.form-info__bgCard-content :is(p, a) {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white) !important;
    display: block;
    margin: 0;
    background-color: transparent;
}

/* Contact Us Page End */

/* Drop-down Start */
.drop-down {
    position: relative;
}

.drop-down ul {
    width: 200px;
    background: #ffffffbb;
    backdrop-filter: blur(10px);
    z-index: 999;
    list-style: none;
    padding: 0.25rem;
    display: none;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 0;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .drop-down ul {
        position: absolute;
        top: 100%;
        left: 0;
    }

    .drop-down:hover ul {
        display: block;
    }

    .drop-down--lg ul {
        width: 600px;
        column-count: 2;
        padding: 10px;
    }
    .drop_down__about ul{
        column-count: 1;
        padding: 10px;
        width: 250px;
    }
    .drop_down__about ul li{
        min-height: 40px;
        width: 100%;
    }
    .drop_down__about ul li a{
        column-count: 1;
        color: var(--black);
        padding: 5px;
        width: 100%;
    }
    .drop_down__about ul li a:hover{
        background-color: #002954;
        border-radius: 10px;
        color: var(--white);
    }
    .drop-down--lg ul li{
        min-height: 40px;
    }
    .drop-down--lg ul li a{
        color: black;
        width: 100%;
        padding: 6px;
    }
    .drop-down--lg ul li a:hover{
        background-color: #002954;
        border-radius: 10px;
        color: var(--white);
    }
}

/* Mobile/Tablet Styles */
@media (max-width: 991.98px) {
    .drop-down ul {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        background: #ffffff;
        backdrop-filter: none;
    }

    .drop-down--lg ul {
        column-count: 1;
    }

    .offcanvas-body .navbar-nav .nav-item .nav-link::before,
    .offcanvas-body .navbar-nav .nav-item .nav-link::after{
        display: none;
    }
    .offcanvas-body .navbar-nav .nav-item .nav-link {
        margin: 0px 0px;
    }

    /* Make dropdown clickable on mobile */
    .drop-down > .nav-link {
        position: relative;
        padding-right: 1.5rem;
    }

    .drop-down > .nav-link::after {
        content: "+";
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
    }

    .drop-down.active > .nav-link::after {
        transform: rotate(45deg);
    }

    .drop-down.active ul {
        display: block;
        padding: 10px 6px;
    }
    .drop-down.active ul li a{
        color: var(--black);
        width: 100%;
        padding: 6px;
        border-radius: 10px;
    }
    .drop-down.active ul li a:hover{
        background-color: #002954;
        color: var(--white);
    }


    .ceo_message_section {
        text-align: center;
    }
    .ceo_message_section .ceo-img {
        margin-bottom: 30px;
    }
}


/* Drop-down End */

/* Home Page CSS */
    .insta_section .heading{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    /* .insta_section .heading h1{
        background-color: #002954;
        color: white;
        border-radius: 20px;
        padding: 10px 20px;
    } */

/* Refinance Page Start */

    .boxBanner{
        margin: 40px 0px 0px;
    }
    .boxBanner .box{
        border: 2px solid white;
        border-radius: 40px;
        padding: 30px;
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
        background-color: rgb(0, 0, 0, 80%);
    }
    .forbearnceRefinance .box{
       max-width: 95%;
    }
    .va_home_loan .box{
       max-width: 95%;
    }
    .boxBanner .box h2{
        font-size: 40px;
        font-family: "Lexend Deca";
        font-weight: 700;
        color: white;
        margin: 0 auto;
        padding: 10px 20px;
        text-align: center;
        /* text-decoration: underline; */
        background-color: #002954;
        width: fit-content;
        border-radius: 20px;
        text-transform: capitalize;
    }
    .boxBanner .box p{
        font-size: 24px;
        margin: 20px auto;
        font-family: "Lexend Deca", sans-serif;
        font-weight: 300;
        text-align: center;
        color: white;
    }
    .boxBanner .box ul li{
        list-style-type: disc;
        font-size: 28px;
        margin: 20px auto;
        font-family: "Lexend Deca", sans-serif;
        font-weight: 300;
        text-align: center;
        color: white;
    }
    .boxBanner.adult__family__boxBanner .box ul li{
        width: fit-content;
    }
    .bgImg{
        padding: 60px;
        border-radius: 40px;
    }
    .bgImg.refinance_solutions{
        background: url(../img/refinanceSolutionsPic.png) no-repeat top center/cover;
    }
    .bgImg.rehab_loans{
        background: url(../img/rehabPic.png) no-repeat top center/cover;
    }
    .bgImg.trusted_guide{
        background: url(../img/firstHomeBuyerPic.png) no-repeat top center/cover;
    }
    .bgImg.reverse_mortgage{
        background: url(../img/reverseMortgage.png) no-repeat top center/cover;
    }
    .bgImg.fixed_mortgage{
        background: url(../img/fixedMortgage.png) no-repeat top center/cover;
    }
    .bgImg.jumbo_home_loan{
        background: url(../img/jumbo_home_loan.png) no-repeat top center/cover;
    }
    .bgImg.non_qm{
        background: url(../img/non_qm.png) no-repeat top center/cover;
    }
    .bgImg.asset_depletion{
        background: url(../img/asset_depletion.png) no-repeat top center/cover;
    }
    .bgImg.dscr{
        background: url(../img/dscr.png) no-repeat bottom center/cover;
    }
    .bgImg.forbearnceRefinance{
        background: url(../img/forbearnceRefinance.png) no-repeat center left/cover;
    }
    .bgImg.stated_Income{
        background: url(../img/stated_Income.png) no-repeat center center/cover;
    }
    .bgImg.cash_offer{
        background: url(../img/cash_offer.png) no-repeat center center/cover;
    }
    .bgImg.investment_property{
        background: url(../img/investment_property.png) no-repeat center center/cover;
    }
    .bgImg.va_home_loan{
        background: url(../img/VAHomeLoanParaBg.png) no-repeat center center/cover;
    }
    .bgImg.va_home_loan.secondBox{
        background: url(../img/va_home_loan_pic.png) no-repeat center center/cover;
    }
    .bgImg.bridge_loan{
        background: url(../img/bridge_loan.png) no-repeat center center/cover;
    }
    .bgImg.low_down_payment_loan{
        background: url(../img/low_down_payment_loan.png) no-repeat center center/cover;
    }
    .bgImg.low_down_payment_loan.secondBox{
        background: url(../img/low_down_payment_loan_two.png) no-repeat center center/cover;
    }
    .bgImg.usda_loan{
        background: url(../img/usdaLoanParaOne.png) no-repeat center center/cover;
    }
    .bgImg.fha_home_loan{
        background: url(../img/FHAHomeLoanPic.png) no-repeat center center/cover;
    }
    .bgImg.pre_qualify{
        background: url(../img/pre_qualify_pic.png) no-repeat center center/cover;
    }
    .bgImg.career{
        background: url(../img/career.png) no-repeat center center/cover;
    }
    .bgImg.adult_family_home{
        background: url(../img/homeOwnerBgImg.png) no-repeat center center/cover;
    }




/* Specialties Start */
    .specialties-box{
        box-shadow: 0px 25px 67px 0px rgb(0, 0, 0, 25%);
        border-radius: 10px;
        background-color: white;
        padding: 2rem 3.5rem;
    }
    .specialties-box__list{
        padding: 0;
        margin: 0;
    }
    .specialties-box__list li{
        min-height: 4px;
    }
    .specialties-box__list li::marker{
        color: #002954;
        font-size: 30px;
    }
    .specialties-box__list li + li{
        margin-top: 0.5rem;
    }
    .specialties-box__list li a{
        font-size: 1.125rem;
        font-weight: 500;
        color: black;
        line-height: 1.25;
    }
/* Specialties End */


/* ensuring__smooth__Path Start */
    .ensuring__smooth__Path .headingDiv{
        margin: 60px 0 40px 0;
    }
    .ensuring__smooth__Path .headingDiv h2{
        font-size: 40px;
        font-family: "Lexend Deca";
        font-weight: 700;
        color: #002954;
        text-align: center;
    }
    .ensuring__smooth__Path .subHeadingDiv{
        margin-top: 50px;
    }
    .ensuring__smooth__Path .subHeadingDiv p{
        font-size: 24px;
        font-family: "Lexend Deca";
        font-weight: 300;
        color: black;
        text-align: center;
        max-width: 80%;
        margin: 0 auto;
    }
    .ensuring__smooth__Path .ensuring_box{
        box-shadow: 0px 25px 67px 0px rgb(0, 0, 0, 25%);
        border-radius: 10px;
        background-color: white;
        padding: 20px;
    }
    .ensuring__smooth__Path .ensuring_box h3{
        font-size: 24px;
        font-family: "Lexend Deca";
        font-weight: 600;
        color: #002954;
        margin-bottom: 10px;
        text-align: center;
        min-height: 60px;
    }
    .ensuring__smooth__Path .ensuring_box p{
        font-size: 20px;
        font-family: "Lexend Deca";
        font-weight: 400;
        color: black;
        margin: 0px;
        text-align: center;
        min-height: 350px;
    }



    .ensuring__smooth__Path.join__our__team {
        position: relative; /* Required for pseudo-element positioning */
        overflow: hidden;
        padding: 0px 0 80px;
    }
    .ensuring__smooth__Path.join__our__team::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(../../assets/img/logo-blue.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        opacity: 8%; /* Adjust this value (0.1 to 0.5) for desired transparency */
        z-index: -1; /* Places the image behind the content */
    }
    .ensuring__smooth__Path.join__our__team .ensuring_box h3{
        min-height: 60px;
        background-color: #9DA0A0;
        border: 2px solid #002954;
        border-radius: 10px;
        padding: 4px 2px 2px;
        align-content: center;
    }
    .ensuring__smooth__Path.join__our__team .ensuring_box ul li{
        font-size: 1.125rem;
        font-family: "Lexend Deca";
        font-weight: 400;
        color: black;
        margin: 0px;
    }

    .ensuring__smooth__Path.join__our__team .ensuring_box ul{
        height: 225px;
        overflow-y: auto;
    }
/* ensuring__smooth__Path end */

/* Button Link Section */
    .buttonLinkSection{
        padding: 40px 0 40px;
    }
    .buttonLinkSection h2{
        background-color: #002954;
        color: var(--white);
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    .buttonLinkSection a{
        color: var(--black);
        text-align: center;
        text-decoration: underline;
        width: 100%;
        font-size: 24px;
    }
    .buttonLinkSection p{
        text-align: center;
    }
/* Button Link Section */


/* exploring__top__loans Start */
    .exploring__top__loans{
        margin-bottom: 80px;
    }
    .exploring__top__loans .ensuring_box p{
        min-height: 150px;
    }
/* exploring__top__loans end */


/* benefits__of__mortgage Start */
    .benefits__of__mortgage .ensuring_box h3{
        min-height: 0px;
    }
    .benefits__of__mortgage .ensuring_box p{
        min-height: 180px;
    }
/* benefits__of__mortgage End */


/* simple__loan__options Start */
    .simple__loan__options .ensuring_box h3{
        min-height: 60px;
    }
    .simple__loan__options .ensuring_box p{
        min-height: 280px;
    }
/* simple__loan__options End */


/* understanding__the__mechanics Start */
    .understanding__the__mechanics{
        position: relative;
        overflow: hidden;
        padding: 30px 0 80px;
    }
    .understanding__the__mechanics .starOne{
        position: absolute;
        top: 30%;
        left: 0;
        transform: rotateY('-90deg');
        z-index: -1;
    }
    .understanding__the__mechanics .starTwo{
        position: absolute;
        top: 30%;
        right: 0;
        z-index: -1;
    }
    .understanding__the__mechanics .ensuring_box p{
        min-height: 210px;
    }
/* understanding__the__mechanics End */


/* understanding__fixed__rate Start */
    .understanding__fixed__rate .ensuring_box p{
        min-height: 210px;
    }
/* understanding__fixed__rate End */


    .paragraphBanner{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .paragraphBanner .box{
        background-color: #002954;
        border-radius: 20px;
        box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 25%);
        padding: 60px 40px;
    }
    .paragraphBanner .box h6{
        font-size: 40px;
        font-family: "Lexend Deca";
        font-weight: 600;
        color: white;
        margin-bottom: 10px;
        text-align: center;
    }
    .paragraphBanner .box p{
        font-size: 24px;
        font-family: "Lexend Deca";
        font-weight: 400;
        color: white;
        text-align: center;
        margin: 0 auto;
        max-width: 90%;
    }
    .paragraphBanner.greyParagraphBanner .box{
        background-color: #9DA0A0;
        padding: 40px 20px;
    }
    .paragraphBanner.greyParagraphBanner .box h6{
        color: black;
    }
    .paragraphBanner.greyParagraphBanner .box p{
        color: black;
    }
    .paragraphBanner.whiteParagraphBanner .box{
        background-color: transparent;
        padding: 40px 20px;
        box-shadow: none;
    }
    .paragraphBanner.whiteParagraphBanner .box h6{
        color: #002954;
    }
    .paragraphBanner.whiteParagraphBanner .box p{
        color: black;
    }



    .faq {
        display: flex;
        justify-content: center;
        align-content: center;
        margin: 2rem 0;
    }
    .faq .faqDiv {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    .faqDiv .heading {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    .faqDiv .heading h2 {
        font-size: 40px;
        font-weight: 600 !important;
        font-family: "Lexend Deca";
        color: white;
        background-color: #002954;
        padding: 10px 30px;
        border-radius: 10px;
    }
    .accordion-item {
        margin-bottom: 10px;
        background-color: none;
        border: none;
    }
    .accordion-button {
        font-size: 24px;
        font-weight: 400 !important;
        font-family: "Lexend Deca";
        color: #002954;
        background-color: #99A0A1;
        border-radius: 20px !important;
        z-index: 8;
    }
    .accordion-button::after {
        display: none;
    }
    .accordion-button:hover {
        color: #002954;
    }
    .accordion-button:focus {
        border: none !important;
        box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) {
        color: #002954;
        background-color: #99A0A1;
    }
    .accordion-body {
        margin-top: -10px;
        border: 2px solid black;
        border-radius: 20px;
        padding: 40px 0 20px;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .accordion-body p {
        font-size: 20px;
        font-weight: 400 !important;
        font-family: "Lexend Deca";
        color: black;
        width: 100%;
        max-width: 90%;
    }



    .contactBtn{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .contactBtn .box{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 40px 30px;
        background-image: url(../../assets/img/ctaDownBannerBgPic.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 25%);
        position: relative;
    }
    .contactBtn .box::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #002954;
        opacity: 30%;
        border-radius: 20px;
    }
    .contactBtn .box h6{
        font-size: 40px;
        font-family: "Lexend Deca";
        font-weight: 500;
        color: white;
        margin-bottom: 20px;
        max-width: 60%;
        text-align: center;
        z-index: 8;
    }
    .contactBtn .box a {
        font-size: 30px;
        font-weight: 500;
        font-family: "Lexend Deca";
        color: #002954;
        text-transform: capitalize;
        border-radius: 20px;
        background-color: #ffffff;
        padding: 10px 30px;
        z-index: 8;
    }
    .contactBtn .box a:hover {
        background-color: #002954;
        color: rgb(255, 255, 255);
    }
/* Refinance Page End */


/* First Time Home Buyer Page Start */

    .firstHome__bg{
        background-image: url('../../assets/img/firstHomeBuyerBannerBg.png');
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
    }

/* First Time Home Buyer Page Start */

/* Low Down Payment Options Page Start */

    .smartProcess {
        padding-top: 50px;
        margin-bottom: 100px;
    }
    .smartProcess .heading {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 60px;
    }
    .smartProcess .heading h2 {
        font-size: 40px;
        font-weight: 600 !important;
        font-family: "Lexend Deca";
        color: white;
        background-color: #002954;
        border-radius: 10px;
        padding: 10px 10px;
    }
    .smartProcess .heading a{
        font-size: 40px;
        font-weight: 600 !important;
        font-family: "Lexend Deca";
        color: white;
        background-color: #002954;
        border-radius: 10px;
        padding: 10px 10px;
        border: 2px solid #002954;
    }
    .smartProcess .heading a:hover{
        background-color: transparent;
        color: #002954;
    }
    .smartProcess .box {
        padding: 40px 20px 20px;
        position: relative;
        border: 2px solid #002954;
        border-radius: 20px;
    }
    .smartProcess.low__down__payment .box .number{
        top: -10%;
    }
    .smartProcess  .box .number {
        font-size: 40px;
        font-weight: 600 !important;
        font-family: "Lexend Deca";
        color: #002954;
        border: 1px solid #002954;
        background-color: white;
        padding: 5px 5px;
        border-radius: 20px;
        position: absolute;
        top: -16%;
        left: 8%;
    }
    .smartProcess .box h6 {
        font-size: 24px;
        font-weight: 600 !important;
        font-family: "Lexend Deca";
        color: #002954;
        text-align: center;
        min-height: 50px;
    }
    .smartProcess.low__down__payment .box p {
        min-height: 280px;
    }
    .smartProcess .box p {
        font-size: 20px;
        font-weight: 300 !important;
        font-family: "Lexend Deca";
        color: black;
        text-align: center;
        min-height: 110px;
    }
    /* Combined Hover Styles */
    .smartProcess .box:hover{
        background-color: #002954;
        cursor: pointer;
    }
    .smartProcess .box:hover p{
        color: var(--white);
    }
    .smartProcess .box:hover h6,
    .smartProcess .box:hover p {
        color: white;
    }
    .smartProcess .box:hover .number{
        color: white;
        background-color: #99A0A1;
        border-color: #99A0A1;
    }
/* Low Down Payment Options Page End */


/* Fixed Rate Mortgage Buyer Page Start */

    .headingSection{
        padding: 60px 0 60px;
        overflow-x: hidden;
        background-color: #002954;
    }
    .headingSection .heading h1{
        font-size: 40px;
        font-family: "Lexend Deca";
        font-weight: 700;
        color: white;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .refinance_solutions .title{
        width: 100%;
    }
/* Fixed Rate Mortgage Buyer Page End */


/* Meet Our Team Page Start */

    .profileCard{
        padding: 80px 0 60px;
    }
    .profileCard a{
        width: 100%;
    }
    .profileCard .quote_image .infoDiv{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        z-index: 8;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        padding-bottom: 30px;
    }
    .profileCard .quote_image .infoDiv h2,
    .profileCard .quote_image .infoDiv p{
        color: white;
    }
    .profileCard .quote_image .infoDiv .para{
        margin: 0;
    }
    .profileCard .quote_image::after{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background-image: url(../img/agentProfileFormShade.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 0;
    }

    .profileCard .quote_image {
        width: 100%;
        height: 500px;
        border-radius: 0.625rem;
        overflow: hidden;
        position: relative;
    }

    .profileCard .quote_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Meet Our Team Page End */


/* Career Page Start */
    .search_job_form{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        margin-top: 60px;
    }
    .search_job_form .starOne{
        position: absolute;
        top: 0;
        left: 0;
        width: 20%;
    }
    .search_job_form .starTwo{
        position: absolute;
        top: 0;
        right: 0;
        width: 20%;
    }
    .search_job_form .formBox{
        width: 100%;
        max-width: 60%;
        border: 3px solid #002954;
        border-radius: 50px;
        padding: 20px 0px;
        margin: 0 auto;
        box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 25%);
    }
    .search_job_form .formBox form{
        width: 100%;
        max-width: 80%;
        margin: 0 auto 20px;
    }
    .search_job_form .formBox form .label{
        font-size: 20px;
        color: black;
        font-family: "Lexend Deca";
        font-weight: 400;
    }
    .search_job_form .formBox form .labelInput{
        font-size: 16px;
        color: black;
        font-family: "Lexend Deca";
        font-weight: 400;
        width: 100%;
        max-width: 90%;
        padding: 5px 10px;
        border: 2px solid #002954;
        border-radius: 10px;
    }
    .search_job_form .formBox form .labelInput::placeholder{
        font-size: 16px;
        color: black;
        font-family: "Lexend Deca";
        font-weight: 400;
    }
    .search_job_form .formBox form .in-btn-1{
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .search_job_form .formBox form .in-btn-1 .formBtn{
        font-size: 16px;
        color: white;
        font-family: "Lexend Deca";
        font-weight: 400;
        background-color: #002954;
        border: 2px solid #002954;
        border-radius: 10px;
        padding: 0px 20px;
    }
    .search_job_form .formBox form .in-btn-1 .formBtn:hover{
        background-color: transparent;
        color: black;
    }
    .search_job_form .formBox form .checkboxDiv{
        padding: 10px 0px;
        margin: 0 0 0 0;
        gap: 20px;
    }
    input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        border: 2px solid #002954;
        border-radius: 50%;
        outline: none;
        cursor: pointer;
        vertical-align: middle;
        position: relative;
        margin-right: 0px;
    }
    /* Style for checked checkboxes */
    input[type="checkbox"]:checked {
        background-color: #002954;
        border-color: white;
    }
    .formBox form .checkboxDiv label{
        font-size: 14px;
        color: black;
        font-family: "Lexend Deca";
        font-weight: 400;
    }
    .formBox form .checkboxDiv .careersFreelance{
        margin-right: 10px;
    }
    .formBox form .checkboxDiv .careersIntership{
        margin-right: 10px;
    }
    .search_job_form .formBox hr{
        border: 0;          /* Remove default border */
        height: 2px;        /* Adjust thickness */
        background-color: #002954; /* Set color */
        opacity: 100%;
        margin: 10px 0;     /* Optional: Adjust spacing */
    }
    .search_job_form .formBox a{
        padding: 10px 30px 0 30px;
    }
    .search_job_form .formBox a .imgDiv{
        padding: 8px;
        border: 2px solid #002954;
        border-radius: 50%;
        margin-right: 10px;
    }
    .search_job_form .formBox a .imgDiv img{
        width: auto;
        height: 30px;
    }
    .search_job_form .formBox a .title h5{
        font-size: 14px;
        font-family: "Lexend Deca";
        font-weight: 400;
        color: black;
        margin: 0;
    }
    .search_job_form .formBox a .placeName{
        font-size: 14px;
        font-family: "Lexend Deca";
        font-weight: 400;
        color: black;
        margin: 0;
    }
    .search_job_form .formBox a .caption{
        font-size: 14px;
        font-family: "Lexend Deca";
        font-weight: 600;
        color: #002954;
        margin: 0;
    }
    .search_job_form .formBox a .timeCaption{
        font-size: 14px;
        font-family: "Lexend Deca";
        font-weight: 400;
        color: black;
        margin: 0;
    }
/* Career Page End */


/* Get A Quote Page Start */

    .getQuoteFormSection{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .getQuoteFormSection form{
        margin-top: 30px;
        border-radius: 15px;
        padding: 20px 30px 30px;
        position: relative;
        overflow: hidden;
        box-shadow: inset 0px 4px 4px 0 rgb(0 0 0 / 25%), 4px 4px 10px 0 rgb(0 0 0 / 25%);
    }
    .getQuoteFormSection form .starOne{
        position: absolute;
        top: 0;
        left: 0;
        transform: rotateY('-90deg');
        z-index: -1;
        max-width: 40%;
    }
    .getQuoteFormSection form .starTwo{
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        max-width: 40%;
    }


    .get-a-quote-form-heading{
        font-size: 40px;
    }
    .get-a-quote-stepper h2{
        font-size: 30px;
        margin: 0 0 20px;
    }
    .get-a-quote-stepper .form-group label{
        font-size: 20px;
        color: black;
        margin: 0;
    }
    .get-a-quote-stepper .text-labelHeading{
        font-size: 20px;
        color: black;
        margin: 0;
        font-family: 300;
    }
    .get-a-quote-stepper .form-group input{
        box-shadow: inset 0px 4px 4px 0px rgb(0 0 0 / 25%), 4px 4px 10px 0 rgb(0 0 0 / 25%);
        border: none;
        padding: 10px 10px;
        font-size: 16px;
        color: rgb(0, 0, 0);
        /* background-color: white; */
    }
    .get-a-quote-stepper .form-group input::placeholder{
        font-size: 16px;
        color: rgb(0, 0, 0);
    }
    .get-a-quote-stepper .form-select{
        box-shadow: inset 0px 4px 4px 0px rgb(0 0 0 / 25%), 4px 4px 10px 0 rgb(0 0 0 / 25%);
        border: none;
        padding: 10px 10px;
        font-size: 16px;
        color: rgb(0, 0, 0);
        background-color: white;
    }
    .getQuoteFormSection form .tristarBtn{
        font-size: 20px;
        font-family: "Lexend Deca";
        color: white;
        background-color: #002954;
        border: 2px solid #002954;
        border-radius: 15px;
        padding: 5px 60px;
    }
    .getQuoteFormSection form .tristarBtn:hover{
        color: rgb(0, 0, 0);
        background-color: transparent;
    }


    #get-a-quote-stepper-form .card {
        border-radius: 8px !important;
    }

    .selectLoanType .card-body img {
        max-width: 100px;
        margin: auto;
    }

    .selectLoanType .card-body label {
        position: relative;
    }

    .selectPropertyType .card-body label {
        position: relative;
    }

    .selectPropertyUse .card-body label {
        position: relative;
    }

    .selectCredit .card-body label {
        position: relative;
    }

    .downPayment .card-body label {
        position: relative;
    }

    .militaryService .card-body label {
        position: relative;
    }

    .expectToBuyWithin .card-body label {
        position: relative;
    }

    .selectLoanType input[name='selectLoanType']:checked {
        border: 1px solid #183d58;
    }

    .selectPropertyType input[name='selectPropertyType']:checked {
        border: 1px solid #183d58;
    }

    .selectPropertyUse input[name='selectPropertyUse']:checked {
        border: 1px solid #183d58;
    }

    .selectCredit input[name='selectCredit']:checked {
        border: 1px solid #183d58;
    }

    .downPayment input[name='downPayment']:checked {
        border: 1px solid #183d58;
    }

    .militaryService input[name='militaryService']:checked {
        border: 1px solid #183d58;
    }

    .expectToBuyWithin input[name='expectToBuyWithin']:checked {
        border: 1px solid #183d58;
    }

    #get-a-quote-stepper-form input[type='radio'] {
        -webkit-appearance: none;
        appearance: none;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
    }

    #get-a-quote-stepper-form .rowGap {
        row-gap: 25px;
    }

    .quoteStepperActionBar {
        position: sticky;
        bottom: 0;
        background: #fff;
    }

    .get-a-quote-stepper-item {
        display: none;
    }

    .get-a-quote-stepper-item.active {
        display: block;
    }

    #quoteSubmitBtn {
        display: none;
        margin-left: auto;
    }

    #quoteNextBtn {
        margin-left: auto;
    }

    #get-a-quote-stepper-form {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 40px 30px;
    }

    .get-a-quote-stepper h1 {
        color: #183d58;
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        margin: 20px 0;
    }

    .get-a-quote-form-heading {
        color: #183d58;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 20px 0;
    }

    #getQuoteSubmitBtn {
        display: none;
    }

    .errorMsg {
        font-size: 14px;
        color: #cf0101;
        /*padding: 13px;*/
    }
/* Get A Quote Page End */

/* Profile Landing Page Start */

.brand__logo{
    display: none;
}

.ceo_message_section.profileBanner {
    overflow: hidden;
}
.ceo_message_section.profileBanner .profilePicDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.ceo_message_section.profileBanner .ceo-img {
    position: relative;
    z-index: 2;
    width: 28.75rem;
    height: 30.6875rem;
    border-radius: 0.9375rem;
    margin: 0 auto;
    object-fit: cover;
}
.ceo_message_section.profileBanner .bg-square {
    position: absolute;
    z-index: 1;
    border-radius: 0.625rem;
}
.ceo_message_section.profileBanner .square-1 {
    top: 104px;
    left: 60px;
    width: 24.5625rem;
    height: 24.25rem;
    background: rgba(0, 41, 84, 0.40);
}
.ceo_message_section.profileBanner .square-2 {
    bottom: 0px;
    left: 60px;
    width: 18.9375rem;
    height: 17.125rem;
    background: rgb(0, 41, 84);
}
.ceo_message_section.profileBanner .para .link{
    color: #002954;
    text-decoration: underline;
}
.ceo_message_section.profileBanner .starBox{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.ceo_message_section.profileBanner .starBox img{
    width: 100%;
    max-width: 4%;
}
.ceo_message_section.profileBanner .btnDiv{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.ceo_message_section.profileBanner .btnDiv .linkBtn{
    font-size: 20px;
    font-family: "Lexend Deca";
    font-weight: 400;
    color: white;
    background-color: #002954;
    border: 2px solid #002954;
    border-radius: 5px;
    padding: 0px 30px;
}
.ceo_message_section.profileBanner .linkBtn:hover{
    background-color: transparent;
    color: black;
}
.ceo_message_section.profileBanner .blueShade{
    position: absolute;
    top: -200px;
    right: -400px;
    z-index: 0;
    opacity: 60%;
    max-width: 35%;
}
.ceo_message_section.profileBanner .centerBlueShade {
    position: absolute;
    top: 40%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 40%;
    max-width: 35%;
    right: auto;
}
.ceo_message_section.profileBanner .star{
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 0;
    max-width: 25%;
}
.ceo_message_section.profileBanner .para.agentAboutPara{
    font-size: 20px;
}
.ceo_message_section.agentAbout  .square-1{
    left: -20px;
}

.twoSideBanner{
    margin-top: 50px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.twoSideBanner .borderBox{
    width: 100%;
    max-width: 95%;
    border: 3px solid #002954;
    border-radius: 20px;
    padding: 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.twoSideBanner .content{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position: relative;
}
.twoSideBanner .content::before{
    position: absolute;
    content: "";
    top: 0;
    left: -10%;
    width: 100%;
    height: 100%;
    background-image: url(../img/waterMarkLeft.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.twoSideBanner .imageDiv{
    display: flex;
    justify-content: end;
    align-items: center;
}
.twoSideBanner .imageDiv img{
    border: 3px solid #002954;
    border-radius: 20px;
}



.youtube__heading{
    margin-top: 30px;
    padding: 60px 0;
    background-color: #002954;
    box-shadow: 0px 7px 10px 0 rgba(0, 0, 0, 25%);
}
#videoSec{
    padding: 30px 0 60px;
    overflow: hidden;
}
#videoSec .videoBtn{
    font-size: 16px;
    font-family: "Lexend Deca";
    font-weight: 400;
    color: white;
    margin: 0 auto;
    background-color: #002954;
    border: 2px solid #002954;
    border-radius: 20px;
}
#videoSec .videoBtn:hover{
    color: black;
    background-color: transparent;
}
#gallerySlider {
    position: relative;
}
.swiper-button-prev {
    left: -50px  !important;
    color:#002953 !important;
}
.swiper-button-next {
    right: -50px !important;
    color:#002953 !important;
}


.insta_section .heading h1{
    font-size: 40px;
}
/* Profile Landing Page End */


    .offcanvas-body .top__head__list{
        display: none;
    }

/* Adult Family Home Financing Page Start */

    .adult__about{
        padding: 30px 0;
        margin: 60px 0;
        border: 3px solid #002954;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0px 7px 4px 0px rgba(0, 0, 0, 25%);
    }
    .adult__about .adultFamilyHomePic{
        border-radius: 30px;
        border: 2px solid #002954;
        box-shadow: -11px 14px 12px 0 rgba(0, 0, 0, 25%);
    }
    .adult__about .adult__about__content{
        position: relative;
        min-height: 0; /* Allows column to shrink below content size if needed */
        height: auto; /* Default height behavior */
    }
    .adult__about .adult__about__content::before{
        position: absolute;
        content: "";
        right: 0%;
        width: 100%;
        height: 100%;
        background-image: url(../img/waterMarkRight.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .adult__about .adult__about__content .para{
        font-size: 30px;
        line-height: 50px;
    }

    .smartProcess.adult__family__home .box h6{
        min-height: 30px;
    }
    .smartProcess.adult__family__home .box p{
        min-height: 100px;
    }


    .formSection {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        border: 3px solid #002954;
        border-radius: 20px;
        padding: 80px 0;
        margin-bottom: 80px;
        overflow: hidden;
    }
    .formSection .starWaterMark {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotateY(180deg);
    }
    .formSection .row {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .formSection .row .formSectionDiv {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 6;
    }
    .formSectionDiv .heading {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px
    }
    .formSectionDiv .heading h2 {
        font-size: 40px;
        font-weight: 600 !important;
        font-family: "Lexend Deca";
        color: white;
        background-color: #002954;
        padding: 10px 20px;
        border-radius: 20px;
    }
    .formSectionDiv .heading p {
        font-size: 30px;
        font-weight: 300 !important;
        font-family: "Lexend Deca";
        color: rgb(0, 0, 0);
    }
    .formSectionDiv .formBox {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .formSectionDiv .formBox .imgBox {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .formSectionDiv .formBox .imgBox img {
        width: 100%;
        max-width: 90%;
    }
    .formSectionDiv .formBox form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #f4f4f4;
        box-shadow: 7px 9px 15px 0px rgba(0, 0, 0, 25%);
        border-radius: 20px;
        padding: 60px;
        width: 100%;
        max-width: 50%;
    }
    .formSectionDiv .formBox form .inputDiv {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .formSectionDiv .formBox form .inputDiv img {
        width: 4%;
        position: absolute;
        top: 30%;
        right: 4%;
    }
    .formSectionDiv .formBox form .inputDiv input {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border: none;
        outline: none;
        border-radius: 10px;
        padding: 10px 20px;
    }
    .formSectionDiv .formBox form textarea {
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border: none;
        outline: none;
        border-radius: 10px;
        padding: 10px 20px;
    }
    .formSectionDiv .formBox form .buttonDiv {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .formSectionDiv .formBox form .buttonDiv p {
        font-size: 12px;
        font-weight: 300 !important;
        font-family: "Lexend Deca";
        color: black;
        width: 100%;
        max-width: 50%;
    }
    .formSectionDiv .formBox form .buttonDiv p a {
        border-bottom: 1px solid black;
    }
    .formSectionDiv .formBox form .buttonDiv button {
        font-size: 20px;
        font-weight: 400 !important;
        font-family: "Lexend Deca";
        color: white;
        background-color: #002954;
        border: 2px solid #002954;
        border-radius: 10px;
        padding: 10px 30px;
    }
    .formSectionDiv .formBox form .buttonDiv button:hover {
        color: black;
        background-color: transparent;
    }


    .team__person{
        padding: 60px 0;
    }
    .team__person .heading h2{
        margin: 0 auto 160px;
        background-color: #002954;
        color: white;
        padding: 10px;
        border-radius: 20px;
        width: fit-content;
    }
    .team__person .box{
        position: relative;
        background-image: url(../img/waterMarkRight.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        border: 2px solid #002954;
        border-radius: 50px;
        box-shadow: 8px 10px 8px 0px rgba(0, 0, 0, 25%);
        padding: 80px 20px 20px;
    }
    .team__person .box:hover{
        box-shadow: 8px 10px 8px 0px rgb(0, 41, 84, 30%);
    }
    .team__person .box img {
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        width: auto;
        height: 200px;
    }
    .team__person .box h2{
        font-size: 30px;
    }
    .team__person .box .links{
        font-size: 24px;
        font-weight: 300;
        color: var(--black);
    }

    .message__image{
        padding: 60px 0;
    }
    .message__image img{
        margin: 0 auto;
        width: auto;
        height: 600px;
    }
/* Adult Family Home Financing Page End */


/* Partners Page Start */
.hero-banner .hero-content .anchor__box{
    text-decoration: none;
    background-color: var(--white);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 6px -6px 10px 0px rgba(0, 0, 0, 25%), inset 6px 6px 7px 0px rgba(0, 0, 0, 25%);
}
.hero-banner .hero-content .anchor__box:hover{
    box-shadow: 6px -6px 10px 0px rgba(0, 41, 84, 50%), inset 6px 6px 7px 0px rgba(0, 41, 84, 50%);
}
.hero-banner .hero-content .anchor__box img{
    margin-bottom: 10px;
}


.blog__section{
    margin: 60px 0 60px;
    padding: 60px 0px 60px;
    background-image: url(../../assets/img/blog__section__bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 11px 12px 18px 0px rgba(0, 0, 0, 25%);
    overflow: hidden;
}
.blog__section .sec_heading h2{
    margin-bottom: 60px;
    color: var(--black);
}
.blog__section .blog__box{
    background-color: #9C9DA1;
    padding: 10px;
    border-radius: 20px;
    box-shadow: inset 3px 7px 7px 0px rgba(0, 0, 0, 25%), 6px 6px 4px 0px rgba(0, 0, 0, 25%);
}
.blog__section .blog__box .inner__box{
    background-color: var(--white);
    border-radius: 20px;

    padding-bottom: 20px;
}
.blog__section .blog__box .inner__box img{
    border-radius: 20px;
}
.blog__section .blog__box .inner__box .date{
    color: #636363;
    text-align: center;
}
.blog__section .blog__box .inner__box h5{
    padding: 0 20px;
    text-align: center;
}
.blog__section .blog__box .inner__box .para{
    height: 200px;
    padding: 0 20px;
    font-size: 18px;
    overflow: hidden;
}
.blog__section .blog__box .inner__box .btnDiv button{
    margin: 0 auto;
    background-color: #002954;
    border: 2px solid #002954;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.blogs__link{
    background-color: #002954;
    border: 2px solid #002954;
    color: var(--white);
    font-size: 20px;
    border-radius: 10px;
    padding: 0px 10px;
}
.blogs__link:hover{
    background-color: transparent;
    color: black;
}
/* Partners Page End */


/* Licensing Page Start */
.location__card__section{
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.location__card__section .starRight{
    position: absolute;
    bottom: 20px;
    left: 16%;
    width: 15%;
}
.location__card__section .starLeft{
    position: absolute;
    bottom: 20px;
    right: 16%;
    width: 15%;
}
.location__card__section .loaction__card{
    border: 2px solid #002954;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 25%);
}
.location__card__section .loaction__card:hover{
    box-shadow: 4px 4px 10px 0px rgb(0, 41, 84, 40%);
}
.location__card__section .loaction__card p{
    font-size: 20px;
    min-height: 96px;
}
/* Licensing Page End */


/* Training Page Start */
.youtube__videos__link{
    padding: 60px 0 60px;
}
.youtube__videos__link iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
}
/* Training Page End */

/* Client Reviews Page Start */

.slick-slide {
    margin: 0 20px;
}
.testimonial .slick-track{
    padding: 40px 0;
}
.testimonial{
    padding: 80px 0 80px;
}
.testimonial .nav-tabs{
    border: 2px solid #002954;
    width: fit-content;
    margin: 0 auto;
}
.testimonial .nav-tabs button{
    color: black;
}
.testimonial .nav-tabs button.active{
    font-size: 14px;
    text-decoration: underline;
}
.testimonial .testimonialSlider{
    padding: 60px 0 60px;
}
.testimonial .testimonialSlider .sliderBox{
    background-color: var(--white);
    position: relative;
    border-radius: 10px 40% 10px 40%;
    margin: 0 10px;
    position: relative;
}
.testimonial .testimonialSlider .sliderBox:hover{
    background-color: #002954;
    color: white;
}
.testimonial .testimonialSlider .sliderBox::after{
    content: '';
    width: 400px;
    height: 100%;
    border: 2px solid #002954;
    border-radius: 50% 40% 0px 40%;
    position: absolute;
    top: 4%;
    right: -8%;
    z-index: -1;
}
.testimonial .testimonialSlider .sliderBox .inner{
    border: 1px solid #9BA09E;
    border-radius: 5px 30% 0px 30%;
    background-color: white;
    box-shadow: 3px 4px 7px 0px rgba(0, 0, 0, 25%);
    padding: 20px;
}
.testimonial .testimonialSlider .sliderBox .inner .slider-heading{
    font-size: 20px;
    color: #002954;
    text-align: center;
}
.testimonial .testimonialSlider .sliderBox .inner .date{
    font-size: 18px;
    color: black;
    text-align: center;
}
.testimonial .testimonialSlider .sliderBox .inner .fa-star{
    color: #FAC759;
}
.sliderBox:has(.review:not(:-webkit-line-clamp(3))) .read-more-btn {
    display: block;
}
.testimonial .testimonialSlider .sliderBox .inner .review{
    font-size: 16px;
    color: black;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review.expanded {
    -webkit-line-clamp: unset; /* Show all text when expanded */
}
.testimonial .testimonialSlider .sliderBox .inner .read-more-btn {
    background: none;
    border: none;
    color: black; /* Blue color, change as needed */
    cursor: pointer;
    padding: 0;
    font-size: 12px;
    padding-left: 10px;
}
.testimonial .testimonialSlider .sliderBox .inner .review-given{
    font-size: 14px;
    color: black;
    display: flex;
    justify-content: end;
    align-items: center;
}
/* Client Reviews Page End */

/* Calculator Page Start */
    svg:not(:root).svg-inline--fa {
        overflow: visible;
    }

    .svg-inline--fa {
        display: inline-block;
        font-size: inherit;
        height: 1em;
        overflow: visible;
        vertical-align: -0.125em;
    }

    .svg-inline--fa.fa-lg {
        vertical-align: -0.225em;
    }

    .svg-inline--fa.fa-w-1 {
        width: 0.0625em;
    }

    .svg-inline--fa.fa-w-2 {
        width: 0.125em;
    }

    .svg-inline--fa.fa-w-3 {
        width: 0.1875em;
    }

    .svg-inline--fa.fa-w-4 {
        width: 0.25em;
    }

    .svg-inline--fa.fa-w-5 {
        width: 0.3125em;
    }

    .svg-inline--fa.fa-w-6 {
        width: 0.375em;
    }

    .svg-inline--fa.fa-w-7 {
        width: 0.4375em;
    }

    .svg-inline--fa.fa-w-8 {
        width: 0.5em;
    }

    .svg-inline--fa.fa-w-9 {
        width: 0.5625em;
    }

    .svg-inline--fa.fa-w-10 {
        width: 0.625em;
    }

    .svg-inline--fa.fa-w-11 {
        width: 0.6875em;
    }

    .svg-inline--fa.fa-w-12 {
        width: 0.75em;
    }

    .svg-inline--fa.fa-w-13 {
        width: 0.8125em;
    }

    .svg-inline--fa.fa-w-14 {
        width: 0.875em;
    }

    .svg-inline--fa.fa-w-15 {
        width: 0.9375em;
    }

    .svg-inline--fa.fa-w-16 {
        width: 1em;
    }

    .svg-inline--fa.fa-w-17 {
        width: 1.0625em;
    }

    .svg-inline--fa.fa-w-18 {
        width: 1.125em;
    }

    .svg-inline--fa.fa-w-19 {
        width: 1.1875em;
    }

    .svg-inline--fa.fa-w-20 {
        width: 1.25em;
    }

    .svg-inline--fa.fa-pull-left {
        margin-right: 0.3em;
        width: auto;
    }

    .svg-inline--fa.fa-pull-right {
        margin-left: 0.3em;
        width: auto;
    }

    .svg-inline--fa.fa-border {
        height: 1.5em;
    }

    .svg-inline--fa.fa-li {
        width: 2em;
    }

    .svg-inline--fa.fa-fw {
        width: 1.25em;
    }

    .fa-layers svg.svg-inline--fa {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
    }

    .fa-layers {
        display: inline-block;
        height: 1em;
        position: relative;
        text-align: center;
        vertical-align: -0.125em;
        width: 1em;
    }

    .fa-layers svg.svg-inline--fa {
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    .fa-layers-counter,
    .fa-layers-text {
        display: inline-block;
        position: absolute;
        text-align: center;
    }

    .fa-layers-text {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    .fa-layers-counter {
        background-color: #ff253a;
        border-radius: 1em;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: #fff;
        height: 1.5em;
        line-height: 1;
        max-width: 5em;
        min-width: 1.5em;
        overflow: hidden;
        padding: 0.25em;
        right: 0;
        text-overflow: ellipsis;
        top: 0;
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        -webkit-transform-origin: top right;
        transform-origin: top right;
    }

    .fa-layers-bottom-right {
        bottom: 0;
        right: 0;
        top: auto;
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        -webkit-transform-origin: bottom right;
        transform-origin: bottom right;
    }

    .fa-layers-bottom-left {
        bottom: 0;
        left: 0;
        right: auto;
        top: auto;
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left;
    }

    .fa-layers-top-right {
        right: 0;
        top: 0;
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        -webkit-transform-origin: top right;
        transform-origin: top right;
    }

    .fa-layers-top-left {
        left: 0;
        right: auto;
        top: 0;
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }

    .fa-lg {
        font-size: 1.3333333333em;
        line-height: 0.75em;
        vertical-align: -0.0667em;
    }

    .fa-xs {
        font-size: 0.75em;
    }

    .fa-sm {
        font-size: 0.875em;
    }

    .fa-1x {
        font-size: 1em;
    }

    .fa-2x {
        font-size: 2em;
    }

    .fa-3x {
        font-size: 3em;
    }

    .fa-4x {
        font-size: 4em;
    }

    .fa-5x {
        font-size: 5em;
    }

    .fa-6x {
        font-size: 6em;
    }

    .fa-7x {
        font-size: 7em;
    }

    .fa-8x {
        font-size: 8em;
    }

    .fa-9x {
        font-size: 9em;
    }

    .fa-10x {
        font-size: 10em;
    }

    .fa-fw {
        text-align: center;
        width: 1.25em;
    }

    .fa-ul {
        list-style-type: none;
        margin-left: 2.5em;
        padding-left: 0;
    }

    .fa-ul>li {
        position: relative;
    }

    .fa-li {
        left: -2em;
        position: absolute;
        text-align: center;
        width: 2em;
        line-height: inherit;
    }

    .fa-border {
        border: solid 0.08em #eee;
        border-radius: 0.1em;
        padding: 0.2em 0.25em 0.15em;
    }

    .fa-pull-left {
        float: left;
    }

    .fa-pull-right {
        float: right;
    }

    .fa.fa-pull-left,
    .fab.fa-pull-left,
    .fal.fa-pull-left,
    .far.fa-pull-left,
    .fas.fa-pull-left {
        margin-right: 0.3em;
    }

    .fa.fa-pull-right,
    .fab.fa-pull-right,
    .fal.fa-pull-right,
    .far.fa-pull-right,
    .fas.fa-pull-right {
        margin-left: 0.3em;
    }

    .fa-spin {
        -webkit-animation: fa-spin 2s infinite linear;
        animation: fa-spin 2s infinite linear;
    }

    .fa-pulse {
        -webkit-animation: fa-spin 1s infinite steps(8);
        animation: fa-spin 1s infinite steps(8);
    }

    @-webkit-keyframes fa-spin {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @keyframes fa-spin {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    .fa-rotate-90 {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .fa-rotate-180 {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .fa-rotate-270 {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .fa-flip-horizontal {
        -webkit-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }

    .fa-flip-vertical {
        -webkit-transform: scale(1, -1);
        transform: scale(1, -1);
    }

    .fa-flip-both,
    .fa-flip-horizontal.fa-flip-vertical {
        -webkit-transform: scale(-1, -1);
        transform: scale(-1, -1);
    }

    :root .fa-flip-both,
    :root .fa-flip-horizontal,
    :root .fa-flip-vertical,
    :root .fa-rotate-180,
    :root .fa-rotate-270,
    :root .fa-rotate-90 {
        -webkit-filter: none;
        filter: none;
    }

    .fa-stack {
        display: inline-block;
        height: 2em;
        position: relative;
        width: 2.5em;
    }

    .fa-stack-1x,
    .fa-stack-2x {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
    }

    .svg-inline--fa.fa-stack-1x {
        height: 1em;
        width: 1.25em;
    }

    .svg-inline--fa.fa-stack-2x {
        height: 2em;
        width: 2.5em;
    }

    .fa-inverse {
        color: #fff;
    }

    .sr-only {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .sr-only-focusable:active,
    .sr-only-focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

    .svg-inline--fa .fa-primary {
        fill: var(--fa-primary-color, currentColor);
        opacity: 1;
        opacity: var(--fa-primary-opacity, 1);
    }

    .svg-inline--fa .fa-secondary {
        fill: var(--fa-secondary-color, currentColor);
        opacity: 0.4;
        opacity: var(--fa-secondary-opacity, 0.4);
    }

    .svg-inline--fa.fa-swap-opacity .fa-primary {
        opacity: 0.4;
        opacity: var(--fa-secondary-opacity, 0.4);
    }

    .svg-inline--fa.fa-swap-opacity .fa-secondary {
        opacity: 1;
        opacity: var(--fa-primary-opacity, 1);
    }

    .svg-inline--fa mask .fa-primary,
    .svg-inline--fa mask .fa-secondary {
        fill: #000;
    }

    .fad.fa-inverse {
        color: #fff;
    }
</style>
<style>
    [data-aos] {
        transition: all 0.8s ease-in-out !important;
    }

    .mortgageCalBox #pills-tabContent {
        height: 800px;
        overflow-y: scroll;
    }

    /* width */
    .mortgageCalBox #pills-tabContent::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */
    .mortgageCalBox #pills-tabContent::-webkit-scrollbar-track {
        background: #003468;
    }

    /* Handle */
    .mortgageCalBox #pills-tabContent::-webkit-scrollbar-thumb {
        background: #1273eb;
    }

    /* Handle on hover */
    .mortgageCalBox #pills-tabContent::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .mortgageCalBox {
        background-color: #002953;
        border-radius: 10px;
    }

    .mortgageCalBox .nav-pills {
        justify-content: space-between;
    }

    .mortgageCalBox .nav-pills .nav-link {
        color: #6c757d !important;
        padding-left: 0px;
        padding-right: 0px;
        cursor: pointer;
    }

    .mortgageCalBox .nav-pills .nav-link:hover {
        color: #fff !important;
        background-color: transparent !important;
    }

    .mortgageCalBox input[type="text"] {
        background: #003468 !important;
    }

    .mortgageCalBox select {
        background: #003468 !important;
        min-height: 50px;
    }

    .mortgageCalBox input[type="text"]::placeholder {
        color: #fff !important;
    }

    .mortgageCalBox .nav-pills .nav-link.active {
        background-color: transparent !important;
        color: #fff !important;
    }

    .mortgageCalBox hr {
        border-color: #6c757d !important;
    }

    .tabContentArea .tabContentAreaItem {
        display: none;
    }

    .tabContentArea .tabContentAreaItem.active {
        display: block;
    }

    .btn-group input[type="radio"] {
        display: none;
    }

    .pre-qualify-cta-banner.container-fluid {
        margin-bottom: 120px;
    }
/* Calculator Page End */

/* Responsive CSS Start */
@media(max-width: 1441px){
    /* Header CSS Start */
        .navbar-brand img {
            max-width: 150px;
        }
        .navbar .nav-item .nav-link{
            font-size: 14px;
            margin: 0px 8px;
        }
        .navbar .nav-phone{
            font-size: 16px;
        }
    /* Header CSS End */



    .boxBanner .box{
        max-width: 100%;
    }
    .boxBanner .box h2 {
        font-size: 40px;
    }
    .boxBanner .box p {
        font-size: 24px;
    }
    .bgImg {
        padding: 30px 60px;
    }


    .form-info .box {
        width: 100%;
        max-width: 101%;
    }
    .para {
        font-size: 20px;
    }
    .twoSideBanner .borderBox {
        width: 100%;
        max-width: 95%;
        border: 3px solid #002954;
        border-radius: 20px;
        padding: 20px 30px;
    }


    .ceo_message_section{
        overflow: hidden
    }
    .ceo_message_section .square-1 {
        left: -20px;
    }

    .paragraphBanner .box h6 {
        font-size: 30px;
    }
    .paragraphBanner .box p {
        font-size: 20px;
    }

    .loan_choices_slider .slick-next {
        right: -40px;
    }
    .loan_choices_slider .slick-prev {
        left: -40px;
    }
    .loan_choices_sec .para {
        margin: 0 auto 20px;
    }


    .gallerySlider .slick-arrow{
        right: -60px;
    }

    .buttonLinkSection a {
        font-size: 20px;
    }

    .contactBtn .box h6 {
        font-size: 30px;
    }
    .contactBtn .box a {
        font-size: 24px;
    }
}
@media (max-width: 1301px){
    .bgImg.refinance_solutions {
        background: url(../img/refinanceSolutionsPic.png) no-repeat -30px center / cover;
    }
}
@media(max-width: 1025px){
    .hero-banner .heading {
        font-size: 48px;
    }
    .hero-banner .hero-product-content .description {
        font-size: 24px;
    }
    .hero-banner .hero-content .box .heading {
        font-size: 40px;
    }
    .banner-product-btn {
        font-size: 24px;
    }
    .form-info .title{
        font-size: 40px;
    }
    .form-info__bgCard-content h4 {
        font-size: 30px;
    }


    .step_content h2 {
        font-size: 1.75rem;
        line-height: 2.1875rem;
    }
    .para {
        font-size: 18px;
    }
    .ceo_message_section .square-1 {
        left: -6px;
        top: -40px;
        width: 20.5625rem;
        height: 20.25rem;
    }

    .boxBanner .box h2 {
        font-size: 30px;
    }
    .boxBanner .box p {
        font-size: 20px;
    }
    .bgImg {
        padding: 30px 60px;
    }


    .form-info p {
        font-size: 18px;
    }
    .form-info__bg{
        padding: 3rem;
    }



    .smartProcessDiv .threeBox .box {
        padding: 20px 10px 10px;
    }
    .smartProcessDiv .threeBox .box .number {
        font-size: 30px;
        top: -15%;
    }
    .smartProcessDiv .threeBox .box.lowDownPaymentBox p {
        font-size: 14px;
    }

    .location__card__section .loaction__card {
        padding: 30px 10px;
        align-content: center;
    }
    .location__card__section .loaction__card p {
        font-size: 16px;
        min-height: 96px;
    }
    .location__card__section .starRight {
        bottom: 20px;
        left: -2%;
        width: 30%;
    }
    .location__card__section .starLeft {
        bottom: 20px;
        right: -2%;
        width: 30%;
    }


    .paragraphBanner .box h6 {
        font-size: 28px;
    }
    .paragraphBanner .box p {
        font-size: 18px;
    }


    .faqDiv .heading h2 {
        font-size: 36px;
    }
    .accordion-button {
        font-size: 24px;
    }
    .accordion-body p {
        font-size: 18px;
    }

    .specialties-box__list li a {
        font-size: 16px;
    }
    .ensuring__smooth__Path .ensuring_box p {
        font-size: 18px;
        min-height: 280px;
    }
    .exploring__top__loans .ensuring_box p {
        font-size: 18px;
        min-height: 200px;
    }
    .exploring__top__loans .ensuring_box h3 {
        min-height: 86px;
    }
    .benefits__of__mortgage .ensuring_box p {
        font-size: 18px;
        min-height: 230px;
    }
    .ensuring__smooth__Path.join__our__team .ensuring_box h3 {
        min-height: 96px;
    }
    .ensuring__smooth__Path.join__our__team .ensuring_box ul li {
        font-size: 16px;
    }


    .buttonLinkSection h2{
        font-size: 28px;
    }


    .twoSideBanner .content::before {
        left: 0%;
    }

    .swiper-button-prev {
        left: -40px !important;
    }
    .swiper-button-next {
        right: -40px !important;
    }
    .client_reviews_slider .slick-arrow img, .blogs_slider .slick-arrow img, .gallerySlider .slick-arrow img {
        width: 30px;
        height: 30px;
    }


    .quote_form_sec .get_started .form_sec {
        padding: 60px 20px 20px 20px;
    }
    .form_sec .form-label {
        font-size: 16px;
    }

    .search_job_form .formBox {
        max-width: 80%;
    }

    .client_reviews_slider .slick-prev, .blogs_slider .slick-prev{
        left: -40px;
        background: transparent;
    }
    .gallerySlider .slick-prev {
        left: -45px;
        background: transparent;
    }
    .client_reviews_slider .slick-next {
        right: -40px;
        background: transparent;
    }
    .blogs_slider .slick-next {
        right: -40px;
        background: transparent;
    }
    .gallerySlider .slick-next {
        right: -45px;
        background: transparent;
    }

    .loan_choice_card .loan_heading_link h3 {
        font-size: 1.1rem;
    }
    .loan_choice_card .loan_heading_link a {
        font-size: 0.9rem;
    }

    .blog__section .blog__box .inner__box h5 {
        min-height: 50px;
    }
    .blogs_section .blog_title {
        font-size: 0.9rem;
    }
    .blogs_section .blog_link {
        font-size: 0.8rem;
    }


    .faq-answer-box {
        font-size: 0.9rem;
    }


    .form_heading p {
        font-size: 18px;
    }

    .contactBtn {
        padding-top: 30px;
    }
    .contactBtn .box h6 {
        font-size: 30px;
        max-width: 90%;
    }


    .adult__about .adult__about__content .para {
        font-size: 24px;
        line-height: 40px;
    }
    .smartProcess.adult__family__home .box h6 {
        min-height: 56px;
    }
    .smartProcess.adult__family__home .box p {
        min-height: 140px;
    }

    .formSection {
        padding: 50px 0;
    }
    .formSectionDiv .heading h2 {
        font-size: 36px;
    }
    .formSectionDiv .heading p {
        font-size: 24px;
    }
    .formSectionDiv .formBox .imgBox img {
        width: 100%;
        max-width: 100%;
    }
    .formSectionDiv .formBox form {
        padding: 50px;
    }
    .formSectionDiv .formBox form .buttonDiv p {
        font-size: 10px;
    }
    .formSectionDiv .formBox form .buttonDiv button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .boxBanner .box ul li {
        font-size: 20px;
    }

    .team__person .box img {
        height: 180px;
    }
    .team__person .box .links {
        font-size: 18px;
    }


    .message__image img {
        height: 500px;
    }


}
@media(max-width: 769px){

    .animated-toggler{
        display: block;
    }
    .offcanvas.offcanvas-end{
        padding-top: 26px;
    }

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

    .footer-heading {
        margin-top: 30px;
    }

    .footer-links li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        text-align: left;
    }

    .footer-social {
        justify-content: start;
    }


    .drop-down ul {
        width: 100%;
        backdrop-filter: blur(20px);
    }
    .offcanvas-body .navbar-nav .nav-item .nav-link{
        text-align: left;
        font-size: 16px;
        border-bottom: 1px solid #002954;
    }
    .offcanvas-body .nav-phone {
        margin: 0 auto;
        font-size: 18px;
        font-family: "Lexend Deca";
        padding: 0px 10px 10px 10px;
    }




    .hero-banner .heading {
        font-size: 40px;
    }
    .hero-banner .heading br {
        display: none;
    }
    .offcanvas-header img{
        width: auto;
        height: 60px;
    }
    .top__head__list{
        display: none;
    }
    .hero-banner .description {
        font-size: 16px;
    }
    .hero-slider .slick-next {
        right: -30px;
    }
    .hero-slider .slick-prev {
        left: -30px;
    }
    .hero-slider .slick-arrow {
        width: 40px;
        height: 40px;
        top: 40%;
    }
    .hero-banner .hero-product-content .description {
        font-size: 20px;
    }
    .hero-banner .hero-content .anchor__box h4{
        font-size: 20px;
    }

    .ceo_message_section.profileBanner .star {
        top: 0px;
    }
    .ceo_message_section.profileBanner .square-2 {
        left: 200px;
    }
    .ceo_message_section.profileBanner .square-1 {
        left: 200px;
    }
    .ceo_message_section.profileBanner .starBox {
        justify-content: center;
    }
    .ceo_message_section.profileBanner .btnDiv{
        justify-content: center;
    }
    .ceo_message_section.profileBanner{
        padding: 20px 0;
    }
    .ceo_message_section.agentAbout .square-1 {
        left: 60px;
    }
    .ceo_message_section .square-2 {
        bottom: -10px;
        right: 30px;
    }


    .specialties-box__list li {
        min-height: 0px;
    }
    .specialties-box__list li + li {
        margin-top: 0rem;
    }
    .specialties-box__list li a {
        font-size: 18px;
    }




    .form-info__bg.agent_profile .title {
        width: 80%;
        font-size: 30px;
    }
    .form-info a {
        font-size: 18px;
    }

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

    .form-info .title {
        font-size: 30px;
        width: 80%;
    }
    .form-info__bgCard-content h4 {
        font-size: 24px;
    }


    .step_content h2 {
        font-size: 30px;
        line-height: 2.1875rem;
    }
    .step_content p {
        font-size: 18px;
    }
    .step_world_btn {
        font-size: 18px;
    }


    .location__card__section{
        padding: 60px 0 60px;
    }
    .location__card__section .starRight,
    .location__card__section .starLeft{
        display: none;
    }
    .location__card__section .loaction__card p {
        min-height: 0px;
    }


    .loan_choice_card .loan_heading_link h3 {
        font-size: 16px;
    }
    .loan_choice_card .loan_heading_link a {
        font-size: 14px;
    }



    .client_reviews_section .review_text {
        font-size: 14px;
    }

    .quote_image {
        width: 100%;
        height: 400px;
    }
    .profileCard .quote_image {
        height: 400px;
    }

    /* .client_reviews_slider .slick-next {
        right: -24px;
    }
    .client_reviews_slider .slick-prev, .blogs_slider .slick-prev, .gallerySlider .slick-prev{
        left: -24px;
    } */

    .client_reviews_slider .slick-arrow, .blogs_slider .slick-arrow, .gallerySlider .slick-arrow{
        background: none;
    }
    .client_reviews_slider .slick-arrow img, .blogs_slider .slick-arrow img, .gallerySlider .slick-arrow img {
        width: 25px;
        height: 25px;

    }
    .client_reviews_slider .slick-arrow, .blogs_slider .slick-arrow{
        top: 50%;
    }
    .client_reviews_slider .slick-prev, .blogs_slider .slick-prev{
        left: -20px;
    }
    .client_reviews_slider .slick-next {
        right: -20px;
    }
    .blogs_slider .slick-next {
        right: -20px;
    }
    .gallerySlider .slick-arrow {
        top: 110%;
    }
    .gallerySlider .slick-prev {
        left: 285px;
    }
    .gallerySlider .slick-next {
        right: 290px;
    }


    .swiper-button-next {
        right: -36px !important;
    }
    .swiper-button-prev {
        left: -36px !important;
    }


    .ensuring__smooth__Path .headingDiv h2 {
        font-size: 30px;
    }
    .ensuring__smooth__Path .ensuring_box p {
        font-size: 18px;
        min-height: 250px;
    }
    .bgImg {
        padding: 30px 40px;
    }
    .exploring__top__loans .ensuring_box h3 {
        min-height: 50px;
    }
    .exploring__top__loans .ensuring_box p {
        min-height: 140px;
    }
    .quote_form_sec.agentForm .quote_image {
        height: 600px;
    }

    .sec_heading .adjustTitle {
        font-size: 30px;
    }
    .adult__about .adult__about__content .para {
        font-size: 18px;
        line-height: 26px;
    }

    .smartProcess .heading h2 {
        font-size: 30px;
        text-align: center;
    }
    .smartProcess .box .number {
        font-size: 30px;
        border-radius: 10px;
        top: -14%;
    }
    .smartProcess.low__down__payment .box .number {
        top: -6%;
    }
    .smartProcess.low__down__payment .box h6{
        min-height: 80px;
    }
    .smartProcess.low__down__payment .box p {
        min-height: 400px;
    }
    .smartProcess.adult__family__home .box h6 {
        min-height: 20px;
    }
    .smartProcess.adult__family__home .box p {
        min-height: 100px;
        font-size: 18px;
    }

    .smartProcess .heading a{
        font-size: 30px;
    }

    .ensuring__smooth__Path.join__our__team .ensuring_box ul {
        height: 170px;
    }

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

    .blog__section .blog__box .inner__box h5 {
        min-height: 0px;
    }



    .formSectionDiv .heading h2 {
        font-size: 30px;
    }
    .formSectionDiv .heading p {
        font-size: 20px;
        text-align: center;
    }
    .formSectionDiv .formBox .imgBox {
        justify-content: center;
    }
    .formSectionDiv .formBox .imgBox img {
        width: 100%;
        max-width: 80%;
    }
    .formSectionDiv .formBox {
        flex-direction: column;
    }
    .formSectionDiv .formBox form {
        padding: 50px 20px;
        width: 100%;
        max-width: 90%;
    }
    .formSectionDiv .formBox form .buttonDiv p {
        font-size: 12px;
        max-width: 100%;
    }
    .formSectionDiv .formBox form .buttonDiv{
        flex-direction: column;
    }




    .faqDiv .heading h2 {
        font-size: 30px;
    }


    .team__person .heading h2 {
        margin: 0 auto 120px;
    }
    .team__person .box{
        padding: 60px 20px 20px;
    }
    .team__person .box h2{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .team__person .box img {
        height: 120px;
        top: -3%;
    }
    .team__person .box .links {
        font-size: 14px;
    }


    .headingSection .heading {
        font-size: 30px;
        text-align: center;
    }


}
@media(max-width: 440px){

    .offcanvas.offcanvas-end{
        padding-top: 0px;
    }
    /* Animation states */
    .animated-toggler[aria-expanded="true"] .top {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .animated-toggler[aria-expanded="true"] .bottom {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }



    .formSection .starWaterMark{
        width: 100%;
    }
    .message__image {
        padding: 10px 0 60px;
    }
    .message__image img {
        height: auto;
    }
    .team__person .box .para{
        margin: 0;
    }
    .team__person .box.marginBox{
        margin-top: 80px;
    }
    .offcanvas-header img{
        width: auto;
        height: 50px;
    }
    .drop-down--lg ul {
        width: 100%;
        column-count: 1;
    }
    .header-top{
        display: none;
    }
    .header_top_links .header_top_left, .header_top_links .header_top_right {
        gap: 16px;
    }
    .offcanvas-body .top__head__list{
        padding: 20px 10px 10px 10px;
        display: block;
        align-items: flex-start;
    }
    .offcanvas-body .top__head__list li a{
        color: var(--white);
        background-color: #002954;
        padding: 10px 20px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .offcanvas-body ul li{
        list-style: none;
    }
    .offcanvas-body ul li a{
        font-size: 14px;
        color: rgb(0, 0, 0);
        font-weight: 400;
    }
    .offcanvas-body  .nav-phone{
        margin: 0 auto;
    }
    .offcanvas-body .navbar-nav .nav-item .nav-link{
        text-align: left;
        font-size: 16px;
        border-bottom: 1px solid #002954;
    }
    .offcanvas-body .nav-phone {
        margin: 0 auto;
        font-size: 16px;
        font-family: "Lexend Deca";
        padding: 0px 10px 10px 8px;
    }
    .hero-banner .heading {
        font-size: 30px;
    }
    .hero-slider .slick-next {
        right: -6px;
    }
    .hero-slider .slick-prev {
        left: -6px;
    }
    .banner-buttons .btn{
        min-width: 100%;
        margin: 0 auto 10px;
    }
    .hero-slider .slick-arrow {
        top: 33%;
    }
    .hero-banner .hero-content .anchor__box {
        max-width: 60%;
    }
    .hero-banner .hero-content .anchor__box img{
        width: auto;
        height: 40px;
    }
    .hero-banner .hero-content .anchor__box h4{
        margin: 0;
    }

    .loan_choices_sec {
        padding-top: 60px;
        padding-bottom: 60px;
        text-align: center;
        overflow-x: hidden;
    }

    .brand__img{
        display: none;
    }
    .brand__logo{
        display: block;
    }


    .para {
        font-size: 16px;
    }
    .step_content p {
        font-size: 16px;
    }
    .step_world_btn {
        font-size: 16px;
    }





    .client_reviews_slider .slick-slide, .blogs_slider .slick-slide, .gallerySlider .slick-slide {
        padding: 20px 15px 60px;
    }
    .client_reviews_slider .slick-arrow, .blogs_slider .slick-arrow, .gallerySlider .slick-arrow {
        top: 92%;
    }
    .client_reviews_slider .slick-prev, .blogs_slider .slick-prev, .gallerySlider .slick-prev {
        left: 180px;
    }
    .client_reviews_slider .slick-next {
        right: 180px;
    }
    .blogs_slider .slick-next, .gallerySlider .slick-next {
        right: 180px;
    }

    .quote_form_sec .get_started .form_sec {
        padding: 20px 20px 20px 20px;
    }

    .form_heading {
        margin-bottom: 30px;
    }


    .hero-banner .hero-content .box {
        padding: 30px 10px;
        margin: 0px auto;
    }
    .hero-banner .hero-content .box .heading {
        font-size: 26px;
    }
    .hero-banner .hero-product-content .description {
        font-size: 16px;
    }
    .banner-product-btn {
        font-size: 16px;
    }


    .ceo_message_section {
        padding: 30px 0px 0px;
    }
    .ceo_message_section .ceo-img {
        margin-bottom: 10px;
        width: auto;
        height: 400px;
    }
    .ceo_message_section.profileBanner .square-1 {
        left: 60px;
    }
    .ceo_message_section.profileBanner .square-2 {
        left: 60px;
    }
    .ceo_message_section.agentAbout .square-1 {
        left: 20px;
    }
    .ceo_message_section.agentAbout .square-2 {
        right: 20px;
    }
    .ceo_message_section .waterMarkBox {
        padding: 0px 0;
    }
    .ceo_message_section.profileBanner .btnDiv .linkBtn {
        font-size: 16px;
    }
    .ceo_message_section.profileBanner .btnDiv{
        gap: 10px;
        flex-direction: column;
    }
    .sec_heading .adjustTitle {
        font-size: 24px;
    }
    .sec_heading .adjustTitle br{
        display: none;
    }

    .specialties .sec_heading h2{
        margin-top: 26px;
    }


    #videoSec {
        padding: 0px 0 60px;
    }
    .swiper-button-next, .swiper-button-prev{
        width: 30px;
        height: 30px;
    }
    .swiper-button-prev {
        left: 120px !important;
        top: 262px;
    }
    .swiper-button-next {
        right: 130px !important;
        top: 259px;
    }
    #videoSec .videoBtn {
        margin: 20px 0 0;
    }



    .paragraphBanner .box {
        padding: 40px 20px;
    }
    .paragraphBanner .box h6 {
        font-size: 24px;
    }
    .paragraphBanner .box p {
        font-size: 14px;
        max-width: 100%;
    }
    .form-info__bg {
        padding: 1.2rem;
    }
    .form-info__bg.agent_profile .title {
        width: 100%;
        font-size: 24px;
    }
    .form-info p {
        font-size: 16px;
    }
    .form-info a {
        font-size: 16px;
    }

    .form-info .title {
        font-size: 24px;
        width: 100%;
    }
    .form-info__bgCard-content h4 {
        font-size: 20px;
        margin-top: 10px;
    }

    .twoSideBanner .content::before{
        display: none;
    }



    #brandSec {
        margin-top: -80px;
        overflow: hidden;
    }
    #brandSec img{
        width: auto;
        height: 300px;
        margin: 0 auto;
    }


    .headingSection .heading h1 {
        font-size: 24px;
    }
    .boxBanner {
        margin: 30px 0px 0px;
    }
    .bgImg {
        padding: 30px 20px;
    }
    .boxBanner .box {
        padding: 20px 10px;
        border-radius: 30px;
    }
    .boxBanner .box h2 {
        font-size: 24px;
    }
    .boxBanner .box p {
        font-size: 14px;
    }
    .boxBanner .box ul li {
        font-size: 14px;
        text-align: center;
    }



    .smartProcess {
        padding-top: 50px;
        margin-bottom: 40px;
    }
    .smartProcess .heading {
        margin-bottom: 40px;
    }
    .smartProcess .heading h2 {
        font-size: 24px;
    }
    .smartProcess .heading a {
        font-size: 24px;
    }
    .smartProcess .box .number {
        font-size: 24px;
        border-radius: 10px;
        top: -14%;
    }
    .smartProcess.low__down__payment .box .number {
        top: -9%;
    }
    .smartProcess .box h6 {
        font-size: 20px;
        min-height: 20px;
    }
    .smartProcess .box p {
        font-size: 14px;
        min-height: 50px;
    }


    .ensuring__smooth__Path.join__our__team .ensuring_box h3 {
        min-height: 0;
        padding: 10px 0px;
    }
    .ensuring__smooth__Path.join__our__team .ensuring_box ul {
        height: auto;
    }



    .form_heading h3 {
        font-size: 24px;
    }
    .form_heading p {
        font-size: 16px;
    }


    .contactBtn .box {
        padding: 30px 20px 30px;
    }
    .contactBtn .box h6 {
        font-size: 24px;
        max-width: 100%;
        margin: 0;
    }


    .faq .faqDiv {
        max-width: 100%;
    }


    .understanding__the__mechanics {
        padding: 0px 0 40px;
    }
    .simple__loan__options .ensuring_box h3 {
        min-height: 20px;
    }
    .ensuring__smooth__Path .headingDiv h2 {
        font-size: 24px;
    }
    .ensuring__smooth__Path .ensuring_box h3 {
        font-size: 20px;
    }
    .ensuring__smooth__Path .ensuring_box p {
        font-size: 14px;
        min-height: 80px;
    }
    .smartProcess.low__down__payment .box p {
        min-height: 0px;
    }
    .ceo_message_section ul li {
        font-size: 14px;
        text-align: left;
    }


    .faq{
        margin: 1rem 0;
    }
    .faqDiv .heading h2 {
        font-size: 24px;
        text-align: center;
    }
    .accordion-button {
        font-size: 20px;
    }
    .accordion-body p {
        font-size: 16px;
    }



    .formSectionDiv .heading h2 {
        font-size: 24px;
    }
    .formSectionDiv .heading p {
        font-size: 18px;
        text-align: center;
    }


}
@media(max-width: 426px){
    .client_reviews_slider .slick-prev, .blogs_slider .slick-prev, .gallerySlider .slick-prev {
        left: 130px;
    }
    .client_reviews_slider .slick-next{
        right: 130px;
    }
    .blogs_slider .slick-next, .gallerySlider .slick-next{
        right: 130px;
    }

    .logos{
        flex-wrap: wrap;
    }


    .hero-banner .heading {
        font-size: 26px;
    }
    .step_content h2 {
        font-size: 26px;
        line-height: 2.1875rem;
    }
    .step_content p {
        font-size: 14px;
    }
    .sec_heading h2 {
        font-size: 24px;
    }
    .para {
        font-size: 16px;
    }

    .twoSideBanner .borderBox {
        max-width: 100%;
        padding: 10px 10px;
    }

    .specialties-box__list li a {
        font-size: 16px;
    }
    .ensuring__smooth__Path .ensuring_box h3 {
        font-size: 20px;
        min-height: 20px;
    }
    .quote_form_sec.agentForm .quote_image {
        height: 400px;
    }

}
@media(max-width: 376px){

    .hero-banner .heading {
        font-size: 20px;
    }
    .hero-banner .hero-content .box .heading {
        font-size: 20px;
    }
    .hero-banner .hero-product-content .description {
        font-size: 14px;
    }


    .ceo_message_section.profileBanner .starBox img {
        width: 100%;
        max-width: 6%;
    }
    .ceo_message_section.profileBanner .btnDiv .linkBtn {
        font-size: 16px;
    }

    .bgImg {
        padding: 30px 10px;
    }

    .smartProcess .heading a {
        font-size: 20px;
    }
    .smartProcess.adult__family__home .box h6 {
        min-height: 0px;
    }
    .smartProcess.adult__family__home .box p {
        min-height: 80px;
        font-size: 16px;
    }


}
@media(max-width: 321px){

    .hero-slider .slick-arrow {
        top: 105%;
    }
    .hero-slider .slick-prev {
        left: 80px;
    }
    .hero-slider .slick-next {
        right: 80px;
    }
    .btn_flex {
        flex-direction: column;
        gap: 0px;
    }
    .step_world_btn{
        width: 100%;
    }

    .client_reviews_slider .slick-prev, .blogs_slider .slick-prev, .gallerySlider .slick-prev {
        left: 100px;
    }
    .client_reviews_slider .slick-next {
        right: 100px;
    }
    .gallerySlider .slick-next {
        right: 100px;
    }
    .blogs_slider .slick-prev{
        left: 100px;
    }
    .blogs_slider .slick-next{
        right: 100px;
    }


    .boxBanner .box h2 {
        font-size: 20px;
    }
    .ensuring__smooth__Path .headingDiv h2 {
        font-size: 20px;
    }
    .ensuring__smooth__Path .ensuring_box h3 {
        font-size: 18px;
    }
    .ensuring__smooth__Path .ensuring_box p {
        font-size: 14px;
    }
    .smartProcess .heading a {
        text-align: center;
    }
    .smartProcess .heading h2 {
        font-size: 20px;
    }
    .boxBanner .box ul{
        padding-left: 0;
    }
    .boxBanner .box ul li {
        font-size: 14px;
        text-align: center;
        list-style: none;
    }


    .buttonLinkSection h2 {
        font-size: 20px;
    }
    .buttonLinkSection a {
        font-size: 15px;
    }


    .faqDiv .heading h2 {
        font-size: 20px;
    }
    .accordion-button {
        font-size: 18px;
    }
    .accordion-body p {
        font-size: 14px;
    }

    .paragraphBanner .box h6{
        font-size: 20px;
    }


    .form_heading h3 {
        font-size: 20px;
    }
    .form_heading p {
        font-size: 14px;
    }
    .form_sec .form-label {
        font-size: 14px;
    }
    .form_sec .form-control{
        font-size: 12px;
    }
    .form_sec .form-control::placeholder{
        font-size: 12px;
    }
    .form-info a {
        font-size: 12px;
    }
    .theme-btn{
        font-size: 14px;
    }
    .contactBtn .box h6 {
        font-size: 20px;
    }


    .footer_logo .footer-logo {
        max-width: 250px;
    }
}

/* Responsive CSS End */

/* Refinance Page CSS by Huzaifa Start */
.homeSec {
    height: 100vh;
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.homeSec figure {
    width: 100%;
    height: 100%;
}

.homeSec figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeSec .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #000, transparent);
}

.homeSec .content h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 600;
}

.homeSec .content p {
    font-size: 1.1255rem;
    text-align: justify;
    color: var(--white);
}

.homeSec .content p+p {
    margin-top: 1rem;
}

.productSec {
    padding: 0;
}

.productSec .outerWrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productSec .outerWrapper:nth-child(2) {
    top: 2%;
}

.productSec .outerWrapper:nth-child(3) {
    top: 4%;
}

.productSec .wrapper {
    height: 80vh;
    width: calc(100% - 5rem);
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 0 5px #0005;
}

.productSec .wrapper figure,
.productSec .wrapper figure img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 3rem;
}

.productSec .wrapper .content {
    height: 80vh;
    display: flex;
    align-items: flex-start;
    align-items: center;
    border-radius: 3rem;
    padding: 5rem;
    position: absolute;
    z-index: 1;
    background: linear-gradient(to right, var(--primary), transparent);
    width: calc(100% - 5rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.productSec .wrapper .content h2 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
}

.productSec .wrapper .content p {
    font-size: 1.25rem;
    color: var(--white);
}

.faqSec {
    background-color: #ffffff;
    /* Replace with your white */
    padding: 5rem 3rem;
}

.faqSec .headingCont {
    margin-bottom: 3.75rem;
}

.faqSec .headingCont h6 {
    font-family: "Lexend Deca", sans-serif;
    /* or your actual font */
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--primary);
    /* Replace with your theme color */
    margin: 0 auto 2.5rem;
    text-transform: uppercase;
}

.faqSec .headingCont h2 {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 4.25rem;
    text-transform: uppercase;
    color: #000000;
    margin: 0 auto 1.25rem;
}

.faqSec .headingCont .btnCont {
    margin-top: 0.75rem;
}

.faqSec .headingCont .btnCont button {
    padding: 1rem 2.5rem;
}

.faqSec .questions .accordion {
    color: #000000;
    padding-block: 1.25rem;
    border-bottom: 1px solid #52525b;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faqSec .questions .accordion .question {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.faqSec .questions .accordion .question svg {
    transition: all 0.3s ease-in-out;
}

.faqSec .questions .accordion .question span {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.625rem;
}

.faqSec .questions .accordion .answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding-left: calc(14px + 0.75rem);
}

.faqSec .questions .accordion .answer p {
    margin-top: 1rem;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.625rem;
    color: #52525b;
}

.faqSec .questions .accordion.active .question svg {
    transform: rotate(45deg);
}

.faqSec .questions .accordion .question img {
    transition: transform 0.3s ease;
}

.faqSec .questions .accordion.active .question img {
    transform: rotate(45deg);
}

/* Refinance Page End */

