:root {
    --white: #fff;
    --black: #000;
    --theme-color: #1c75bc;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

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

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    font-weight: normal;
    color: var(--black);
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--theme-color);
    transform-origin: center;
    transform: scaleX(0);
}

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

.form-inline {
    margin-left: 2rem;
    gap: 1rem 2rem;
}

.openSearch {
    font-size: 1.5rem;
    color: var(--white);
}

.openSearch:hover {
    color: var(--theme-color);
}

.themeBtn {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid var(--theme-color);
    border-radius: 25px;
    padding: 0.75em 2em;
}

.themeBtn:hover {
    background-color: var(--white);
    color: var(--theme-color);
}

.main-slider {
    height: 100%;
    position: relative;
    background-color: rgb(28 117 188/10%);
}

.outerCircle {
    height: 650px;
    width: 650px;
    border-radius: 50%;
    background-color: #052a6b;
    opacity: 0.2;
    position: absolute;
    left: -25%;
    z-index: 1;
    top: calc(50% - 325px);
    animation: pulse infinite 2s;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.main-slider h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    text-transform: uppercase;
}

.main-slider h2 span {
    font-size: 1.875rem;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.main-slider p {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
}

.main-slider .btn-group {
    gap: 1rem 2rem;
    align-items: center;
    width: 100%;
}

.callBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--black);
}

.callBtn span {
    font-size: 1.375rem;
    font-weight: 700;
}

.callBtn strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.main-slider .img1 {
    margin: -34rem 0 -5rem 0;
    position: relative;
    right: -18rem;
}

.main-slider .img1 .dots {
    position: absolute;
    bottom: 0;
    left: 18rem;
    z-index: -1;
    animation: pulse infinite 5s;
}

.main-slider .img1 .lines {
    position: absolute;
    top: 36%;
    left: -5rem;
    animation: wobble infinite 5s;
    z-index: -1;
}

.main-slider .img2 {
    position: absolute;
    top: 4rem;
    left: 0;
    animation: pulse infinite 10s;
}

.main-slider .img3 {
    position: absolute;
    top: 25rem;
    left: 20rem;
    animation: pulse infinite 5s;
}

.main-slider .carousel-indicators {
    margin: 0;
    gap: 0.75rem;
    left: 18rem;
    position: absolute;
    width: fit-content;
    width: -moz-fit-content;
    display: flex;
    align-items: center;
    bottom: 2rem;
}

.main-slider .carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    opacity: 1;
    box-sizing: border-box;
    flex: unset;
    border: 0;
    margin: 0;
    transition: 0.3s ease-in-out;
}

.main-slider .carousel-indicators li.active {
    transform: scale(1.5);
    background-color: var(--theme-color);
}

.scroll-down {
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    z-index: 1000;
    gap: 8rem 0;
    line-height: 20px;
    position: absolute;
    bottom: 2rem;
    left: 5rem;
}

.scroll-down::after {
    content: "";
    height: 5.5rem;
    width: 1px;
    background-color: var(--black);
    position: absolute;
    left: 10px;
    bottom: 30px;
}

.scroll-down small {
    font-size: 1rem;
    font-weight: 700;
    writing-mode: vertical-rl;
}

.scroll-down span::before {
    position: absolute;
    top: 5px;
    left: 10px;
    content: "";
    width: 3px;
    height: 3px;
    margin-left: -5px;
    background-color: var(--black);
    border-radius: 100%;
    box-sizing: border-box;
}

.scroll-down span::after {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    width: 12px;
    height: 12px;
    content: "";
    margin-left: -5px;
    border-left: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

/* Search Box */
.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1111;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
}

