
html,
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: var(--clr-grey24) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

body {
    overflow-x: hidden;
}


:root {
    --clr-primary: #3983ad;
    --clr-blue: #255c89;
    --clr-secondary: #92c753;
    --clr-grey: #6d6d6d;
    --clr-black: #000000;
    --clr-white: #fff;
    --clr-grey23: #5d6a7d;
    --clr-grey24: #f7f8fa;
    --clr-black2: #282828;
    --clr-orang: #df863a;
}



@font-face {
    font-family: 'MyriadLight';
    src: url('../fonts/MyriadLight.eot');
    src: url('../fonts/MyriadLight.eot') format('embedded-opentype'),
    url('../fonts/MyriadLight.woff2') format('woff2'),
    url('../fonts/MyriadLight.woff') format('woff'),
    url('../fonts/MyriadLight.ttf') format('truetype'),
    url('../fonts/MyriadLight.svg#MyriadLight') format('svg');
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Scrollbar track */
::-webkit-scrollbar {
    width: 15px;
    height: 8px;
    background: var(--clr-white);
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #1586b2;
    border-radius: 10px; /* Rounds the scrollbar thumb */
}

/* Optional: Scrollbar track with rounded edges */
::-webkit-scrollbar-track {
    border-radius: 10px; /* Rounds the scrollbar track */
}


::selection {
    background-color: #1586b2;
    color: var(--clr-white);
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

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

button {
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

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

p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--clr-black2);
}

input,
textarea,
select {
    font: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    padding: 0;
    text-align: left;
}

.container {
    max-width: 1140px;
}

/*  */

.line h2 {
    margin: 0;
    position: relative;
    padding-bottom: 12px;
    font-size: 35px;
    text-transform: capitalize;
}

.line h2::before {
    content: "";
    width: 210px;
    background: var(--clr-secondary);
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.line h2::after {
    content: "";
    width: 0px;
    background: var(--clr-orang);
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .5s;
}

/* effect */

.effect a {
    position: relative;
    text-decoration: none;
    color: #fff;
}

.effect a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--clr-secondary);
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: all .5s;
}

.effect a:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 50px;
    border: none;
    max-width: fit-content;
    min-width: 160px;
    font-family: 'Bebas Neue';
    padding: 8px 40px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--clr-secondary);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    border-radius: 50px;
    border: none;
    max-width: fit-content;
    min-width: 160px;
    font-family: 'Bebas Neue';
    padding: 8px 40px;
    font-size: 28px;
}

.btn-secondary:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border: none;
}

.btn-info {
    background-color: var(--clr-grey23);
    color: var(--clr-white);
    border-radius: 50px;
    border: none;
    max-width: fit-content;
    min-width: 160px;
    font-family: 'Bebas Neue';
    padding: 8px 40px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-info:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border: none;
}


.btn-info-second {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    border-radius: 50px;
    border: none;
    max-width: fit-content;
    min-width: 160px;
    font-family: 'Bebas Neue', serif;
    padding: 8px 40px;
    font-size: 24px;
}

.btn-info-second:hover {
    background-color: var(--clr-orang);
    color: var(--clr-white);
    border: none;
}

.btn-outline {
    background: var(--clr-white);
    border: #f4f4f4 5px solid;
    min-width: 150px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 18px;
    padding: 7px 10px;
    border-radius: 30px;
    color: var(--clr-black2);
}

.btn-outline:hover,
.btn-outline:focus {
    background: #fff;
    border: var(--clr-secondary) 5px solid;
    color: var(--clr-black2);
}


.btn-danger {
    background-color: var(--clr-orang);
    color: var(--clr-white);
    border-radius: 50px;
    border: none;
    max-width: fit-content;
    min-width: 160px;
    font-family: 'Bebas Neue';
    padding: 8px 40px;
    font-size: 24px;
}

.btn-danger:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border: none;
}


/* Header title  */

.header-section h2 {
    font-size: 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--clr-black2);
}

#fixed-header {
    position: fixed;
    width: 100%;
    transition: all .5s;
}

#fixed-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 2px 6px #999;
    z-index: 999 !important;
    padding: 0px 40px;
    min-height: 80px;
}

.contact-link {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* header */
header {
    background: var(--clr-white);
    padding: 15px 40px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;
}

.location-icon {
    min-width: 24px;
}

.header-right {
    gap: 15px;
}

.header-right img {
    height: 24px;
}

.header-right .btn {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 22px;
    min-width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    line-height: 44px;
    filter: url(#white-text-shadow);
}

.navbar-nav li.nav-item {
    margin: 0 18px;
}

ul.navbar-nav > li.nav-item.dropdown > a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--clr-secondary);
    position: absolute;
    top: 29px;
    left: -4px;
    transition: all .5s;
    border: none !important;
}


ul.navbar-nav > li.nav-item.menu-item > a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--clr-secondary);
    position: absolute;
    top: 29px;
    left: 0px;
    transition: all .5s;
    border: none !important;
}

ul.navbar-nav > li.nav-item.dropdown:hover a::after {
    width: 100%;
}

ul.navbar-nav > li.nav-item > a:hover::after,
ul.navbar-nav > li.nav-item.dropdown.mactive > a::after {
    width: 100%;
}

ul.navbar-nav > li.nav-item > a:hover::after,
ul.navbar-nav > li.nav-item.dropdown.mactive > a::after {
    width: 100%;
}

.navbar-expand-md .navbar-nav .nav-link {
    color: var(--clr-black2);
    text-transform: uppercase;
    font-size: 15px;
    font-family: Poppins, serif ;
    padding-left: 0;
    padding-right: 0px;
    font-weight: 600;
}

.navbar div#navbarCollapse ul.navbar-nav li.nav-item .dropdown-menu {
    transition: all .4s;
}

.navbar-expand-md .navbar-nav > .nav-item:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border-radius: 6px;
    border: none;
    overflow: hidden;
    padding: 0;
}

.dropdown-menu ul {
    background-color: #fff;
    border: none;
    min-width: 200px;
    border-radius: 6px;
    padding: 0px 0 0;
    overflow: hidden;
    margin-top: 20px;
}


.dropdown-menu ul li a {
    border-bottom: solid 1px #e5e5e5;
    padding: 10px 30px;
    position: relative;
    text-transform: uppercase;
}

.dropdown-menu ul li a:hover {
    background-color: #93c954;
    color: #fff;
}

.dropdown-menu ul li a:hover::before {
    content: "■";
    display: inline-block;
    width: 15px;
    height: 15px;
    color: #fff;
    position: absolute;
    left: 12px;
    top: 9px;
}

.dropdown-menu ul li:last-child a {
    border-bottom: none;
}

/* hero-banner */
.hero-banner {
    height: calc(100vh - 190px);
    display: flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 20px;
    background-color: var(--clr-white);
}

.hero-banner h1 {
    color: var(--clr-black2);
    font-size: 70px;
    font-family: 'Bebas Neue';
    text-align: center;
}

.hero-banner p {
    font-family: 'Poppins';
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto 40px;
    justify-content: center;
    max-width: 660px;
}

.hero-banner a {
    min-width: 236px;
}

/* hero section */
.hero {
    padding-top: 105px;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    margin: -30px 0 0;
    background: #10263b;
    color: var(--clr-white);
    padding: 15px 25px;
    min-width: 280px;
    font-size: 44px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    position: relative;
}

.hero-title::before {
    content: "";
    width: 210px;
    background: var(--clr-secondary);
    height: 6px;
    position: absolute;
    right: 30px;
    bottom: -3px;
    animation: 2s ease-out 0s 1 slideInfLeft;
}

.breadcrumb-section {
    background: rgba(93, 105, 125, 0.7);
    padding: 18px 0 15px;
    position: absolute !important;
    width: 100%;
    z-index: 1;
    bottom: 0;
}