.searchBox .form-group {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.searchBox input {
    min-height: 60px;
    width: 100%;
    border: none;
    padding: 1rem;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.searchBox button {
    background: #fff;
    color: #000;
    width: 60px;
    min-height: 60px;
    border: none;
}

.searchBox .searchClose {
    position: absolute;
    display: block;
    right: 2rem;
    top: 2rem;
    color: #fff;
    font-size: 2.15rem;
    cursor: pointer;
}

.secHeading {
    font-size: 3.125rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #262262;
}

.secHeading span {
    display: block;
    font-size: 1.375rem;
    color: var(--theme-color);
}

/* getStartedSec */

.getStartedSec .houseImg {
    position: absolute;
    left: -757px;
    bottom: 0;
}

.formContainer {
    margin-top: 2rem;
}

.formContainer label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.formContainer .form-check label {
    font-weight: 400;
    line-height: 1.4;
}

.formContainer .form-group .form-control {
    border-color: #d6d6d6;
    border-radius: 50px;
    height: 66px;
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1rem;
}

.formContainer .form-group select.form-control {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-image: url(../images/polygon.png);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

.formContainer .form-group,
.checboxWrap {
    margin-bottom: 1.75rem;
}

.checboxWrap [type="radio"]:checked,
.checboxWrap [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.checboxWrap [type="radio"]:checked + label,
.checboxWrap [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    color: #262262;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
}

.checboxWrap [type="radio"]:checked + label:before,
.checboxWrap [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--theme-color);
    border-radius: 100%;
    background: #fff;
}

.checboxWrap [type="radio"]:checked + label:after,
.checboxWrap [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--theme-color);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.checboxWrap [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.checboxWrap [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.formContainer button.themeBtn {
    width: 100%;
    margin-top: 1em;
    padding: 1rem;
}

.purchasingSec {
    background: rgb(28 117 188/10%) url(../images/bannerIco.png) 18% bottom/ auto no-repeat;
    backdrop-filter: blur(10px);
}

.purchasingSec::before {
    content: "";
    height: 650px;
    width: 650px;
    border-radius: 50%;
    background-color: #052a6b;
    opacity: 0.1;
    position: absolute;
    right: -25%;
    z-index: 1;
    top: calc(50% - 325px);
    animation: pulse infinite 2s;
}

.purchasingSec .secHeading,
.purchasingSec .secHeading span {
    color: var(--black);
}

.purchasingSec .imgWrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-right: -12rem;
}

.purchasingSec .imgWrap img {
    border-radius: 50px;
}

.purchasingSec .imgWrap figure:nth-child(2) {
    transform: scale(0.75);
    z-index: 1;
    position: relative;
}

.purchasingSec .imgWrap figure:nth-child(2) .topDots {
    position: absolute;
    border-radius: 0;
    top: -5rem;
    right: -2rem;
    z-index: -1;
}

.purchasingSec .imgWrap figure:nth-child(2) .btmDots {
    position: absolute;
    border-radius: 0;
    bottom: -5rem;
    left: -2rem;
    z-index: -1;
}

/* Feature Properties */
.featureSec .secHeading {
    color: var(--black);
}

.propertyThumb {
    margin-bottom: 2.5rem;
    position: relative;
}

.propertyThumb > a {
    display: block;
    overflow: hidden;
    position: relative;
}

.propertyThumb > a strong {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: 700;
    padding: 0.2rem 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.saleBadge {
    position: absolute;
    left: 0;
    top: 1rem;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    padding: 0.5em 0.5rem;
    text-transform: uppercase;
    z-index: 1;
    background-color: #ff3315;
}

.buyBadge {
    position: absolute;
    left: 0;
    top: 1rem;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    padding: 0.5em 0.5rem;
    text-transform: uppercase;
    z-index: 1;
    background-color: var(--theme-color);
}

.propertyThumb img {
    transition: 0.3s ease-in-out;
    width: 100%;
}

.propertyThumb .content {
    background: #fff;
    padding: 0.5rem;
}

.propertyThumb .content .title {
    margin: 0;
    display: block;
    color: var(--black);
    font-size: 1.875rem;
    font-weight: 600;
}

.propertyThumb .content .location {
    color: #acacac;
    font-size: 1.375rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.propertyThumb .content .location i {
    color: var(--theme-color);
}

.propertyThumb .content span {
    color: var(--black);
    font-weight: 600;
    line-height: 1;
    font-size: 1.125rem;
    display: inline-block;
}

.propertyThumb .content .info {
    display: flex;
    margin-top: 0.5rem;
    justify-content: space-between;
    align-items: center;
}

.propertyThumb .content .info i {
    display: inline;
    color: var(--theme-color);
}

.propertyThumb .content .info span {
    margin-right: 20px;
}

.propertyThumb:hover img {
    transform: scale(1.25);
}

/* loanInfoSec */
.loanInfoSec {
    text-align: center;
    padding: 10rem 0;
    background: url(../images/bgImg.jpg) center/cover no-repeat;
}

.loanInfoSec .secHeading {
    color: var(--white);
}

.loanInfoSec ul {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.loanInfoSec ul li {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
}

.loanInfoSec ul li i {
    color: var(--theme-color);
}

.loanInfoSec .btn-group {
    align-items: center;
    gap: 1rem 2rem;
}

.loanInfoSec .callBtn img {
    filter: brightness(100) invert(0);
}

.loanInfoSec .callBtn {
    text-align: left;
    color: var(--white);
}

/* servicesSec */
.servicesSec {
    background-color: #e7f0f7;
    padding: 12rem 0 8rem;
}

.servicesSec .container-fluid {
    padding: 0 5rem;
}

.servicesSec p {
    color: var(--black);
    line-height: 2.3;
}

.servicesSec .secHeading {
    color: var(--black);
}

.servicesSec figure {
    position: relative;
    z-index: 1;
}

.servicesSec figure img {
    border-radius: 50px;
}

.servicesSec figure .dots {
    position: absolute;
    top: -10rem;
    right: -4rem;
    z-index: -1;
    border-radius: 0;
}

.servicesSec .flex-row-reverse figure {
    margin-top: -17rem;
}

.servicesSec .flex-row-reverse figure .dots {
    right: auto;
    left: -4rem;
}

.servicesSec .counter {
    display: block;
    color: var(--black);
    font-size: 6.25rem;
    font-weight: 700;
    margin: 3rem 0 0;
    line-height: 1;
    opacity: 0.1;
}

/* Testimonial Sec */
.testimonialSec {
    background: url(../images/testBg.png) right bottom/contain no-repeat;
}

.testimonialSec .secHeading {
    color: var(--black);
}

.testimonialCard {
    padding: 1rem;
    text-align: center;
}

.testimonialCard h3 {
    color: var(--theme-color);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0;
}

.testimonialCard > img {
    border: 3px solid var(--theme-color);
}

.testimonialCard h4 {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    margin: 0;
    color: var(--black);
}

.testimonialCard p {
    font-weight: 500;
    color: #000000;
}

.testimonialCard span {
    display: inline-block;
    margin: 0.5rem 0;
}

.testimonialCard span i {
    color: #f3b50a;
    font-size: 1.75rem;
}

.slick-dots {
    bottom: -1rem;
}

.slick-dots li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 10px;
    width: 10px;
}

.slick-dots li button {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    padding: 3px;
    transition: 0.3s ease-in-out;
    background: #dfdddd;
}

.slick-dots li button:before {
    content: none;
    height: 10px;
    width: 10px;
}

.slick-dots li.slick-active button:before {
    content: "";
    border-radius: 50%;
    background-color: var(--theme-color);
}

.slick-dots li.slick-active button {
    transform: scale(1.5);
    border-color: transparent;
}

/* Begin: footer */

footer {
    background: #e7f0f7;
    padding-top: 6em;
    position: relative;
}

footer h3 {
    font-size: 1.875rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

footer p {
    color: var(--black);
    font-size: 1rem;
    margin: 1.5rem 0 0;
    font-weight: 600;
}

footer .links,
footer .contInfo {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 1.3rem 0;
}

footer .contInfo {
    gap: 2rem 0;
}

footer .links li a,
footer .contInfo li a {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
    text-transform: uppercase;
}

footer .contInfo li a {
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 0 1rem;
    line-height: 1.1;
}

footer .contInfo li a span {
    display: block;
    text-transform: none;
    font-size: 1.125rem;
}

footer .contInfo li a strong {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
}

footer .links li a:hover,
footer .links li a:focus {
    color: var(--theme-color);
}

.copyRight {
    border-top: 1px solid rgb(112 112 112/50%);
    padding: 2em 0;
    margin-top: 5em;
    align-items: center;
}

.copyRight p {
    margin: 0;
}

.footerSocial {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    justify-content: flex-start;
    gap: 0 6px;
}

.footerSocial a {
    font-size: 1rem;
    color: var(--black);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--white);
    width: 55px;
    height: 55px;
}

.footerSocial a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

/* END: footer */

/* Inner pages Css */
.paginationCustom .pagination {
    justify-content: flex-end;
    border-radius: 0;
    gap: 1rem;
}

.paginationCustom .pagination li a {
    color: var(--black);
    font-size: 1.125rem;
    border: 0;
    border-radius: 0;
    font-weight: 500;
}

.paginationCustom .pagination li.active a {
    background-color: var(--theme-color);
    color: var(--white);
}

/* .aboutInner  */
.aboutInner p {
    font-size: 1rem;
    line-height: 2.3;
    font-weight: 400;
    color: #2d2d2d;
}

.aboutInner .imgWrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-right: -12rem;
}

.aboutInner .imgWrap img {
    border-radius: 50px;
}

.aboutInner .imgWrap figure:nth-child(2) {
    transform: scale(0.75);
    z-index: 1;
    position: relative;
}

.aboutInner .imgWrap figure:nth-child(2) .topDots {
    position: absolute;
    border-radius: 0;
    top: -5rem;
    right: -2rem;
    z-index: -1;
}

.aboutInner .imgWrap figure:nth-child(2) .btmDots {
    position: absolute;
    border-radius: 0;
    bottom: -5rem;
    left: -2rem;
    z-index: -1;
}

.aboutInner h4 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    text-transform: uppercase;
}

.aboutInner ul li {
    list-style-type: disc;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.adviceSec figure {
    position: relative;
}

.adviceSec figure .dots {
    position: absolute;
    left: -5rem;
    bottom: -5rem;
}

.adviceSec figure img {
    border-radius: 50px;
}

.adviceSec::before {
    content: "";
    height: 650px;
    width: 650px;
    border-radius: 50%;
    background-color: #052a6b;
    opacity: 0.1;
    position: absolute;
    left: -25%;
    z-index: 1;
    top: calc(50% - 325px);
    animation: pulse infinite 2s;
}

.cntctSet .contInfo {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 2rem 0;
}

.cntctSet .contInfo li a {
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 0 1rem;
    line-height: 1.5;
}

.cntctSet .contInfo li a strong {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
}

.cntctSet .contInfo li a span {
    display: block;
    text-transform: none;
    color: var(--white);
    font-size: 1.125rem;
}

.cntctInfo {
    padding: 5rem 0;
}

.cntctInfo .oneTop {
    background: linear-gradient(to left, var(--white) 55%, var(--theme-color) 55%);
    border-radius: 25px;
    padding: 3.5rem;
    border: 2px solid #f3f3f3;
}

.cntctSet .contInfo li a img {
    filter: brightness(0) invert(1);
}

.cntctSet p {
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: white;
    font-weight: 300;
}

.cntctSet h1 {
    margin: 0 0 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.cntctInfo {
    padding: 7rem 0;
    background: url(../images/estimatebg.jpg) no-repeat top center/ cover;
}

.estimate {
    margin: 7rem 0 0;
}

.estimate a {
    background: transparent;
    color: var(--white);
}

.estimate a:hover {
    background: var(--white);
    color: var(--theme-color);
}

.estimateForm {
    padding: 0 0 0 5rem;
}

.estimateForm label {
    display: block;
    font-size: 15px;
    color: #0006;
    font-weight: 500;
    margin: 0 0 0.4rem;
}

.estimateForm input {
    all: unset;
    border-bottom: 2px solid #c7c7c7;
    width: 100%;
    height: 65px;
    font-weight: 600;
    margin: 0 0 2rem;
}

.estimateForm textarea {
    all: unset;
    border-bottom: 2px solid #c7c7c7;
    width: 100%;
    height: 115px;
    font-weight: 600;
    margin: 1rem 0 2rem;
}

.estimateForm .themeBtn {
    display: table;
    margin-left: auto;
}

button.themeBtn .submitBtn {
    padding: 1rem 2rem;
}

/* Agreement Form Pages Css Start */

.agreementSec p input {
    border-top: none;
    border-left: none;
    border-radius: unset;
    border-right: none;
    vertical-align: text-bottom;
    margin: 0 5px;
    border-color: black;
}

.agreementSec .form-group .form-control {
    border-top: none;
    border-left: none;
    border-radius: unset;
    border-right: none;
    border-color: black;
}

.agreementSec h2,
h3,
h4,
h5,
p,
label {
    color: black;
}

.agreementSec p span {
    color: black;
    font-weight: 800;
}

.agreementSec h2,
h3, h5 {
    text-align: center;
    padding: 1rem 0;
}

.agreementSec h2, h3 {
    font-weight: 700;
}

.agreementSec h5 {
    font-size: 1.5625rem;
    font-weight: 600;
}

.agreementSec p {
    font-size: 1.125rem;
}

.agreementSec .form-group label {
    font-size: 1.25rem;
    font-weight: 700;
}

.agreementSec .form-group .text-muted {
    color: black !important;
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
}

.agreementSec .form-group .client {
    margin-top: 1.25rem;
}

.agreementSec hr {
    border-color: black;
    width: 50%;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Agreement Form Pages Css End */

.clientformSec .form-group .form-control {
    border-top: none;
    border-left: none;
    border-radius: unset;
    border-right: none;
    border-color: black;
}

.mainForm .form-control {
    border-top: none;
    border-left: none;
    border-radius: unset;
    border-right: none;
    border-color: black;
}

.clientformSec p, h4, label {
    color: black;
    font-size: 1.125rem;
}

.clientformSec p {
    margin-top: 1rem;
}

.clientformSec ul {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}

.clientformSec ul li {
    color: black;
    font-size: 1.125rem;
}

.clientformSec h3 {
    padding: 2.25rem 0;
}

.clientformSec .form-check {
    padding-bottom: 1rem;
}

.clientformSec h4 {
    font-weight: 700;
    color: black;
    margin-bottom: 1.25rem;
}

.clientformSec .form-group {
    margin-bottom: 2rem;
}

.form-check.form-check-inline label + input {
    margin-left: 5px;
}

.formsSec {
    text-align: center;
}

.privacySec h4 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: capitalize;
}

.privacySec a {
    color: black;
    font-weight: 600;
}

.privacySec p {
    margin: 2rem 0px;
}

.privacySec ul li {
    list-style-type: disc;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0px;
}

.privacyLink ul li a {
    color: black;
    font-weight: 600;
}

.privacyLink ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.privacyLink ul li:first-of-type{
  border-right: 1px solid #000;
  padding-right: 1rem;
}

/* Loan Form Sec */

#msform {
    text-align: center;
    position: relative;
    background: #E7F0F7;
}

#msform fieldset {
    background: #e5f1f8;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 1.25rem;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform input,
#msform textarea {
    padding: 8px 0.9375rem 8px 0.9375rem;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 2rem;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 1rem;
    letter-spacing: 1px
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0
}

#msform .action-button {
    color: #1C75BC;
    border: 2px solid #1C75BC;
    border-radius: 3.125rem;
    padding: 0.875rem 0.75rem;
    width: 28%;
    display: inline-block;
    background-color: transparent;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0.6rem;
}

.mainBtns {
    display: block;
}

#msform .action-button:hover {
    border: 2px solid #262262;
    background-color: #262262;
    color: var(--white);
}

#msform .themeBtns {
    background: unset;
    font-weight: 500;
    color: var(--white);
    background-color: #262262;
    border-radius: 3.125rem;
    padding: 0.75rem 2.375rem;
    width: auto;
    display: block;
    border: 2px solid #262262;
    margin: 0 auto;
}

.submitPara {
    padding: 3rem 3rem 0 3rem;
    font-size: 0.875rem;
}

#msform .mainCard .form-control {
    width: 26%;
    border-radius: 3.125rem;
    height: 55px;
    background: unset;
    border: 1px solid #D6D6D6;
    background-color: var(--white);
    display: unset;
    margin: 0rem 0.5rem 1.5rem 0.5rem;
}