.breadcrumb-section .breadcrumb {
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0;
}

.breadcrumb-section nav {
    padding: 0px 42px;
}

.breadcrumb-section .breadcrumb li,
.breadcrumb-section .breadcrumb li a {
    color: #fff;
    text-transform: uppercase;
}

.breadcrumb-section .breadcrumb li.active {
    text-decoration: underline;
    color: #fff;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb > li {
    line-height: unset;
}

.breadcrumb > li > a {
    position: relative;
}

.breadcrumb > li > a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--clr-secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
}

.breadcrumb > li > a:hover::after {
    width: 100%;
}

.breadcrumb > li.breadcrumb-item.active {
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.breadcrumb > li.breadcrumb-item.active::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--clr-secondary);
    position: absolute;
    bottom: 0;
    right: -23px;
    transition: all 0.5s;
}


/* calculator section */

.calculator-section {
    padding-bottom: 60px;
    padding-top: 90px;
}

.calculator-section .container {
    max-width: 1140px;
}

/* counter-section */
.counter-section {
    background-color: var(--clr-primary);
    padding: 20px 0;
}

.counter-section label {
    font-family: 'Bebas Neue';
    color: #fff;
    font-size: 28px;
}

.counter-section .heart-icon img {
    max-width: 40px;
    margin-left: 20px;
}

.calculator-content h2 {
    margin-bottom: 10px;
    font-size: 38px;
}

.calculator-content p {
    font-size: 18px;
    line-height: inherit;
    color: var(--clr-grey);
}

/* info */

.info-section {
    /*margin-top: 90px;*/
    margin-bottom: 60px;
}

.info-section .container {
    max-width: 1140px;
}

.info-section a {
    background-color: var(--clr-blue);
    display: flex;
    flex-direction: column;
    min-height: 180px;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 20px;
    text-align: center;
}

.info-section a:hover {
    background-color: var(--clr-secondary);
}

.info-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--clr-white);
    font-size: 30px;
}

.info-section p {
    color: var(--clr-white);
    font-size: 16px;
}

/* testimonial-section */

.testimonial-section {
    padding: 80px 0;
    height: auto !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.testimonial-section .container {
    max-width: 900px;
}

.testimonial-header {
    margin-bottom: 50px;
}

.testimonial-header h3 {
    font-size: 38px;
    text-align: right;
    margin-bottom: 10px;
}

.rating-block {
    gap: 20px;
}

.testimonial-item {
    background-color: #e0e6ea;
    padding: 40px 60px 40px;
    position: relative;
    margin-bottom: 30px;
    border-bottom: solid 8px #f5f5f5;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    left: 15px;
    width: 40px;
    height: 40px;
    background-image: url(../images/left-icon.webp);
    top: 15px;
    background-size: 30px;
    background-repeat: no-repeat;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    right: 15px;
    width: 40px;
    height: 40px;
    background-image: url(../images/right-icon.webp);
    bottom: 15px;
    background-size: 30px;
    background-repeat: no-repeat;
}

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

.triangle_side {
    height: 0;
    width: 0;
    border-top: 60px solid #e0e6ea;
    border-right: 60px solid transparent;
    position: absolute;
    left: 10%;
    bottom: -30px;
    z-index: 1;
}

.rating-star {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-star span {
    font-weight: bold;
}

.rating-star img {
    max-height: 14px;
    width: auto !important;
    margin-left: 6px;
}

.testimonial-owner {
    margin-top: 20px;
}

.testimonial-owner h6 {
    font-weight: 600;
}

.testimonial-owner label {
    font-size: 12px;
}

.rating-item {
    margin-left: .5rem;
}

.rating-item i {
    color: var(--clr-blue);
    font-size: 20px;
}

.owl-nav {
    text-align: right;
    display: flex;
    justify-content: end;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    background-color: #f2f2f2 !important;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    margin-left: 15px;
    font-size: 20px !important;
    line-height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.owl-nav button span {
    position: absolute;
    top: 1px;
}

.testimonial-slider {
    max-width: 840px;
    margin: 0 auto;
}

.testimonial-slider button:focus {
    outline: 5px auto -webkit-focus-ring-color;
}

/* about-section */

.about-section {
    padding: 80px 0;
    background-color: var(--clr-white);
}


.about-content {
    margin-bottom: 80px;
}

.about-section h2 {
    color: var(--clr-primary);
    font-size: 38px;
    text-align: center;
    line-height: 50px;
    margin: 0 auto 10px;
    max-width: 800px;
}

.about-section p {
    color: var(--clr-grey);
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    font-size: 18px;
}

.about-img img {
    border-radius: 20px;
    overflow: hidden;
}

.about-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.about-action a {
    max-width: 360px;
    width: 100%;
}

.action-row {
    max-width: 900px;
    margin: 0 auto;
}


/* Footer */
footer {
    background:  center bottom / cover no-repeat;
    padding: 60px 0 20px;
    color: #fff;
    text-align: center;
}

footer .container {
    max-width: 1140px;
}

address {
    margin: 30px 0;
}

address p {
    text-align: center;
    color: #fff;
    font-weight: 400;
}

.footer-row {
    margin-bottom: 80px;
}

.sf-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    max-width: 100%;
}

.footer-menu {
    text-align: center;
    margin-top: 60px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px;
    position: relative;
}

/* social */

.social-link ul li {
    display: inline-flex !important;
    margin: 2px 2px;
    flex-direction: row !important;
    vertical-align: middle !important;
}

.social-link ul li a {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 22px;
    border: #fff 2px solid;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
}

.social-link ul li a:hover {
    background: #fff;
    color: #1b2b53 !important;
}

.glassdoor_ico {
    width: 18px;
    background: url(../images/glassdoor-ico.png) no-repeat;
    background-size: 19px auto;
    background-position: center;
}

.glassdoor_ico:hover {
    background: url(../images/glassdoor-ico-black.png) no-repeat !important;
    background-size: 19px auto !important;
    background-position: center !important;
    background-color: #fff !important;
}


/* mobile menu */

/* Overlay Styles */
/* Mobile Menu Icon */
.menu-button {
    width: 35px;
    height: 30px;
    position: relative;
    cursor: pointer;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.menu-button span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--clr-secondary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-button span:nth-child(1) {
    top: 0px;
}

.menu-button span:nth-child(2),
.menu-button span:nth-child(3) {
    top: 10px;
}

.menu-button span:nth-child(4) {
    top: 20px;
}

.menu-button.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}

.menu-button.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-button.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

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

#sidebar-menu {
    position: fixed;
    left: -340px;
    width: 340px;
    height: 100%;
    top: 0;
    background: #415f76;
    z-index: 11111;
    overflow-y: scroll;
    transition: left 0.5s;
}

/* Show sidebar */
#sidebar-menu.open {
    left: 0;
}

.sidebar-header {
    padding: 30px 0px;
}

.sidebar-actions {
    margin-top: 20px;
}

.apply-button {
    padding: 6px 14px;
}

.apply-button a {
    background: none;
    color: var(--clr-white);
    border: solid 2px var(--clr-white);
    border-radius: 50px;
    padding: 6px 22px;
    font-weight: 400;
    font-family: inherit;
}

.sidebar-menu .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
}

.sidebar-menu .accordion-item {
    background-color: transparent;
    border-left: none;
    border-right: none;
}

.sidebar-menu .accordion-button {
    background-color: transparent;
    color: var(--clr-white);
    text-transform: uppercase;

}

.sidebar-menu .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--clr-white);
    box-shadow: none;
    border-bottom: 1px solid #CCC;
}

.sidebar-menu .accordion-button:focus {
    box-shadow: none;
}

.sidebar-menu .accordion-item {
    border-bottom: 1px solid #CCC;
}