.form-card h4 {
    text-align: center;
    font-size: 2rem;
}

.form-card p {
    text-align: center;
}

#msform .mainCard .form-control::placeholder {
    font-weight: 400;
    color: #606060;
}

#msform .action-button-previous {
    background: unset;
    color: #1C75BC;
    border: none;
    font-weight: 500;
    display: inline-block;
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 1.5625rem;
    color: #673AB7;
    margin-bottom: 0.9375rem;
    font-weight: normal;
    text-align: left
}

.purple-text {
    color: #673AB7;
    font-weight: normal
}

.steps {
    font-size: 1.5625rem;
    color: gray;
    margin-bottom: 0.625rem;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 1.875rem;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #673AB7
}

#progressbar li {
    list-style-type: none;
    font-size: 0.9375rem;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#progressbar li strong {
    color: #1C75BC;
    font-weight: 500;
    font-size: 1.375rem;
    margin-top: 0.625rem;
}

#progressbar li span {
    border-radius: 3.125rem;
    border: 2px solid #1C75BC;
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
}

#progressbar .active span img {
   filter: brightness(0) invert(1);
}

#progressbar .active span {
    background-color: #262262;
    border: 2px solid #262262;
}

h2#heading {
    font-size: 2.1875rem;
    color: #592e90;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#progressbar li:after {
    content: '';
    width: 81%;
    height: 4px;
    background: #1C75BC;
    position: absolute;
    left: 10.375rem;
    top: 1.5625rem;
}

#progressbar li:last-child::after {
    display: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #262262;
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: #262262;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}

#msform .mainCard {
    border: 6px solid #262262;
    border-radius: 1.25rem;
    text-align: center;
    padding: 6rem 0 6rem 0;
    margin-top: 4rem;
    max-height: 550px;
}

.form-card h2 {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: #262262;
    font-size: 2.1875rem;
    margin-bottom: 2rem;
}

.btn-group {
    gap: 3rem;
}
#progressbar .active strong {
    color: #262262;
}

.form-card h3 {
    text-transform: uppercase;
    color: #262262;
    font-size: 4.375rem;
}

.form-card h4 {
    font-size: 2.1875rem;
    text-transform: uppercase;
    color: #1C75BC;
    font-weight: 600;
}

.form-card p a {
    color: var(--black);
}

.loanSec {
    background-color: rgb(28 117 188 / 10%);
    padding: 12rem 0 12rem 0;
}

.loanBg {
    position: absolute;
    bottom: -10.5rem;
    left: 15rem;
    width: 25%;
    z-index: -1;
}
.licenseNum ul li {
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
}

.licenseNum ul li span {
    font-weight: 600;
    padding-right: 0.5rem;
}

.licenseNum {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}