.sidebar-menu .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.sidebar-menu .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.sidebar-menu .accordion-body {
    background: #07253c;
}

.sidebar-menu .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-link {
    padding: 1rem;
    display: flex;
    text-transform: uppercase;
    color: var(--clr-white);
}

.accordion-link:focus {
    color: var(--clr-white);
}

.accordion-body .dropdown-item {
    padding: 12px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    text-transform: uppercase;
    color: var(--clr-white);
}

.desktop-hide {
    display: none;
}

.navbar-brand img {
    max-height: 50px;
}

/* calculator */
#calculator {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#calculator .content-section {
    border-radius: 20px;
}

.calculator-content {
    margin-bottom: 60px;
}


/* loan-programs-section */

.loan-programs-section {
    padding: 70px 0px;
    background-color: var(--clr-white);
}

.loan-programs-section .container {
    max-width: 1140px;
}

.loan-programs-content h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--clr-black2);
    margin-bottom: 20px;
}

.loan-programs-action {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.loan-programs-action a {
    min-width: 200px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.loanprograms-item {
    margin-bottom: 35px;
}

.w-300{
    height: 300px !important;
}

.loanprograms-item a {
    cursor: pointer;
}

.loanprograms-item a span {
    display: block;
    position: relative;
    /*font-style: italic;*/
    background: #10263b;
    color: var(--clr-white);
    padding: 10px;
    text-align: center;
}

.loanprograms-item a label {
    color: var(--clr-black2);
    padding: 40px 15px 40px;
    display: block;
    background: var(--clr-grey24);
    font-weight: 600;
    text-align: center;
    font-size: 1.4rem;
    cursor: pointer;
}

.loanprograms-item a span::after {
    content: "";
    width: 45%;
    height: 6px;
    background: var(--clr-secondary);
    position: absolute;
    right: 15%;
    bottom: -3px;
}

.loanprograms-item a span::before {
    content: "";
    width: 0%;
    height: 6px;
    background: var(--clr-secondary);
    position: absolute;
    right: 15%;
    bottom: -3px;
    transition: all .5s;
    z-index: 1;
}

.loanprograms-item:hover a span::before {
    width: 45%;
    background: #ee801e;
}

/* get started */

.get-started-section {
    padding: 70px 0;
}

.loan-info p {
    margin-bottom: 16px;
}

.loan-info p:last-child {
    margin-bottom: 0;
}

.intro-text {
    text-align: right;
}

.intro-text h2 {
    font-size: 40px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro-text h3 {
    font-style: italic;
    text-align: right;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    font-weight: 600;
    font-size: 28px;
}

.intro-text h3 span {
    color: var(--clr-secondary);
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
    filter: url(#white-text-shadow);
}

/* page-content-section */

.page-content-section {
    background-color: var(--clr-white);
    padding: 60px 0 60px;
}

.page-content-item {
    margin-bottom: 48px;
}

.page-content-item:last-child {
    margin-bottom: 0;
}

.page-content-title {
    font-weight: 600;
    color: var(--clr-black2);
    margin-bottom: 24px !important;
    padding-bottom: 16px;
}

.page-content-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.page-content-text:last-child {
    margin-bottom: 0;
}


/* team-section */

.team-section {
    background-color: var(--clr-white);
    padding-bottom: 40px;
}

.team-section figure img {
    width: 100%;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-member figcaption {
    padding: 25px 30px;
}

.team-member figcaption h4 {
    transition: all .5s;
    position: relative;
    padding-bottom: 10px;
    border-bottom: #ced0d4 6px solid;
    margin-bottom: 8px;
    font-style: italic;
    font-weight: 600;
    color: var(--clr-black2);
}

.team-member figcaption h4::after {
    content: '';
    position: absolute;
    width: 0%;
    left: 0;
    bottom: -6px;
    height: 6px;
    background-color: var(--clr-black);
    transition: all .5s;
}


.team-member figcaption p {
    font-style: italic;
    color: var(--clr-black);
}

.team-member:hover figcaption h4::after {
    width: 100%;
    background-color: var(--clr-secondary);
}

.team-member {
    position: relative;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    overflow: hidden;
    margin-bottom: 40px;
    background: var(--clr-white);
    margin-bottom: 60px;
    border: 1px solid #f1f1f1;
}

.team-member:hover {
    -webkit-filter: drop-shadow(0px 2px 3px #d6d6d6);
    filter: drop-shadow(0px 2px 3px #d6d6d6);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.team-member-row {
    padding: 0px 60px;
}


/* loan-type-section */

.lo-banner-section.dzsparallaxer:not(.mode-oneelement) {
    height: 380px;
}

.loan-type-section {
    padding: 70px 0;
    background-color: #fff;
}

.loan-content-block {
    padding-top: 80px;
}


.content-list {
    margin-bottom: 48px;
}

.content-list:last-child {
    margin-bottom: 0;
}

.content-list h2 {
    color: var(--clr-black2);
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 38px;
    position: relative;
}

.content-list h2::before {
    content: "";
    width: 210px;
    background: var(--clr-secondary);
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: -10px;
}

.content-list h2::after {
    content: "";
    width: 0px;
    background: #ee801e;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .5s;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 3px 0;
}

.content-list li span {
    width: 25px;
}

.content-list li p {
    font-size: 18px;
}

.loan-content {
    margin-top: 40px;
}

.loan-content p {
    font-size: 18px;
}

.loan-type-list {
    margin-top: 90px;
}

.loan-type-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.loan-type-list a {
    display: inline-block;
    background: #f9f9fb;
    color: var(--clr-black2);
    padding: 14px 26px;
    width: auto;
    text-align: center;
    position: relative;
    transition: all .5s;
}

.loan-type-list a:hover::after {
    opacity: 0;
}

.loan-type-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    height: 1px;
    width: 40px;
    background-color: #999;
    transition: all .5s;
}

@media (max-width: 767px) {
    .loan-type-list a {
        width: 280px;
    }
}

.loan-type-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    height: 4px;
    width: 0px;
    background-color: var(--clr-secondary);
    transition: all .5s;
}

.loan-type-list a:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    height: 4px;
    width: 60%;
    background-color: var(--clr-secondary);
}

/* find-section */

.find-section {
    padding: 70px 0px;
}

.find-section h1 {
    font-size: 39px;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    font-weight: 600;
    text-align: center;
}

/* locations-section */

.locations-section {
    padding: 70px 0px;
    background-color: #fff;
}

/* search */
.frm_rw input,
.frm_rw input::placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

input[type="text"] {
    font: 15px / 24px "Lato", Arial, sans-serif;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.m_b_30 {
    margin-bottom: 30px;
}

.m_b_20 {
    margin-bottom: 20px;
}

.search_frm .frm_rw {
    display: flex;
    align-items: start;
    gap: 10px;
    justify-content: space-around;
}

.search_frm {
    padding-right: 44px;
}

.search_frm .form-row .btnm {
    margin-left: 10px;
    margin-top: -6px;
    background-color: #06263c;
}

.btnm {
    background-color: #06263c;
    color: #fff;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    padding: 8px 16px 5px;
    height: 40px;
}

.txt_3 {
    border: none;
    background: none;
    border-bottom: #dddddd 4px solid;
    height: 40px;
    width: 100%;
    margin-bottom: 20px;
    color: #000;
    font-size: 17px;
    padding-left: 10px;
    padding-right: 10px;
}


.location-list {
    height: 540px;
    overflow-Y: auto;
    padding-right: 30px;
}

.btn-link {
    border: none;
    border-radius: 0;
    color: #fff;
    width: 100%;
    max-width: 120px;
    background: #1586b2;
    box-shadow: 5px 5px 0px #dddbd9;
    text-decoration: none;
}

.btn-link:hover {
    color: #fff;
    background: #000;
}


.branch_address {
    display: flex;
    align-items: end;
    width: 100%;
    margin: 0 auto 30px;
    gap: 5px;
    justify-content: space-between;
}

.branch_address address {
    margin: 0;
}

.branch_address address a {
    margin-bottom: 5px;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all .5s;
    display: flex;
    max-width: fit-content;
    color: #000;
}

.branch_address address span {
    font-size: 16px;
    line-height: 22px;
}

/* contact-section */

.contact-section {
    background-color: #fff;
    padding: 60px 0;
}

.msactive a {
    background-color: #93c954;
    color: #fff;
}

.contact-section h2 {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    font-size: 34px;
    margin-bottom: 48px;
}

.effect h2 {
    position: relative;
    text-transform: capitalize;
    padding-bottom: 12px;
}

.effect h2::before {
    content: "";
    width: 210px;
    background: var(--clr-secondary);
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.effect h2::after {
    content: "";
    width: 0px;
    background: #ee801e;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .5s;
}

.contact-address h3 {
    font-size: 35px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    margin-bottom: 16px;
}

.contact-address h3:before {
    content: "";
    width: 210px;
    background: #dddfe2;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.contact-address p {
    font-size: 16px;
    color: var(--clr-black2);
    line-height: 28px;
}

.contact-address a {
    color: var(--clr-black2);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
}

.contact-social-link {
    margin: 24px 0;
}

.contact-social-link ul {
    display: flex;
    gap: 2px;
}

.contact-social-link li a {
    display: inline-block;
    background: #f4f4f4;
    color: #000000;
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 34px;
    transition: all .5s;
    text-align: center;
    margin: 0px 2px 2px 0px;
}

.contact-social-link li a:hover {
    background: var(--clr-secondary);
    color: #fff;
}

/* back */

/*--Back top--*/
#back-to-top {
    position: fixed;
    bottom: 18px;
    right: 15px;
    z-index: 9999;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 30px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    border: 1px solid #87c13c;
    background: #87c13c;
    border-radius: 50%;
    color: #fff;
}

#back-to-top:hover {
    border: 1px solid #000;
    color: #fff;
    background: #000;
}

#back-to-top.show {
    opacity: 1;
}


/* from */
:focus {
    outline: none;
}

input[type="text"] {
    font: 15px/24px 'Muli', sans-serif;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}

:focus {
    outline: none;
}

input[type="text"] {
    font: 15px/24px "Lato", Arial, sans-serif;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.effect-5 ~ .focus-border {
    position: absolute;
    height: 36px;
    top: 0;
    left: 0;
    width: 0;
    transition: 0.4s;
}

.effect-5:focus ~ .focus-border {
    width: 100%;
    transition: 0.4s;
    border: 2px solid var(--clr-secondary);
}

.effect-6 ~ .focus-border {
    position: absolute;
    height: 36px;
    bottom: 0;
    right: 0;
    width: 0;
    transition: 0.4s;
}

.effect-6:focus ~ .focus-border {
    width: 100%;
    transition: 0.4s;
    border: 2px solid var(--clr-secondary);
}

.frm-fld {
    position: relative;
    margin-bottom: 15px;
}

.frm-fld input,
.frm-fld select {
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #eceef0;
    height: 50px;
    padding-left: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all .5s;
}

.frm-fld input:hover {
    border: 2px solid #1586b2;
}


.select-style {
    border: 1px solid transparent;
    overflow: hidden;
    background: #eceef0 url("../../assets/images/arrow.png") no-repeat 96% 40%;
    background-size: 34px;
}

.select-style select {
    padding: 5px 8px;
    width: 100%;
    border: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
}


.frm-fld .effect-5 ~ .focus-border {
    height: 50px;
}

.effect-5:focus {
    padding: 5px 25px 7px;
}

.frm-fld input::placeholder,
.frm-fld textarea::placeholder {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.frm-fld textarea {
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #eceef0;
    height: 100px;
    padding-left: 12px;
    padding-top: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all .5s;
}

.frm-fld textarea:hover {
    border: 2px solid #1586b2;
}

.frm-fld textarea.effect-5 ~ .focus-border {
    height: 100px;
    bottom: auto;
    top: 0;
}

textarea.effect-4:focus,
textarea.effect-5:focus,
textarea.effect-6:focus {
    padding: 5px 25px 7px;
    padding-top: 12px;
}


/* form-radio  */

.form-radio input[type="radio"].css3radio {
    display: none;
}

.form-radio label.toggler_r {
    display: block;
    position: relative;
    padding-left: 32px;
    padding-top: 2px;
    margin-bottom: 1em;
    cursor: pointer;
}

.form-radio label.toggler_r::before {
    content: '';
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background: #eceef0;

    border-radius: 25px;
    left: 0;
    top: 2px;
}

.form-radio label.toggler_r::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    left: 0px;
    top: 2px;
    overflow: hidden;
    transition: all 0.2s;
}

.form-radio input[type="radio"]:checked + label.toggler_r::after {
    background: var(--clr-secondary);
}

.contact-submit {
    font-family: 'Poppins', sans-serif;
    margin-top: 38px;
}


/* contact-content */


.contact-content-item {
    margin-bottom: 48px;
}

.contact-content-item h2 {
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-content-item p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-content-item p:last-child {
    margin-bottom: 0;
}

.contact-content-item a {
    color: var(--clr-black2);
}

/* link box */

.link-box {
    background: #f7f8fa;
    margin: 0px 5px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-black2);
    position: relative;
    text-align: center;
}

.link-box:hover {
    color: var(--clr-black2);
}

.link-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-black2);
}

.link-box::before {
    content: "";
    width: 0%;
    height: 6px;
    background: var(--clr-orang);
    position: absolute;
    right: 15%;
    bottom: 0;
    z-index: 9;
    transition: all .5s;
}

.link-box::after {
    content: "";
    width: 45%;
    height: 6px;
    background: #7f7f7f;
    position: absolute;
    right: 15%;
    bottom: 0;
}

.link-box {
    box-shadow: 3px 5px 10px 1px #f0f0f0;
}

.link-box:hover::before {
    width: 45%;
}

.link-row {
    --bs-gutter-x: 36px;
    --bs-gutter-y: 36px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}


/* news */

.news-list .btn {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 22px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    line-height: 44px;
    filter: url(#white-text-shadow);
}

.news-item h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: normal;
}

.news-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.news-item p {
    margin: 16px 0;
}

/* contact-content */

.contact-content {
    background-color: var(--clr-white);
}

/* action btn */

.action-btn {
    padding: 12px 30px;
    min-width: 260px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

/* page-heading */

.bg-grey {
    background: #f7f8fa;
}

.page-heading {
    padding: 70px 0px;
}

.page-heading h2 {
    text-transform: capitalize;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    margin-top: 0;
    font-weight: 600;
    text-align: center;
}

/* resources-content */
.resources-content {
    background-color: var(--clr-white);
    padding: 70px 0px;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 20px;
}


.content-text p:last-child {
    font-size: 18px;
    margin-bottom: 0;
}


/*  */

.credit-items-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.credit-item {
    width: 50%;
    margin-bottom: 25px;
    background-color: #f7f8fa;
}

.credit-item-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.credit-percentage {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
    margin-right: 20px;
    box-sizing: border-box;
    width: 13%;
    max-width: 72px;
    text-align: center;
}

.credit-percentage h2 {
    margin: 0;
    color: var(--clr-white);
    font-weight: 400;
    font-size: 27px;
    width: 100%;
    text-align: center;
}

.credit-description {
    width: 82%;
    padding: 20px 25px 20px 0;
    position: relative;
    z-index: 11;
}

.credit-description h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    font-weight: 600;
}

.credit-description p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: var(--clr-black2);
}

.bg-blue {
    background: #66aac3;
}

.bg-purple {
    background: #7b669e;
}

.bg-light-green {
    background: #a1b966;
}

.bg-red {
    background: #b25751;
}

.bg-dark-blue {
    background: #5a80b8;
}

.bg-white {
    background-color: var(--clr-white);
}

.credit-section {
    padding-bottom: 20px !important;
}

/*  */
.pb-70 {
    padding-bottom: 70px;
}

.Pt-70 {
    padding-top: 70px;
}

.access-links {
    background-color: #fff;
}

.access-links .loan-type-list {
    margin-top: 0;
}

.access-links .container {
    max-width: 1280px;
}

/*  */

.list-content ul li {
    background: url(../images/check.png) no-repeat left top;
    min-height: 35px;
    padding-left: 52px;
    font-size: 16px;
    padding-top: 6px;
    margin-bottom: 10px;
}

.list-content li span {
    width: 25px;
}

.list-content li p {
    font-size: 18px;
}

/* tabs */

.tb-number {
    border: 2px solid #ddd;
    width: 45px;
    display: inline-block;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 41px;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    transition: all .5s;
    background-color: var(--clr-white);
    font-size: 20px;
    color: var(--clr-black2);
}

.active .tb-number {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    padding-top: 8px;
    margin-left: 7px;
}

.tab-title {
    transition: all .5s;
    position: relative;
    margin-left: 16px;
    color: var(--clr-black2);
    font-size: 18px;
}

ul.nav.nav-tabs {
    border: none;
}

ul.nav.nav-tabs li button {
    border: none;
}

ul.nav.nav-tabs li a {
    display: block;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0;
    margin: 0;
    color: var(--clr-black2);
    font-size: 18px;
}

.active .tab-title {
    margin-left: 5px;
}

button .tab-title::after {
    content: '';
    position: absolute;
    width: 0%;
    background: #92c753;
    height: 4px;
    left: 25%;
    bottom: -5px;
    transition: all .5s;
}


.tab-section ul.nav.nav-tabs li button.active .tb-number,
.tab-section ul.nav.nav-tabs li:hover button .tb-number {
    background-color: #87c13c;
    color: #fff !important;
    border: 2px solid #87c13c;
    color: #282828;
}

.tab-section ul.nav.nav-tabs li a.active .tab-title,
.tab-section ul.nav.nav-tabs li:hover button .tab-title {
    font-size: 27px;
    font-weight: 400;
}

.tab-section ul.nav.nav-tabs li:hover button .tab-title::after {
    width: 100%;
}

.tab-section ul.nav.nav-tabs li button.active .tab-title::after {
    width: 100%;
}


/* According */
.faq-section .accordion-button.collapsed {
    font-size: 20px;
    background: #eceef0;
    width: 100%;
    max-width: 600px;
    text-align: left;
    color: #282828;
    display: block;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
}

.faq-section .accordion-button {
    background: #10263b;
    border-radius: 0;
    color: #fff;
    white-space: inherit;
    box-shadow: none;
    outline: none;
    width: 100%;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.faq-section .accordion-item {
    margin-bottom: 20px;
    border: none;
}

.faq-section .accordion-button {
    padding-left: 45px !important
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: "\f068";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    background-image: none;
    position: absolute;
    left: 12px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
}

.faq-section .accordion-button::after {
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background-image: none;
    position: absolute;
    left: 12px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section .accordion-header {
    position: relative;
    max-width: 600px;
}

.faq-section .accordion-header::after {
    content: "";
    width: 0px;
    height: 6px;
    background: #ee801e;
    position: absolute;
    right: 30px;
    bottom: -6px;
    transition: all .5s;
}

.faq-section .accordion-item:hover .accordion-header::after {
    width: 200px;
    background: #92c753;
}

.faq-section .accordion-item.active .accordion-header::after {
    width: 200px;
    background: #92c753;
}

/* effect-8 */

.effect-8 h2 {
    margin: 0;
    position: relative;
    padding-bottom: 12px;
    font-size: 35px;
    text-transform: capitalize;
}

.effect-8 h2::before {
    content: "";
    width: 210px;
    background: #92c753;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.effect-8 h2::after {
    content: "";
    width: 0px;
    background: #ee801e;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .5s;
}


/* dons-col */

.dons-col:hover .effect-8 h2::after {
    width: 210px;
}

.dons-col h2 {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
}


.do-list ul li {
    background: url(../images/do.jpg) no-repeat left top;
    min-height: 36px;
    padding-left: 50px;
    font-size: 16px;
    padding-top: 6px;
    margin-bottom: 10px;
    background-size: 39px !important;
}

.dont-list ul li {
    background: url(../images/dont.jpg) no-repeat left top;
    min-height: 36px;
    padding-left: 50px;
    font-size: 16px;
    padding-top: 6px;
    margin-bottom: 10px;
    background-size: 39px !important;
}

.do-dont-section {
    padding-bottom: 70px;
}

/* content-list */

.content-list p {
    font-size: 18px;
}

/* checklist  */

.checklist-section .list-content {
    margin-bottom: 70px;
}

.checklist-section .list-content:last-child {
    margin-bottom: 0;
}

.checklist-section .list-content h2 {
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--clr-black2);
}

.checklist-section .list-content h4 {
    margin-bottom: 40px;
    font-size: 18px;
}

.checklist-section .list-content li {
    font-size: 16px;
    background-size: 30px;
    padding-left: 40px;
    padding-top: 0;
}

/* calculat-section */


.calculat-section {
    padding: 0 0 70px;
}

.calculat-list ul li {
    margin-bottom: 15px;
}

.calculat-list ul li a {
    display: block;
    position: relative;
    background: #eceef0;
    padding: 10px 50px;
    font-size: 17px;
    color: var(--clr-black2);
    transition: all .5s;
}

.calculat-list ul li a:hover,
.calculat-list ul li.active a {
    background: #10263b;
    color: var(--clr-white);
}

.calculat-list ul li a:before {
    content: "";
    width: 0%;
    height: 6px;
    background: #10263b;
    position: absolute;
    right: 10%;
    bottom: -3px;
    transition: all .5s;
}

.calculat-list ul li a:hover:before,
.calculat-list ul li.active a:before {
    width: 35%;
    background: var(--clr-secondary);
}

/* logo-section */

.logo-section {
    background: #f6f6f6;
}

.logo-section ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.careers-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.careers-btn a {
    border-radius: 15px;
    max-width: max-content;
    min-width: 235px;
}

/* leadership-section */

.leadership-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.cta-leadership {
    display: flex;
    justify-content: center;
}

.cta-leadership a {
    font-family: 'Poppins', sans-serif;
}


.leader-image {
    width: 280px;
    height: 280px;
    border-radius: 100%;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.leader-info h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-black2);
    display: flex;
    flex-direction: column;
}

.leader-info h6 span {
    font-size: 20px;
    font-weight: bold;
}

.leader-info p {
    text-align: center;
    margin-bottom: 1rem;
}

/* leadership-content */

.leadership-content a.btn {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    filter: url(#white-text-shadow);
}

.leadership-content h3 {
    margin: 30px 0;
}

.leadership-content p {
    margin-bottom: 30px;
}

.video-section {
    padding: 30px 0 60px;
}

.o-video {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
}

.o-video > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* lo-list-section */
.lo-list-section {
    padding: 70px 0;
}

.lt-filter {
    width: 100%;
    padding-bottom: 70px;
}

.lt-filter.filter-sticky {
    position: sticky;
    z-index: 9;
}

.ltf-inner {
    background-color: #f0f0f0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 4%;
    align-items: center;
    justify-content: space-around;
}

.ltf-inner a {
    color: #282828;
    display: block;
    padding: 3px 12px;
    position: relative;
    transition: all .5s;
}

.ltf-inner a:hover {
    color: #fff;
}

.ltf-inner a::after {
    content: '';
    position: absolute;
    background-color: transparent;
    height: 51px;
    width: 100%;
    left: 0;
    z-index: 1;
    top: 0px;
    transition: all .5s;
}

.ltf-inner a.flt-active {
    color: #fff;
}

.ltf-inner a:hover::after,
.ltf-inner a.flt-active::after {
    top: -8px;
    background-color: #92c753;
}

.ltf-inner a span {
    position: relative;
    z-index: 9;
}

.find_section ul li {
    margin-bottom: 10px;
    background: #fff;
    padding: 60px;
    border-left: 5px solid #dfe4ee;
    transition: all .5s
}

.find_section ul li:hover {
    border-left: 5px solid #df863a;
}

.find_section ul li:hover {
    -webkit-filter: drop-shadow(0px 3px 4px #d6d6d6);
    filter: drop-shadow(0px 3px 4px #d6d6d6);
}

.comlo_list ul li {
    padding: 14px 30px;
}

.comlo_list ul li {
    padding: 14px 30px;
    border-left: 5px solid #dfe4ee;
}

.comlo_list ul li:hover {
    border-left: 5px solid #df863a;
}


/* new */
.element-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.element-content a {
    width: max-content;
    color: var(--clr-black2);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.element-content span {
    font-size: 16px;
}

.element-action {
    align-items: center;
    justify-content: center;
    gap: 25px;
    display: flex;
}

.element-action a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    min-width: max-content;
    padding: 6px 20px;
    height: 37px;
    margin: 0;
}

.element-action .btn-outline {
    font-weight: 400;
    height: 42px;
    font-family: 'Poppins', sans-serif;
}

/*  */

.mortgage-terms {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.mortgage-terms p {
    font-size: 18px;
}

.mortgage-terms:hover .effect h2::after {
    width: 210px;
}

.pb-0 {
    padding-bottom: 0;
}


/*  */
.loan-program-section .loan-option {
    min-height: 220px;
}

.loan-program-section .loan-option:hover {
    box-shadow: none !important;
}

.loan-option {
    background: #f7f8fa;
    text-align: center;
    margin: 0px 5px;
    min-height: 150px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loan-option::after {
    content: "";
    width: 45%;
    height: 6px;
    background: #7f7f7f;
    position: absolute;
    right: 15%;
    bottom: -6px;
}

.loan-option:hover {
    box-shadow: 3px 5px 10px 1px #f0f0f0;
}

.loan-option::before {
    content: "";
    width: 0%;
    height: 6px;
    background: #ee801e;
    position: absolute;
    right: 15%;
    bottom: -6px;
    z-index: 9;
    transition: all .5s;
}

.loan-option:hover::before {
    width: 45%;
}


.text-content p {
    font-size: 18px;
    margin-bottom: 16px;
}


.text-content p:last-child {
    margin-bottom: 0;
}

/* privacy-policy-section */

.privacy-policy-section {
    padding: 70px 0px;
}

.privacy-policy-section p {
    font-size: 16px;
}

.privacy-policy-section p {
    margin-bottom: 20px;
}

.policy-action {
    display: flex;
}

.policy-action a {
    color: var(--clr-orang);
}

.CookieDeclarationType {
    display: block;
    margin: 12px 0 12px 0;
    padding: 8px 8px 0 8px;
    border: 1px solid #333333;
    vertical-align: top;
}

.CookieDeclarationTypeHeader {
    font-weight: bold;
}

.CookieDeclarationTypeDescription {
    margin: 2px 0 16px 0;
}

.CookieDeclarationTable {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 18px 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.CookieDeclarationTableHeader {
    font-weight: bold;
    border-bottom: 1px solid #777777;
    text-align: left;
    padding: 4px;
    overflow: hidden;
}

.CookieDeclarationTableCell {
    text-overflow: ellipsis;
    word-wrap: break-word;
    border-bottom: 1px solid #777777;
    vertical-align: top;
    padding: 4px 4px 5px 4px;
}


.link-orange {
    color: var(--clr-orang) !important;
    margin-top: 30px;
    margin-bottom: 60px;
    display: flex;
}

.link-orange::after {
    display: none;
}

.btn-submit .btn-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    max-width: fit-content;
    min-width: 150px;
}

.blist li {
    position: relative;
    list-style: disc;
    margin-left: 15px;
}

/* licensing-box */

.licensing-box h3 {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.licensing-box .link-box {
    flex-direction: column;
    align-items: start;
    padding: 20px;
    box-shadow: 3px 5px 10px 1px #f0f0f0;
    height: 100%;
}

.licensing-box .link-box p {
    text-align: left;
}

.map_adrs {
    margin-top: 150px;
}

/* responisve */
@media (min-width: 992px) {
    .about-section .container {
        max-width: 1140px;
    }

    .faq-section .accordion-body p {
        padding-left: 60px;
        font-size: 16px;
    }

}

@media (max-width: 973px) {
    .sm-center {
        display: flex;
        justify-content: center !important;
    }

}

@media (max-width: 991px) {
    .map_adrs {
        margin-top: 20px;
    }

    .faq-section .accordion-button.collapsed {
        max-width: 100%;
    }


    .breadcrumb-section .breadcrumb {
        justify-content: center;
    }

    .content-img {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }


    .credit-item {
        width: 100%;
        margin-bottom: 25px;
        background-color: #f7f8fa;
    }

    .contact-address {
        margin-top: 30px;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        font-size: 12px;
        padding: 0px 10px 0px;
    }

    .mobile-hide {
        display: none !important;
    }

    .desktop-hide {
        display: flex;
    }

    .hero-banner p {
        display: inherit;
    }

    .hero-banner a {
        padding: 6px 30px;
        font-size: 20px;
    }

    .about-img {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
    }

    .about-content {
        margin-bottom: 40px;
    }

    .info-section a {
        margin-bottom: 20px;
    }

    .testimonial-header h3 {
        margin-bottom: 30px;
    }

    .rating-number {
        display: flex;
        flex-direction: column;
    }

    .rating-number span i {
        color: var(--clr-blue);
    }

    .footer-logo {
        margin: 40px 0 0;
    }

    .heart-icon {
        display: none;
    }

    .counter-section label {
        text-align: center;
    }

    .team-member-row {
        padding: 0px 20px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .page-content-title {
        font-size: 24px;
    }

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

    .effect a {
        word-break: break-all;
    }

    #fixed-header.fixed-header {
        padding: 0px 0;
    }

    .dons-col {
        margin-bottom: 40px;
    }

}

@media (max-width: 767px) {

    .content-text p {
        text-align: center;
    }

    .breadcrumb-section nav {
        padding: 0px 5px;
    }

    .calculat-list ul li a {
        padding: 10px 20px;
    }

    .credit-percentage {
        width: 20%;
        max-width: 65px;
    }

    .credit-description {
        width: 75%;
        padding: 20px 10px 20px 0px;
    }

    header {
        padding: 15px 0;
        min-height: 90px;
    }

    .hero-action {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-banner {
        height: auto;
        padding-bottom: 80px;
        padding-top: 40px;
    }

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

    .hero-title {
        font-size: 24px;
    }

    .intro-text {
        text-align: left;
    }

    .intro-text h3 {
        text-align: left;
        margin-bottom: 10px;
    }

    .intro-text h2 {
        font-size: 30px;
    }

    .loan-programs-action {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .get-started-section {
        padding: 50px 0;
    }

    .loan-programs-section {
        padding: 50px 0px;
    }

    footer .btn-primary {
        font-size: 18px;
    }

    .intro-text {
        margin-bottom: 20px;
    }

    .hero-title {
        min-width: auto;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav li.nav-item {
        margin: 0 9px;
    }

    .header-right .btn {
        min-width: 135px;
    }

    .navbar-brand img {
        height: 40px;
        width: auto;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        font-size: 12px;
    }

}


/* Aniamtion */

@keyframes slideInfLeft {
    0% {
        transform: translateX(-40%);
    }

    100% {
        transform: translateX(0);
    }
}

.content-list ul,
.content-list ol {
    margin-bottom: 40px;
}

.content-list p {
    margin-bottom: 1rem;
}

.content-list li p {
    margin-bottom: 0;
/
}

.no-scroll {
    overflow: hidden;
}


/*CKEIDTOR GLOBAL CSS*/


.main_content :first-child,
.ck-content :first-child {
    margin-top: 0px !important;
    padding-top: 0px !important;
}


.main_content h1, .ck-content h1 {
    padding-top: 20px;
    padding-bottom: 10px;
}

.main_content h2 {
    margin: 0;
    position: relative;
    padding-bottom: 12px;
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--clr-black2);
    margin-bottom: 24px !important;
    margin-top: 48px !important;
}

.main_content h2::before {
    content: "";
    width: 210px;
    background: var(--clr-secondary);
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.main_content h2::after {
    content: "";
    width: 0px;
    background: var(--clr-orang);
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .5s;
}


.main_content h3, .ck-content h3 {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0px;
}

.main_content h4, .ck-content h4 {

    padding-bottom: 16px;
    margin: 0px;
}

.main_content p {
    font-size: 18px;
    margin-bottom: 16px;
}

.ck-content p {
    font-size: 16px;
    margin-bottom: 16px;
}

.main_content div, .ck-content div {
    padding-top: 5px;
    padding-bottom: 5px;
}

.main_content span, .ck-content span {
    padding-top: 5px;
    padding-bottom: 5px;
}

.main_content ul, .ck-content ul,
.main_content ol, .ck-content ol {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    list-style-position: inside;
    line-height: 20px;
    margin: 0px !important;
}

.main_content li, .ck-content li {
    padding-top: 5px;
    padding-bottom: 5px;
    list-style: none !important;;
}

.main_content ul, .ck-content ul {
    padding-left: 20px;
    line-height: 20px;
}

.main_content ul li, .ck-content ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    list-style: disc;
    padding-left: 10px;
    line-height: 20px;
}

.main_content ul li::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
     background-image: url('../../website/images/check.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right:15px;
}

blockquote {
    padding-left: 20px;
    border-left: solid 6px #b3ded8;
    margin-top: 15px;
}


.custom-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    max-width: fit-content;
    min-width: 150px;
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    border-radius: 50px;
    border: none;
}

.is-invalid {
    border: 2px solid #ae1919 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 24 24'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4m0 4h.01M21 12c0 5-4 9-9 9S3 17 3 12 7 3 12 3s9 4 9 9z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}


.frst_grd_lp_new {
    background: #f7f8fa;
    min-height: 220px;
    text-align: center;
    margin: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Ensure the pseudo-elements are positioned relative to the container */
}

.frst_grd_lp_new::after {
    content: "";
    width: 0%;
    height: 8px;
    background: #ee801e;
    position: absolute;
    right: 15%;
    bottom: -5px;
    z-index: 9;
    transition: all .5s;
}

.frst_grd_lp_new::before {
    content: "";
    width: 45%;
    height: 8px;
    background: #7f7f7f;
    position: absolute;
    right: 15%;
    bottom: -5px;
}

.frst_grd_lp_new:hover::after {
    width: 45%; /* Expands the line to cover the full width */
}

.frst_grd_lp_new:hover {
    box-shadow: 3px 5px 10px 1px #f0f0f0;
}


/*CKEIDTOR GLOBAL CSS*/


.main_content a:not(.btn):hover,
.main_content a:not(.btn):focus,
.main_content a:not(.btn):active,
.ck-content a:not(.btn):hover,
.ck-content a:not(.btn):focus,
.ck-content a:not(.btn):active {
    color: black;
    cursor: pointer;
}


.ck-content a:not(.btn)::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
    background-color: #fdd252;
    bottom: -2px;
}
.post-content hr {
    background: #dedede;
    border: 0;
    height: 2px !important;
    margin: 15px 0;
}

.main_content a:not(.btn):hover::after,
.main_content a:not(.btn):focus::after,
.main_content a:not(.btn):active::after,
.ck-content a:not(.btn):hover::after,
.ck-content a:not(.btn):focus::after,
.ck-content a:not(.btn):active::after {
    transform: translateX(0);
    opacity: 1;
    color: #008cc1;
}

.checkrw ul li {
    /*background: url(../../website/images/check.png) no-repeat left top;*/
    min-height: 35px;
    padding-left: 52px;
    font-size: 18px;
    padding-top: 6px;
    margin-bottom: 10px;
    list-style: none !important;
    list-style-position: unset !important;
    list-style-type: none !important;
}

.lo-list {
    min-height: auto;
    overflow-Y: auto;
    padding-right: 30px;
}


/* 3/10/2024 */
.lo-banner-section.dzsparallaxer:not(.mode-oneelement) {
    height: 380px;
}

.testimonial-bg {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}

.call-action-section {
    padding: 90px 0;
    background: #fff;
}

.call-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.call-action-info h2 {
    color: #282828;
    margin-top: 0;
    font-weight: 600;
    font-size: 2rem;
}

.call-action-info p {
    font-size: 18px;
    margin-top: 30px;
}

/* loan-officer-section */

.loan-officer-section {
    background: #f7f8fa;
    padding: 85px 0;
}

.loan-officer-detail h2 {
    font-size: 42px;
    color: #282828;
    font-weight: 700;
    margin-bottom: .5rem;
}

.loan-officer-detail p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.loan-officer-address {
    margin: 0;
}

.loan-officer-section .row {
    align-items: end;
}

.loan-officer-address p {
    font-size: 20px;
    line-height: 28px;
    color: #282828;
    text-align: left;
    margin-bottom: 1rem;
}

.loan-action {
    font-size: 20px;
}

.loan-action a {
    color: #282828;
    font-size: 20px;
    line-height: 28px;
}

.lo-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 30px;
}

.lo-link li {
    margin-right: 25px;
    width: 50px;
    text-align: center;
}


.lo-link li a {
    position: relative;
}
.lo-link li span{
    font-weight: 500;
}

.lo-link li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: #92c753;
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: all .5s;
}

.lo-link li a:hover::after {
    width: 100%;
}

.lo-link li .icon {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.lo-link li .icon img {
    max-height: 35px;
    margin: 0 auto;
}

.loan-officer-img {
    position: relative;
    text-align: right;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-20%);
    }

    100% {
        transform: translateX(0);
    }
}

.img-overly {
    width: 300px;
    height: 9px;
    background: #92c753;
    position: absolute;
    bottom: -2px;
    left: 31px;
    animation: 2.4s ease-out 0s 1 slideInFromLeft;
}

.loan-officer-img img {
    max-width: 300px;
}

.lo-socials {
    padding-right: 60px;
    padding-top: 20px;
}

.lo-socials li a {
    display: block;
    color: #92c752;
    border: #92c752 2px solid;
    transition: all .5s;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 22px;
    border-radius: 50px;
}

.lo-socials li a:hover {
    color: #fff;
    border: #000 2px solid;
    background: #000;
}

.modal {
    --bs-modal-zindex: 1155;
}


.request-form .modal-content {
    padding: 10px 30px 40px;
}

.request-form .modal-body {
    padding: 0 0;
    overflow-x: hidden;
}

.request-form {
    padding-right: 0 !important;
}

.request-form .modal-header {
    padding-left: 0;
    border-bottom: none;
    margin-bottom: 25px;
}

.request-form .modal-header h2 {
    margin: 0;
    position: relative;
    padding-bottom: 12px;
    font-size: 32px;
    text-transform: capitalize;
}

.request-form .modal-header h2::before {
    content: "";
    width: 210px;
    background: #92c753;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.request-form .modal-header h2::after {
    content: "";
    width: 0px;
    background: #ee801e;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .5s;
}

.select-style {
    border: 1px solid transparent;
    overflow: hidden;
    background: #eceef0 url(../images/arrow.png) no-repeat 96% 40%;
    background-size: 24px;
}

.request-btn {
    width: 150px;
    padding: 8px 20px;
    height: 40px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 992px) {

    .loan-officer-detail {
        text-align: center;
        margin-bottom: 30px;
    }

    .loan-officer-img {
        text-align: center;
        margin-bottom: 30px;
        margin: 0 auto 30px;
        display: flex;
        justify-content: center;
        max-width: 300px;
    }

    .loan-officer-address p {
        text-align: center;
    }

    .loan-officer-address {
        text-align: center;
    }

    .lo-link {
        justify-content: center;
    }

    .lo-socials {
        text-align: center;
    }

    .loan-officer-address p {
        font-size: 16px;
    }

    .loan-action a {
        word-wrap: break-word;
        font-size: 16px;
    }

}

.discoverform .modal-dialog {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.discoverform .modal-content {
    padding: 20px;
}

.discoverform button {
    position: absolute;
    right: 30px;
}

.discoverform .modal-header {
    border-bottom: none;
}

.messageContent {
    margin-bottom: 20px;
}

.font18 {
    font-size: 18px !important;
}

.bxallwrap {
    padding: 70px 0px;
}


.loff-contact .container-fluid {
    padding-left: 40px;
    padding-right: 40px
}

.loff-contact {
    position: fixed;
    width: 100%;
    z-index: 1111;
    bottom: 0
}

.loff-img {
    height: 80px;
    position: absolute;
    width: 80px;
    top: -28px;
    border-radius: 50px;
    justify-content: center
}

.loff-img span {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff
}

.loff-spe {
    margin-left: 100px;
    min-height: 100%;
    flex-direction: column;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px
}

.loff-spe p {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important
}

.loff-spe a, .loff-spe h4 {
    font-size: 18px;
    font-family: Poppins;
    color: #fff;
    font-weight: 500
}

.loff-spe h4 {
    text-transform: capitalize;
    text-transform: uppercase;
    text-decoration: underline
}

.loff-spe a {
    text-transform: capitalize;
    text-transform: uppercase;
    text-decoration: noneit add;
}

.loff-con-info .bor-button {
    min-width: max-content;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 2px 20px;
    border-radius: 4px;
    margin-right: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background: #3983ad;
}

.loff-con-info .link-button {
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .vue-form-wizard .wizard-tab-content {
        width: 100%
    }

    .loff-spe p {
        margin-block-start: 0 !important;
        margin-block-end: 0 !important
    }

    .loff-spe {
        padding-bottom: 0 !important
    }
}

/* Media Queries for responsive behavior */

/* Adjustments for mobile devices */
@media (max-width: 767px) {
    .loff-contact {
        position: fixed;
    }

    .loff-con-info {
        flex-wrap: nowrap !important;
    }

    .loff-spe p {
        font-size: 14px !important;
        margin-block-start: 0 !important;
        margin-block-end: 0 !important;
    }

    .bor-button {
        margin-bottom: 10px;
    }

    .special-col-1, .special-col-3 {
        text-align: center;
        justify-content: center;
    }

    .loff-img {
        margin-bottom: 10px;
    }
}

/* For screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .special-col-1, .special-col-3 {
        width: 25% !important;
    }

    .special-col-2 {
        width: 50% !important;
    }

    .loff-spe p {
        font-size: 14px !important;
        margin-block-start: 0 !important;
        margin-block-end: 0 !important;
    }

    .loff-con-info {
        flex-wrap: nowrap !important;
    }

    .loff-img span {
        width: 60px;
        height: 60px;
    }

    .bor-button {
        font-size: 14px;
    }
}

/* Adjustments for larger screens */
@media (min-width: 1025px) {
    .loff-contact {
        position: fixed;
        bottom: 0;
    }

    .special-col-1, .special-col-3 {
        flex: 0 0 auto !important;
        width: 25% !important;
    }

    .special-col-2 {
        flex: 0 0 auto !important;
        width: 50% !important;
    }

    .loff-img span {
        width: 70px;
        height: 70px;
    }

    .bor-button {
        font-size: 16px;
    }
}

.loff-contact, .loff-img {
    background-color: #10263b;
    color: white;
    font-weight: bold;
}

.loff-img span {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
}

.profile_image_lo {
    border-radius: 50%;
}

.loff-contact .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 833px) {
    .loff-con-info, .loff-spe {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .loff-con-info {
        flex-wrap: nowrap !important;
    }
}

@media screen and (max-width: 991px) {
    .loff-con-info {
        display: flex;
        padding-bottom: 10px;
        padding-top: 10px;
        flex-wrap: wrap;
    }
}

.loff-con-info, .loff-img {
    align-items: center;
}

.loff-con-info, .loff-con-info .bor-button, .loff-img, .loff-spe {
    display: flex;
}


@media (max-width: 833px) {
    .loff-con-info, .loff-spe {
        padding-bottom: 0 !important;
        text-align: start;
    }
}

@media (max-width: 767px) {
    .loff-con-info {
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 833px) {
    .loff-con-info .link-button {
        display: none;
    }
}

.loff-con-info .link-button {
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.loff-con-info .bor-button, .loff-con-info .link-button, .loff-spe p {
    font-size: 14px;
    color: #fff;
    font-family: Poppins;
}

@media screen and (max-width: 991px) {
    .loff-con-info a {
        margin-bottom: 10px;
    }
}

@media (max-width: 833px) {
    #clear-session {
        position: absolute;
        right: 0;
        top: 0;
        min-width: auto !important;
    }
}

#clear-session {
    min-width: auto !important;
}

.bor-button:hover {
    background: #3983ad;
}


.a-inline-block a{
    display: inline-block;
}

.loan-officer-address{
    font-size: 20px;
}

.menu-active {
    position: relative; /* Allows the pseudo-element to be positioned relative to the menu item */
}

.menu-active::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--clr-secondary);
    position: absolute;
    top: 29px;
    left: -4px;
    transition: all .5s;
    border: none !important;
}

/* Back to Top Button Styles */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #7bc143; /* Green background color */
    color: white;
    border: none;
    border-radius: 50%; /* Makes the button round */
    font-size: 24px; /* Font size for the arrow */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
#backToTop.show {
    display: flex;
    opacity: 1;
}

#backToTop:hover {
    background-color: #000000; /* Darker green on hover */
}
.main_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_content ul li {
    position: relative;
    padding-left: 40px; /* enough space for icon */
    line-height: 1.6; /* consistent spacing */
}
.main_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-image: url(../../website/images/check.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.main_content ul{
    padding-bottom: 20px;
}

.text-filter {
    filter: url(#white-text-shadow);
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.btn, .text-muted, .tb-number, .btnm, .spacer-small h2 a{
    filter: url(#white-text-shadow);
}
.flt-active, .pinning-title, .pinning-spe p{
    filter: url(#white-text-shadow);
}
.flt-active span{
    filter: url(#white-text-shadow);
}

.page-content-text a{
    filter: url(#white-text-shadow);
}
.fw-bold, .testimonial-header h3{
    filter: url(#white-text-shadow);
}

.menu li{
    filter: url(#white-text-shadow);
}
.main_content a{
    filter: url(#white-text-shadow);
}
.main_content span{
    filter: url(#white-text-shadow);
}