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

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

@font-face {
    font-family: "MarketPro";
    src: url("../fonts/MarketPro.eot");
    src: local("MarketPro"),
    url("../fonts/MarketPro.eot?#iefix") format("embedded-opentype"),
    url("../fonts/MarketPro.woff2") format("woff2"),
    url("../fonts/MarketPro.woff") format("woff"),
    url("../fonts/MarketPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

::-webkit-scrollbar {
    width: 12px;
    height: 8px;
    background: var(--clr-white);
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #c0e1e5;
    border-radius: 50px;
}

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


html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    color: #282828;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}

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

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mb-60 {
    margin-bottom: 50px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}


.container {
    max-width: 1260px;
}

/* Buttons */

.btn {
    transition: .3s;
    border-radius: 8px;
}

.btn-primary {
    background-color: #369eaa;
    border-color: #369eaa;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
    position: relative;
}

.btn-primary::before {
    content: attr(data-text);
    position: absolute;
    height: 100%;
    border-color: #164177;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a457b;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: -webkit-transform .3s cubic-bezier(0.75, 0, 0.125, 1);
    transition: transform .4s cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-primary:hover {
    background-color: #369eaa;
    border-color: #369eaa;
}

.btn-primary:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #fff;
}

.branch-item:hover .btn-primary::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #fff;
}


.btn-blue {
    background-color: #164177;
    border-color: #164177;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.btn-blue:hover {
    background-color: #369eaa;
    border-color: #369eaa;
    color: #fff;
}

.btn-outlne-secondary {
    background-color: #fff;
    border-color: #dbebfb;
    border: solid 3px #dbebfb;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-outlne-info {
    background-color: #fff;
    border-color: #feeec3;
    border: solid 3px #feeec3;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-outlne-info:focus {
    border: solid 3px #feeec3;
}

.btn-outlne-secondary::before {
    background: #164177;
    width: 100%;
    color: #fff;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;
    height: 0;
}

.btn-outlne-secondary:hover {
    border: solid 3px #164177;
    color: #fff;
}

.btn-outlne-secondary:hover::before {
    height: 100%;
    color: #fff;
}

.btn-secondary {
    background-color: #164177;
    border-color: #164177;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.btn-secondary:focus {
    background-color: #369eaa;
    border-color: #369eaa;
}

.btn-secondary:hover {
    background-color: #369eaa;
    border-color: #369eaa;
}

.btn-outline-info {
    border: solid 4px #f8df94;
    color: #282828;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.btn-outline-info:hover {
    border-color: #369eaa;
    color: #fff;
    background-color: #369eaa;
}

.btn-outline-info:focus {
    border-color: #369eaa;
    color: #fff;
    background-color: #369eaa;
}

.btn-info {
    border: solid 0px #ffc528;
    color: #fff;
    background-color: #ffc528;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-info:focus {
    border-color: #164177;
    color: #fff;
    background-color: #164177;
}

.btn-info:hover {
    border-color: #164177;
    color: #fff;
    background-color: #164177;
}


.btn-info::before {
    background: #164177;
    width: 100%;
    color: #fff;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;
    height: 0;
}

.btn-info:hover {
    border: solid 0px #164177;
    color: #fff;
}

.btn-info:hover::before {
    height: 100%;
    color: #fff;
}


.header-action a {
    border-radius: 8px;
    min-width: 140px;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 18px 18px 61px 4px rgba(0, 0, 0, 0.07);
    z-index: 111;
    transition: all 0.3s;
    min-height: 177px;
    display: flex;
    align-items: center;
}

header.fixed {
    box-shadow: 18px 18px 61px 4px rgba(0, 0, 0, 0.07) !important;
    position: sticky;
    top: 0;
    min-height: 137px;
}

/* header.fixed .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
} */

header .col-xl-2 {
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a img {
    width: 100%;
    max-width: 300px;
    transition: all 0.4s;
}

header.fixed .logo a img {
    max-width: 260px;
}

header.fixed .navbar-expand-lg .navbar-collapse {
    margin-top: 45px;
}

header.fixed .right-header {
    margin-top: 45px;
}


/* Navigation */
.container-fluid {
    max-width: 1420px;
    padding: 0 20px;
}


header .nav-link {
    color: #000;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.blog-content a {
    position: relative;
    overflow: hidden;
}

.blog-content a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffc528;
}

.blog-content a::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    transition: .5s;
}

header .navbar-nav li:hover .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffc528;
}

header .nav-link::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    transition: .5s;
}

.dropdown-toggle.nav-link::before {
    display: none;
}

header .nav-item:hover a {
    color: #369eaa;
    font-size: 18px;
}

.navbar-nav {
    gap: 12px;
}

.mobile-content .navbar-nav {
    gap: 12px;
    background: #f0f0f0;
    padding: 20px 20px;
    border-radius: 12px;
}


/* Dropdown */
.header-no-shadow {
    box-shadow: none !important;
}

header .dropdown-toggle::after {
    top: 2px;
    position: relative;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-expand-lg .navbar-nav > .nav-item.about-menu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin: 0;
    display: flex;

}

.about-menu .dropdown-menu {
    display: flex;
}

.about-menu .dropdown-menu li a {
    border-bottom: solid 1px #e5e5e5;
    padding: 15px 30px;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

.about-menu .dropdown-menu li a:hover {
    border-radius: 10px;
}

.about-menu .dropdown-menu .menu-icons li a {
    border-bottom: none !important;
}

.about-menu .dropdown-menu ul.column-2 {
    display: inline-block;
    column-count: 2;
}

.about-menu .dropdown-menu ul.menu-icons {
    max-width: max-content;
}

.about-menu .dropdown-menu ul.menu-icons li a {
    padding: 4px 30px;
}

.about-menu .dropdown-menu li a:hover {
    background-color: #369eaa;
    color: #fff;
}

.about-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-menu .dropdown-menu .icon img {
    max-width: 50px;
}

.navbar-expand-lg .navbar-nav > .nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin: 0;
    display: flex;
    gap: 6px;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    right: -50%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    float: left;
    margin: 25px 0 0;
    font-size: 16px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: none;
    border-radius: 0;
    min-width: 200px;
    padding: 0;
    border: solid 3px #369eaa;
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, margin 0.3s ease-out;
    display: inherit;
    border-radius: 12px;
    display: flex;
    gap: 6px;
}


.dropdown-menu ul li a {
    border-bottom: solid 1px #e5e5e5;
    padding: 15px 30px;
    position: relative;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu ul li a img {
    width: 50px;
    min-width: 50px;
}

.dropdown-menu ul li a:hover {
    background-color: #369eaa;
    color: #fff;
    border-radius: 10px;
}

.down-icon svg {
    transition: transform 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav > .nav-item:hover .down-icon svg {
    transform: rotate(180deg);
}

ul.menu-icons li a {
    padding: 4px 20px;
    border-bottom: none;
}

/* Header Right Section */
.right-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-menu {
    margin-left: 10px;
}

/* mobile menu  */

/* mobile  */
.header-hamburger {
    width: 40px;
    display: flex;
    align-items: center;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1111111;
}

.mobile-menu .nav-link {
    color: #000 !important;
    font-size: 18px;
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
}

.mobile-menu .active .nav-link {
    text-transform: uppercase;
    font-weight: 500;
}


.mobile-menu .dropdown-item {
    font-size: 18px;
}

.mobile-menu .menu-content {
    margin-bottom: 120px;
}

.mobile-menu .menu-content .navbar-nav li.nav-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: solid 2px #fff;
}

.mobile-menu .menu-content .navbar-nav li.nav-item.active {
    border: solid 2px #c0e0e6;

}

.mobile-menu .menu-content .down-icon {
    position: absolute;
    right: 15px;
}

.menu-close {
    padding: 1rem 2.5rem 1rem 2rem;
    font-size: 1.5rem;
    text-align: right;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: -18px;
    z-index: 111;
}

.menu-content {
    padding: 0 2rem 0;
}

.mobile-menu .dropdown ul li {
    padding: 8px 0;
}

.mobile-menu .menu-content .navbar-nav .dropdown-menu {
    position: relative !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.mobile-menu .menu-content .navbar-nav li.nav-item {
    flex-direction: column;
}

.mobile-menu .menu-content .dropdown-toggle::before {
    display: none;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.menu-list .nav-item.dropdown .dropdown-menu.show {
    position: relative !important;
    transform: translate3d(0px, 10px, 0px) !important;
    width: 100%;
}

.menu-list .nav-item.dropdown li a {
    color: #fff;
}

.menu-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu svg path {
    fill: #000;
}

.mobile-logo-container {
    text-align: center;
    padding: 10px 0;
}

.mobile-logo-container .logo {
    max-width: 220px;
    margin-top: 20px;
}

.mobile-logo-container a.m-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    margin: 30px auto 20px;
}

.mobile-logo-container .btn-action {
    gap: 20px;
    display: flex;
    justify-content: center;
    background-color: #000;
}

.mobile-logo-container .btn-action a {
    background-color: #000;
    border: none;
}

.mobile-logo-container .btn-action a:hover {
    background-color: #000;
}

.mobile-content {
    overflow-y: auto;
    height: 100vh;
}

.mobile-footer {
    padding: 2rem 2rem;
}

.mobile-link {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.mobile-link a {
    color: #fff !important;
    line-height: normal;
}


.mobile-menu .dropdown ul {
    background-color: #fff;
    padding: 0 10px 10px;
}

.mobile-menu .dropdown ul li {
    padding-left: 40px;
    position: relative;
}

.mobile-menu .dropdown ul li .active::after {
    width: 26px;
    height: 4px;
    background-color: #ffc528;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
}

.mobile-footer {
    padding: 1rem 1rem;
    border-top: solid 1px #fff;
    margin: 20px 10px 5px;
}

.mobile-footer p {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.mobile-menu .nav-link.collapsed .down-icon svg {
    transform: rotate(0deg) !important;
}

.mobile-menu .nav-item.dropdown .down-icon svg {
    transform: rotate(180deg);
}

.mobile-action .mobile-action-btns {
    padding: 0 2rem 15px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
}

.mobile-action a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

/* testimonial-second-section */
.testimonial-second-section {
    padding: 80px 0 60px;
    background-color: #f1f1f1;
}

.testimonial-second-section .review-icon {
    margin-top: 60px;
}

.testimonial-second-section .section-header {
    margin-bottom: 40px;
}

.homepage-testimonial .review-section {
    justify-content: center;
    gap: 20px;
}

/* video section */
.video-section {
    margin-top: 80px;
}

.video-section .section-header h2 {
    text-align: left;
}

.video-section .section-header p {
    text-align: left;
    max-width: 100%;
}

.video-section .section-header a {
    color: #c79b22;
    margin-top: 10px;
    display: flex;
}

.video-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-img:hover img.video {
    transform: scale(1.2);
}

.video-img img.video {
    transition: all .3s linear;
}

.video-icon {
    position: absolute;
    max-width: 90px;
    cursor: pointer;
    z-index: 1;
}


/* testimonial-section */

.testimonial-section {
    /* background-color: #f8f9ff; */
    background-color: #f1f1f1;
    padding: 80px 0;
}


.section-header h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
}


.section-header h2 span {
    color: #369eaa;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 28px;
}


.reviews-items h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}


.reviews-items h2 span {
    color: #369eaa;
}

.reviews-items p {
    text-align: center;
    line-height: 28px;
    font-size: 16px;
}

.reviews-items .logo-img {
    max-width: 200px;
    margin: 30px auto 0;
}

.slider-testimonial {
    width: 58vw;
}

.testimonial-star h4 {
    text-align: center;
    margin-bottom: 12px;
}

.testimonial-list {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.testimonial-list img {
    max-width: 14px;
}

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

.testimonial-star h4 {
    text-align: center;
    font-size: 14px;
    color: #282828;
    line-height: 18px;
}

/* blogs-section */
.blogs-section {
    margin: 80px 0;
}

.blog-posts .row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.blog-posts {
    margin-top: 40px;
}

.blog-header {
    margin-bottom: 30px;
}

.blog-header h2 {
    color: #164177;
    font-size: 54px;
    line-height: normal;
    margin-bottom: 20px;
    font-family: "MarketPro";
    text-align: center;
}

.blog-header p {
    font-size: 16px;
    color: #282828;
    margin-bottom: 20px;
    line-height: 32px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.blog-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-items: center;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: all .3s linear;
}


.blog-post:hover .blog-image img {
    transform: scale(1.2);
}

.blog-content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    min-height: 240px;
}

.blog-content label {
    font-size: 18px;
    color: #282828;
    line-height: normal;
    text-align: center;
    font-weight: 500;
}

.blog-content span {
    font-size: 14px;
    color: #282828;
    line-height: normal;
    margin-bottom: 20px;
    text-align: center;
}

.blog-content p {
    font-size: 16px;
    color: #282828;
    margin-bottom: 4px;
    line-height: 28px;
    text-align: center;
}

.blog-content a {
    text-align: center;
    color: #c79b22;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    margin: 0 auto;
}

.blog-post {
    box-shadow: 0px 9px 4px -2px rgba(191, 187, 191, 0.17);
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
}


/* clculator-section */

.clculator-section {
    margin: 80px 0 0;
}

.calculator {
    max-width: 900px;
    margin: 40px auto 0;
}

.calculator img {
    width: 100%;
}

/* main-footer */
.main-footer {
    background-color: #f9f9f9;
    min-height: 200px;
    border-radius: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.footer-content {
    width: 100%;
    display: flex;
    align-items: center;
}

.footer-content .address {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.footer-content .address p {
    font-size: 16px;
    text-align: center;
    line-height: normal;
    color: #282828;
}

.footer-content .address a {
    text-align: center;
    font-size: 16px;
    line-height: normal;
    color: #282828;
}

.footer-content .address-menu-list {
    display: flex;
    max-width: 815px;
    flex-wrap: wrap;
    gap: 25px;
    row-gap: 10px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    row-gap: 0;
}

.footer-content .address-menu-list li {
    position: relative;
}

.footer-content .address-menu-list li::after {
    content: "/";
    position: absolute;
    right: -14px;
    top: 7px;
    width: 5px;
    height: 100%;
    font-size: 13px;
}

.footer-content .address-menu-list li:last-child:after {
    display: none;
}

.footer-content .address-menu-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #282828;
    font-size: 16px;
    padding: 4px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content .address-menu-list li a::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    transition: .5s;
}

.footer-content .address-menu-list li:hover a::before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffc528;
}

.footer-content .hr-line {
    margin: 30px auto;
    max-width: 700px;
}

.hr-line {
    border-top: solid 3px #ffc528;
    opacity: 1;
    margin: 40px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: auto;
    width: auto;
    max-width: 380px;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom p {
    color: #282828;
    font-size: 13px;
    text-align: center;
}

.footer-action {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.footer-action a {
    min-width: 145px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    max-width: 300px;
    margin: 0 auto;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: center;
}

.footer-social {
    margin-top: 15px;
    margin-bottom: 30px;
}

.footer-social ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social ul li img {
    max-width: 22px;
}

.home-icon {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


.slider-testimonial {
    width: 50vw;
}

.scroll-top {
    position: fixed;
    bottom: 48px;
    right: 15px;
    z-index: 9999;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 30px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2sease-out;
    display: none;
    border-radius: 50%;
    color: #fff;
}

.testimonial-section {
    overflow: hidden;
}

.testimonial-item {
    cursor: pointer;
    width: 100%;
}

.testimonial-item label {
    color: #282828;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.testimonial-item p {
    text-align: center;
    font-size: 15px;
    color: #282828;
    line-height: 28px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border: solid 3px #fff;
}

.testimonial-item .blue-icon {
    display: none !important;
}

.testimonial-item:hover {
    background-color: #ffffff;
    border: solid 3px #369eaa;
}

.testimonial-item:hover .blue-icon {
    display: block !important;
}

.testimonial-item:hover .black-icon {
    display: none;
}

.slider-testimonial {
    width: 56vw;
}

.testimonial-star h4 {
    text-align: center;
}

.testimonial-list {
    display: flex;
    justify-content: center;
}

.testimonial-list img {
    max-width: 20px;
}

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

.testimonial-star h4 {
    text-align: center;
    font-size: 16px;
    color: #282828;
    line-height: 28px;
}

/* section-resources */

.section-resources {
    margin: 80px auto 0;
}

.resources-box {
    max-width: 1000px;
    margin: 60px auto 0;
}


.resources-item img {
    max-width: 110px;
    transition: all .3s linear;
}

.resources-item:hover img {
    transform: scale(1.2);
}

.resources-item h3 {
    transition: all .3s linear;
}

.resources-item:hover h3 {
    transform: scale(1.2);
}

.resources-item {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -1px 0px 47px -8px rgba(191, 187, 191, 0.37);
    border-radius: 20px;
    overflow: hidden;
}

.resources-blog .resources-item {
    padding: 20px;
    min-height: 221px;
}

.resources-blog .resources-item .w-100 {
    height: auto;
    max-width: 170px;
}


.resources-item h3 {
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}

.resources-item.partner {
    background-color: #9dce5b;
    border: solid 4px #9dce5b;
}

.resources-item.partner:hover {
    /* box-shadow: -1px -2px 12px 10px rgba(191, 187, 191, 0.37); */
}


.resources-item.promotion {
    background-color: #ffffff;
    border: solid 4px #dbebfb;
}

.resources-item.promotion:hover {
    /* box-shadow: -1px -2px 12px 10px rgba(191, 187, 191, 0.37); */
}

.resources-item.mortgage-calculator {
    background-color: #f6b031;

}

.resources-item.mortgage-calculator:hover {
    /* box-shadow: -1px -2px 12px 10px rgba(191, 187, 191, 0.37); */
}

.resources-item.guides {
    background-color: #38a6ad;

}

.resources-item.guides:hover {
    /* box-shadow: -1px -2px 12px 10px rgba(191, 187, 191, 0.37); */
}

/* help-section */

.help-section {
    margin: 80px 0;
}

.help-buttons {
    display: flex;
    gap: 20px;
}

.help-buttons button {
    min-width: 145px;
    border-radius: 12px;
    font-size: 24px;
    padding: 0;
    min-height: 44px;
    font-size: 20px;
    font-weight: 400;
}

.help-options {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.help-option {
    border-bottom: solid 4px #ffffff;
}

.help-option:hover {
    border-bottom: solid 4px #ffc528;
}

.help-option {
    background-color: #fff;
    padding: 20px;
    box-shadow: -1px 0px 47px -8px rgba(191, 187, 191, 0.37);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 20px;
    align-items: center;
}

.help-option label.help-option-title {
    color: #282828;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
}

.help-option p {
    font-size: 16px;
    color: #282828;
    line-height: 28px;
}

.help-left-30 {
    position: relative;
    left: -40px;
}

.yellow-bd {
    border-bottom: solid 4px #ffc528;
}

.help-section h2 {
    text-align: left;
}

.help-section .section-header p {
    text-align: left;
    margin-bottom: 30px;
}


/* hero-section */

.hero-section .map iframe {
    height: 400px;
    box-shadow: none !important;
}

.hero-text h1 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 62px;
    letter-spacing: -1px;
}

.hero-text {
    display: flex;
    align-items: start;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.hero-text h1 span {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
    font-size: 50px;
    color: #369eaa;
    display: flex;
    flex-direction: column;
}

.hero-text img {
    height: auto;
    width: auto;
    max-width: 290px;
    position: relative;
    text-align: center;
}


.hero-image img {
    max-width: 00px;
    margin: 0 auto;
}

.hero-description {
    font-size: 16px;
    color: #282828;
    line-height: 28px;
    text-align: left;
    margin-bottom: 30px;
}

.hero-content button {
    min-width: 145px;
    border-radius: 12px;
    font-size: 24px;
    padding: 0;
    min-height: 44px;
}

.hero-btn {
    display: flex;
    gap: 20px;
}

.hero-btn .btn {
    font-size: 20px;
    font-weight: 400;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #369eaa;
    padding: 20px;
    border-radius: 20px;
    gap: 60px;
}

.logo-section img {
    max-height: 70px;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 4px #c4c5c5;
    background-color: transparent;
    max-width: 600px;
    width: 100%;
    min-height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.search-icon input:focus {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 4px #c4c5c5;
    outline: none;
}

.search-icon button {
    border: none;
    position: absolute;
    cursor: pointer;
    right: 0;
    background-color: transparent;
    bottom: 10px;
}

.search-icon button img {
    width: 35px;
    height: 35px;
    max-width: fit-content;
}

.mb-110 {
    margin-bottom: 110px;
}

.footer-section {
    padding-bottom: 60px;
    background-color: #f9f9f9;
}

/* review-icon */


.customers-section {
    margin: 80px 0;
}

.customers-section h2 {
    margin-bottom: 30px;
}

.review-icon {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.review-icon img {
    max-height: 90px;
}

.section-owl-testimonial .testimonial-item {
    background-color: #fff !important;
    padding: 0px;
    border-radius: 12px;
    border: solid 2px #fff !important;
    max-width: 1100px;
    line-height: 30px;
    margin: 0 auto;
}

.section-owl-testimonial .testimonial-item p {
    line-height: 28px;
}

.section-owl-testimonial .testimonial-item span {
    font-weight: 500;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    text-align: center;
}

.owl-carousel .owl-dots.disabled {
    display: block !important;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #d9e2ee !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #f8df94 !important;
}

/* branch-section */

.branch-section {
    margin: 80px 0 0;
}

.branch-header h2 {
    color: #164177;
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}


.branch-header p {
    max-width: 1024px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
}

.branch-header h2 {
    margin-bottom: 15px;
}

.branch-header h2 span {
    color: #369eaa;
}

.loan-Originators {
    padding: 60px 40px;
    margin: 60px 0;
}

/* time-section */
.time-section {
    margin: 80px auto 0;
}

.time-section .section-header p {
    max-width: 1100px;
}

.time-box {
    margin: 80px 0 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px;
    background: linear-gradient(93deg, rgba(0, 84, 166, 0) 0%, #e6e7ea 97%);
    border-radius: 20px;
}

.time-item h3 {
    text-align: center;
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.time-item h3 span {
    color: #369eaa;
}

.time-item p {
    font-size: 16px;
    text-align: center;
    line-height: 28px;
}

.time-action {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.time-action .btn {
    min-width: 200px;
}

/* time-section */
.loan-option-section {
    margin: 80px auto 0;
}

.loan-option-section .section-header p {
    max-width: 1100px;
}

.loan-option-box {
    margin: 80px 0 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px;
    background-color: #F9F9F9;
    border-radius: 20px;
}

.loan-option-item h3 {
    text-align: center;
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.loan-option-item h3 span {
    color: #369eaa;
}

.loan-option-item p {
    font-size: 16px;
    text-align: center;
    line-height: 28px;
}

.loan-option-action {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.loan-option-action .btn {
    min-width: 200px;
    font-weight: 500;
}

/* lone-list-box */

.loan-list-box {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.loan-list-box p {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    line-height: 28px;
}

/* hero */
.hero-box {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.hero-imgs {
    border-radius: 20px;
    overflow: hidden;
}

.hero-content p {
    font-size: 16px;
    line-height: 30px;
    max-width: 500px;
}

.hero-content .hero-btn {
    margin-top: 40px;
}

.hero-faq-content {
    padding: 0 40px 0;
}

/* breadcrumb */

.breadcrumb-section {
    margin: 40px 0 0;
}

.breadcrumb-box .breadcrumb {
    margin: 0;
}

.breadcrumb-box label {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 3px;
}

.breadcrumb-box label span {
    color: #369eaa;
}

.breadcrumb-box p {
    font-size: 16px;
}

/* content-section */

.content-section {
    margin: 80px 0;
}

.content-block-section {
    margin: 80px 0 0;
}

.content-block h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 500 !important;
    text-transform: capitalize;
    text-align: left !important;
    margin-bottom: 15px;
    font-size: 20px !important;
}

.content-item h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.content-item h2 span {
    color: #369eaa;
}

.content-block h2 span {
    color: #369eaa;
}

.content-block p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

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

.content-block.left-border {
    padding-left: 30px;
    position: relative;
}

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

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

.content-item.left-border {
    padding-left: 30px;
    position: relative;
}

.left-border {
    position: relative;
    padding-left: 30px;
}

.left-border::after {
    background: linear-gradient(0deg, rgba(0, 84, 166, 0) 0%, rgba(252, 238, 199, 1) 47%);
    content: '';
    width: 12px;
    height: calc(100% - 40px);
    margin-top: 10px;
    position: absolute;
    left: 0;
    top: 40px;
    border-radius: 50px;
}

/* box-content-section  */
.box-content-section .box-content {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 60px 0;
}

.box-content-text {
    text-align: center;
    padding: 0 40px 60px;
    color: #282828;
}

.box-content-text p {
    font-family: "MarketPro";
    font-size: 30px;
    line-height: 40px;
}

ul.careers-list {
    margin: 20px 0;
}

ul.careers-list li {
    font-family: "MarketPro";
    font-size: 30px;
    line-height: 40px;
}

ul.careers-list li {
    position: relative;
    text-align: left;
    margin-left: 30px;
}

ul.careers-list li::after {
    content: '';
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: center start;
    background-size: 20px;
    position: absolute;
    left: -25px;
    top: 5px;
    width: 20px;
    height: 20px;
}

.box-content-text .box-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;
}


.box-content-text .box-action .btn {
    min-width: 140px;
}

.customers-hr {
    max-width: 460px;
    margin: 20px auto 30px;
    border-top: solid 4px #ebb830;
    opacity: 1;
}

/* breadcrumb */

.breadcrumb li a {
    color: #666666;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #949393;
    font-size: 13px;
    line-height: 28px;
}

.breadcrumb-item.active span {
    color: #eab320;
    border-bottom: solid 1px #eab320;
    font-size: 14px;

}

/* calculators-type-section */

.calculators-type-section {
    padding: 80px 0;
    background-color: #d5e9ec;
    margin: 80px 0 0;
}

.calculators-type-v2-section {
    padding: 80px 0;
    background-color: #f1f1f1 !important;
    margin: 80px 0 0;
}


.borrowers-resources-list .container {
    max-width: 700px;
}

.borrowers-resources-list .calculator-item {
    border-radius: 20px;
    height: 100%;
}

.borrowers-resources-list .calculator-item label {
    font-size: 20px;
}

.borrowers-resources-list .calculator-item span {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.calculators-type-section.borrowers-resources span {
    font-size: 26px;
    font-weight: 400;
}

/* logos-section */

.logos-section {
    margin: 80px 0 0;
}

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

.calculator-item {
    background-color: #fff;
    padding: 20px;
    border: solid 4px #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calculator-item label {
    color: #369eaa;
    font-weight: 500;
    font-size: 16px;
}

.calculator-item span {
    color: #164177;
    font-weight: 400;
    font-size: 16px;
}

.calculator-item:hover {
    border: solid 4px #eab320;
}

.calculators-type-section .row {
    --bs-gutter-y: 1.5rem;
}

/* calculator */
.calculator-section {
    margin-top: 60px;
}

.calculator-note {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 20px;
    background: linear-gradient(90deg, rgba(253, 249, 237, 1) 0%, rgba(237, 191, 68, 1) 57%);
    border-radius: 30px;
    position: relative;
}

.calculator-img {
    min-width: 300px;
}

.calculator-img img {
    position: absolute;
    top: -40px;
    max-width: 260px;
    left: 80px;
}

/* check-list */
.check-list ul {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
}

.check-list ul li {
    font-size: 16px;
    /* background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: center start; */
    background-size: 15px;
    margin-left: 25px;
    position: relative;
}

.check-list ul li::after {
    content: '';
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: center start;
    background-size: 20px;
    position: absolute;
    left: -25px;
    top: 5px;
    width: 20px;
    height: 20px;
}

.check-list ul li a {
    position: relative !important;
    overflow: hidden !important;
    display: flex;
}

.check-list ul li:hover a::before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffc528;
}

.check-list ul li a::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    transition: .5s;
}

/* faqs-section */
.box-grey {
    background-color: #f1f1f1;
    border-radius: 20px;
}

.faqs-section {
    margin: 80px 0 0;
}

.faqs-section .section-header p {
    max-width: 1024px;
}

.faqs-box {
    padding: 40px 60px;
    margin-top: 60px;
}

.faqs-box .accordion {
    flex-direction: column;
    gap: 15px;
    display: flex;
}

.faqs-box .accordion .accordion-item {
    border-radius: 20px;
    overflow: hidden;
}

.faqs-box .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
}

.faqs-box .accordion-button::after {
    background-image: url(../images/plus.png);
}

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

.faqs-box .accordion .accordion-button {
    text-transform: uppercase;
    padding: 25px 20px;
    color: #369eaa;
    font-weight: 500;
}

.faqs-box .accordion .accordion-button:not(.collapsed) {
    color: #164177;
    background-color: transparent;
    text-transform: uppercase;
    box-shadow: none;
    font-weight: 800;
    font-size: 20px;
}

.faqs-box .accordion-body {
    padding-bottom: 30px;
}

.faqs-box .accordion-body p {
    font-size: 16px;
    line-height: 28px;
}

.faqs-box .accordion-item {
    border: solid 4px #fff;
}

.faqs-box .accordion-item.active {
    border: solid 4px #dceafb;
}

/* lone-officer-section */

.lone-officer-section .lone-officer-box {
    padding: 40px;
}

.lone-officer p {
    font-size: 16px;
    line-height: 28px;
}

.lone-officer-box .tab-box {
    margin: 40px 0;
}

.tab-list {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-list ul {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    padding: 15px 20px;
    gap: 20px;
    border-radius: 20px;
}

.tab-list ul li button {
    text-transform: uppercase;
    border: solid 4px transparent;
    border-radius: 10px !important;
    font-weight: 600;
    color: #369eaa !important;
    font-size: 16px;
    font-weight: 500;
}

.tab-list ul li button.active {
    border: solid 4px #f8df94;
    color: #164177 !important;
    background-color: #fff !important;

}

.tab-content .map {
    border-radius: 22px;
    overflow: hidden;
}

/* team-box */

.team-box {
    max-width: 1024px;
    margin: 60px auto 0;
}

.team-box .row {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 60px;
}

.team-member {
    background-color: #fcfcfd;
    border-radius: 20px;
    box-shadow: -1px 0px 47px -8px rgba(191, 187, 191, 0.37);
    overflow: hidden;
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-images {
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.team-images img {
    transition: all .3s linear;
    width: 100%;
}

.team-member:hover .team-images img {
    transform: scale(1.2);
}

.team-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-content label {
    font-size: 24px;
    font-weight: 400;
}

.team-content span {
    font-size: 16px;
    line-height: 28px;
}

.team-content p {
    font-size: 16px;
    line-height: 28px;
}

.team-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
}

.team-btn .btn {
    height: 40px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 16px;
}


/* box-content-list */

.box-content-list .section-header h2 {
    font-size: 32px;
}

.box-content-lists {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box-content-lists .box-content-item label {
    color: #164177;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.box-content-lists p {
    font-size: 16px;
    color: #282828;
    line-height: 28px;
}

.box-conten-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* loan-list-section */


.loan-list-section {
    padding: 80px 0;
    background: linear-gradient(90deg, rgba(247, 248, 249, 1) 0%, rgba(172, 211, 217, 1) 57%);
}


.loan-officer-info h1 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 60px;
    display: flex;
    flex-direction: column;
}

.loan-officer-info h1 span {
    color: #369eaa;
}

.loan-officer-info {
    margin-bottom: 80px;
}

.loan-officer-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.loan-officer-btn a {
    min-width: 190px;
    font-weight: 500;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loan-list-section .container {
    max-width: 1200px;
}

.loan-list-section .row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 60px;
}

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

.loan-list-item .loan-list-img img {
    transition: all .3s linear;
}

.loan-list-item:hover .loan-list-img img {
    transform: scale(1.2);
}

.loan-list-content {
    background-color: #fff;
    padding: 20px;
    max-width: 93%;
    margin: 0 auto;
    border-radius: 0px 0px 20px 20px;
}

.loan-list-item {
    cursor: pointer;
}

.loan-list-item:hover .loan-list-content,
.loan-list-item:hover .loan-list-img {

    box-shadow: -1px 0px 47px 8px rgba(191, 187, 191, 0.37);
}


.loan-list-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

.loan-list-content label {
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
}

.loan-list-content p {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px;
}

.loan-list-content a {
    min-width: 140px;
    font-family: "MarketPro";
    font-size: 24px;
    padding: 0;
    border-radius: 12px;
    font-weight: 500;
    border: solid 4px #dbebfb;
}

.loan-list-content a:hover {
    border: solid 4px #164177;
    background-color: #164177;
}

.loan-list-content a:focus {
    border: solid 4px transparent;
}

/* guide-section */

.guide-section {
    padding: 80px 0 30px;
}

.guide-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.guide-item {
    padding: 40px 70px;
    background-color: #fff;
    border-color: #dbebfb;
    border: solid 4px #dbebfb;
    border-radius: 10px;
    position: relative;
}

.guide-icon {
    position: absolute;
    left: -65px;
    top: 22%;
}

.guide-item h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
}

.guide-item h2 span {
    color: #369eaa;
}


.guide-item a {
    border: solid 3px #369eaa5e;
    margin-top: 20px;
    font-size: 16px;
}

.guide-item img {
    transition: all .3s linear;
}

.guide-item:hover img {
    transform: scale(1.2);
}


/* loan-officer-section */

.loan-officer-section {
    margin-top: 40px;
}

.loan-officer-content h3 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
    font-size: 26px;
}

.loan-officer-content h3 span {
    color: #369eaa;
}

.loan-officer-content .quote-button-wrapper {
    margin-top: 20px;
}

.loan-officer-content .quote-button-wrapper a {
    min-width: 180px;
}

.loan-officer-content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}

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

.officer-img {
    max-width: 400px;
    overflow: hidden;
    margin-bottom: 80px;
}

.officer-img img {
    border-radius: 20px;
}

.loan-officer-details a {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
}

.loan-officer-details p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}

.review-box h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #164177;
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 28px;
}


.star-icons {
    display: flex;
}

.total-review {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.total-review span {
    font-weight: 600;
}

.total-review a {
    text-decoration: underline;
}


.review-item {
    margin-bottom: 20px;
}

.review-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-item label span {
    font-weight: 600;
}

.review-item p {
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    max-width: 300px;
}

.review-author p {
    font-weight: 400;
    font-size: 16px;
}

.see-more-reviews {
    font-weight: 500;
    font-style: italic;
    text-decoration: underline;
    margin-bottom: 20px;
    display: flex;
}

.leave-review {
    margin: 10px 0;
}

.leave-review a {
    min-width: 140px;
    font-size: 14px;
}

.review-seprater {
    margin: 30px 0;
    border-top: solid 2px #369eaa;
    opacity: 1;
    max-width: 320px;
}

.contact-info h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #164177;
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 28px;
}

.contact-detail {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail p {
    font-size: 16px;
    color: #282828;
}

.contact-info a {
    min-width: 140px;
    font-size: 16px;
}

.btn-toggle {
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail,
.reviews-conetnt {
    display: none;
    transition: all 0.3s ease-in-out;
}

.contact-detail.active,
.reviews-conetnt.active {
    display: flex;
    flex-direction: column;
}

.video-modal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.video-modal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1111;
    background-color: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 100px;
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 60px 60px;
}

.hero-contact-info .contact-address {
    margin-bottom: 20px;
}

.hero-contact-info .contact-day {
    margin-bottom: 15px;
}

.hero-contact-info .contact-address p {
    font-size: 20px;
    font-weight: 400;
}

.hero-contact-info p {
    font-size: 16px;
    line-height: normal;
    color: #282828;
}

/* resources-box */
.hero-resources-section {
    margin-bottom: 60px;
}

.hero-resources-box {
    padding: 60px;
}

.hero-resources-box {
    text-align: center;
}

.hero-resources-box p {
    font-size: 16px;
    line-height: normal;
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero-resources-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


/* do-dont-section */

.do-dont-section {
    margin-bottom: 80px;
    margin-top: 80px;
}

.do-box {
    background-color: #d5e9ec;
    padding: 60px 80px;
    max-width: max-content;
    border-radius: 20px;
}

.do-box.left-border::after {
    background-color: #d5e9ec;
    content: '';
    width: 12px;
    height: calc(50% - 40px);
    margin-top: 10px;
    position: absolute;
    left: 40px;
    top: 60px;
    border-radius: 50px;
}

.do-box h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 10px;
    font-size: 34px;
}

.do-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.do-box ul li {
    font-size: 16px;
}


/* dont-box */
.dont-box {
    background-color: #fcf5e3;
    padding: 60px 80px;
    max-width: max-content;
    border-radius: 20px;
    margin-top: 80px;
    position: relative;
}

.dont-box.left-border::after {
    background-color: #fcf5e3;
    content: '';
    width: 12px;
    height: calc(50% - 40px);
    margin-top: 10px;
    position: absolute;
    left: 40px;
    top: 60px;
    border-radius: 50px;
}

.dont-box h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 10px;
    font-size: 34px;
}

.dont-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dont-box ul li {
    font-size: 16px;
}

.calculator-mortgage {
    max-width: 900px;
    background-color: #f9f7eb;
    margin: 40px auto 0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: -1px 0px 47px -12px rgb(86 86 86 / 37%);
}

.mortgage-payment h2 {
    font-size: 26px;
    color: #164177;
    line-height: normal;
    text-align: center;
    font-weight: 600;
}

.mortgage-payment h3 {
    font-size: 20px;
    line-height: normal;
    text-align: center;
}

.disclosure h3 {
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 4px;
}

.disclosure p {
    font-size: 12px;
}

.calculator-mortgage .form-label {
    font-size: 13px;
    margin-bottom: .3rem;
}

.calculator-mortgage input {
    border-radius: 8px;
    border: none;
}

.calculator-mortgage input:focus {
    outline: none;
}

#chart {
    max-width: 300px;
    margin: 20px auto;
}


input[type="range"]:hover {
    box-shadow: none;
}

input[type="range"]:focus {
    box-shadow: none;
}

.calculator-mortgage input:hover {
    box-shadow: 0 0 13px rgba(0, 122, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    outline: none;
    transition: box-shadow 0.2s ease-in-out;
}

.calculator-mortgage input:focus {
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.9);
    /* Strong orange glow on focus */
    border-color: rgba(255, 255, 255, 1);
    outline: none;
    /* Remove default outline */
}


/* join-section */

.join-section {
    margin: 80px 0 0;
}

.join-box {
    display: block;
    height: 100%;
    margin-top: 20px;
}

.join-section .col-lg-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.join-box h3 {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin: 25px 0 15px;
    overflow: hidden;
}

.join-box .check-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #b5f1f5;
    border-radius: 20px;
    height: calc(100% - 16px);
}

.ctactive {
    background: #ffc528 !important;
}

.join-box .check-list li {
    text-align: center;
    width: 100%;
    margin-left: 0;
}

.join-box .btn-outlne-secondary {
    background-color: #fff;
    border-color: #369eaa;
    border: solid 3px #369eaa;
    font-size: 16px;
}

.join-box:hover .btn-outlne-secondary {
    border: solid 3px #164177;
    color: #fff;
}

.join-box:hover .btn-outlne-secondary::before {
    height: 100%;
    color: #fff;
}

.join-box .check-list li::after {
    display: none;
}

.cta_btn_wrapper {
    margin-top: auto;
    text-align: center;
}

.cta_btn_wrapper a {
    font-size: 14px;
    width: 100%;
}

.cta_btn_wrapper span {
    font-size: 14px;
    width: 100%;
}

.check-list {
    overflow: hidden;
    padding: 40px 0px;
    transition: all 0.5s;
    text-align: center;
    /*min-height: 375px;*/
    margin-bottom: 30px;
    cursor: pointer;

}


.join-section .tab-btn {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.join-section .more-btn {
    padding: 8px 16px;
}

.join-section .tab-contents {
    position: sticky;
    top: 200px;
}

.tabModal .btn-close {
    position: absolute;
    z-index: 11;
    background-color: #fff;
    top: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .join-section .tab-contents {
        display: none !important;
    }

    .tabModal .modal-body {
        padding: 40px;
    }

    .quote-content h2 {
        margin-bottom: 10px;
        color: #164177;
    }

    .tabModal .modal-body {
        border: 1px solid #ddd;
        background-color: #ebeef2;
    }

    .tabModal .btn-close {
        padding: 6px;
        width: 35px;
        height: 35px;
        border-radius: 50px;
    }

    .hero-contact-info {
        padding-bottom: 20px;
        padding-top: 20px;
    }

}

.join-section .tab-content {
    display: none;
    border: 1px solid #ddd;
    margin-top: 24px;
    background-color: #ebeef2;
    padding: 40px;
    width: 100%;
    border-radius: 20px;

}

.join-section .tab-content h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
    font-size: 30px;
}

.join-section .tab-content.active {
    display: block;
}

/* get-started-box */
.get-started-box {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 80px 40px;
}

.get-started-box h2 {
    color: #164177;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
}

.get-started-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.get-started-link a {
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
    max-width: 320px;
    border: solid 5px #fff;
}

.get-started-link a:hover {
    border: solid 5px #ebb830;
}

.get-started-link a label {
    color: #369eaa;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.get-started-link a.no-link label {
    color: #c56e6e;
}

.get-started-link a p {
    font-family: "MarketPro";
    font-size: 30px;
    line-height: 40px;
    color: #369eaa;
    cursor: pointer;
}

.get-started-link a.no-link p {
    color: #c56e6e;
}

@media screen and (min-width: 1299px) {
    .video-section .row {
        --bs-gutter-x: 40px;
        --bs-gutter-y: 40px;
    }

    .loan-officer-section .row {
        --bs-gutter-x: 60px;
        --bs-gutter-y: 60px;
    }

    .resources-box .row {
        --bs-gutter-x: 40px;
    }

}

@media screen and (max-width: 768px) {
    .hero-btn button {
        width: 100%;
    }
}

@media screen and (max-width: 1199px) {

    .container .card-stack {
        width: 100%;
        height: max-content !important;
        min-height: 300px;
        margin: 0 auto;
    }

    .hero-btn {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo a img {
        min-height: auto;
    }

    .video-section .row {
        --bs-gutter-y: 40px;
    }

    .loan-officer-section .row {
        --bs-gutter-y: 60px;
    }

    .resources-box .row {
        --bs-gutter-y: 40px;
    }

    .reviews-items p {
        text-align: center;
    }

    .slider-testimonial {
        width: 100%;
    }


    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-content p {
        max-width: 900px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content .hero-btn {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-text {
        justify-content: center;
    }

    .help-buttons {
        margin-bottom: 30px;
    }

    .help-left-30 {
        left: 0;
    }

    .help-section .section-header p {
        text-align: center;
        max-width: 100% !important;
    }

    .help-section h2 {
        text-align: center;
    }

    .help-buttons {
        justify-content: center;
    }

}

.help-section .section-header p {
    max-width: 90%;
    margin-left: 0;
}

/* review-section */
.review-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 30px;
}

.rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review-total-box {
    font-size: 18px;
    font-weight: 500;
    color: #164177;
}

.rating-box img {
    height: 28px;
}

.rating-box span {
    font-size: 18px;
    font-weight: 500;
    color: #164177;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 20px;
}

.reviw-action {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.reviw-action a {
    min-width: 200px;
    font-size: 16px;
}


/* testimonial-v3-section */

.testimonial-v3-section {
    padding: 80px 0;
}


.testimonial-v3-section .review-section {
    margin: 30px auto;
}

.testimonial-v3-section .slider-testimonial {
    margin: 30px auto;
    width: auto;
}

.testimonial-v3-section .testimonial-item {
    background-color: #fff;
    border-color: #dbebfb;
    border: solid 4px #dbebfb;
}

.testimonial-v3-section .testimonial-item:hover {
    background-color: #dbebfb;
}

.iframeModal .modal-body {
    overflow: hidden;
    margin-bottom: 20px;
    height: 80vh;
    padding-bottom: 30px !important;
    padding-top: 70px;
    position: relative;
}

.btn.float-end {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn.float-end img {
    max-width: 25px;
    margin-right: 10px;
    margin-top: 10px;
}

.modal-content iframe {
    height: 100%;
    padding-bottom: 0;
}


.blog-link {
    text-align: center;
    color: #c79b22;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.blog-link::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    transition: .5s;
}

.blog-link:hover::before {
    content: "";
    position: absolute;
    left: 0;
    background: #ffc528;
}

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

.hero-img img {
    width: 100%;
}

.contactForm .form-control {
    background-color: #f1f1f1;
    padding: 15px;
    border: none;
    font-weight: 500;
    color: #000;
}

.form-control-select {
    font-weight: 400 !important;

}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-icon {
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='16px' height='16px' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M903.232 256l56.768 50.432L512 768 64 306.432 120.768 256 512 659.072z' fill='%23000'/%3E%3C/svg%3E");
}

.select-wrapper.open .select-icon {
    transform: translateY(-50%) rotate(180deg);
}


.form-control-select:invalid {
    color: var(--bs-secondary-color);
    opacity: 1;
}


.form-control-select option[disabled] {
    color: var(--bs-secondary-color);
    opacity: 1;
}

.contactForm .form-control::placeholder {
    font-weight: 400;
}

.contactForm {
    max-width: 90%;
}

.contactForm .btn {
    min-width: 165px;
    text-transform: uppercase;
}

.contactForm .note {
    font-size: 13px;
}

/* branch-item */
.branches-section .section-header {
    margin-bottom: 40px;
}

.branches-list .row {
    margin-bottom: 40px;
}

.branch-item {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 40px 40px;
    cursor: pointer;
    border: solid 3px #f1f1f1;
}

.branch-item:hover {
    border: solid 3px #ffc528;
}

.branch-item h3 {
    color: #164177;
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.branch-item a {
    width: 145px;
    margin: 0 auto;
}

.branches-container {
    max-width: 1024px;
    margin: 0 auto;
}

.btn-branch {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.branch-item-content p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}

.branch-item-content p:last-child {
    margin-bottom: 25px;
    text-align: center;
}

/* states-list */

.states-list {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
}

.states-list .row {
    --bs-gutter-y: 1.0rem;
}

.states-list a {
    padding: 10px 2px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    border: solid 3px #f1f1f1;
    height: 100%;
}

.states-list a:hover {
    border: solid 3px #eab320;
}

/* loans-link-section */

.loans-link-section {
    margin-top: 80px;
}

.loans-link-list .row {
    --bs-gutter-y: 1.0rem;
}

.loans-link-list a {
    padding: 10px 2px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    border: solid 3px #f1f1f1;
    height: 100%;
    text-align: center;
    line-height: 23px;
}

.loans-link-list a:hover {
    border: solid 3px #eab320;
}

.disclaimer {
    font-size: 14px;
    color: #a1a1a1;
}

@media (min-width: 1200px) {
    .col-xl-2 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 992px) {

    .navbar-expand-lg .navbar-collapse {
        margin-top: 45px;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        padding: 10px;
    }

    .navbar-expand-lg .navbar-nav .about-menu .dropdown-menu {
        position: absolute;
        right: -240%;
        border: solid 3px #369eaa;
        overflow: hidden;
        border-radius: 12px;
        padding: 10px;
    }

    .right-header {
        margin-top: 45px;
    }

    .homepage-testimonial .reviews-items .logo-img {
        margin-bottom: 30px;
    }
}

@media (min-width: 1198px) {
    .homepage-testimonial .reviews-items .logo-img {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 998px) {

    .contactForm {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 30px;
        word-break: break-word;
    }

    .hero-section .row {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content .row {
        gap: 20px;
    }

    .resources-box .row {
        gap: 20px;
    }

    .help-section .row {
        gap: 20px;
    }

    .help-left-30 {
        position: relative;
        left: 0;
    }

    .time-box {
        padding: 20px;
    }

    .logo-section {
        flex-direction: column;
    }

    .calculator-note {
        flex-direction: column;
        gap: 0px;
    }

    .calculator-img img {
        max-width: 380px;
        top: -90px;
    }

    .calculator-img img {
        position: relative;
        left: auto;
    }

    .faqs-box {
        padding: 20px 20px;
        margin-top: 60px;
    }

    .loan-option-box {
        padding: 40px;
    }

    .loan-officer-btn {
        flex-wrap: wrap;
    }

}

@media screen and (max-width: 991px) {
    .officer-img {
        margin: 0 auto 80px;
    }

    .review-seprater {
        max-width: 100%;
    }

    .contact-info h2 {
        max-width: 100%;
    }

    .review-box h2 {
        max-width: 100%;
    }

    .hero-text img {
        display: none;
    }

    .dont-box {
        padding: 20px 30px 40px 60px;
        max-width: 96%;
        margin: 60px auto 0;
    }

    .homepage-testimonial .reviews-items .logo-img {
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 768px) {
    .lone-officer-section .lone-officer-box {
        padding: 20px;
    }

    .officer-img {
        margin: 0 auto 80px;
    }

    .review-seprater {
        max-width: 100%;
    }

    .contact-info h2 {
        max-width: 100%;
    }

    .review-box h2 {
        max-width: 100%;
    }

    .hero-text img {
        display: none;
    }

    .hero-text {
        justify-content: center;
    }

    .hero-section .row {
        gap: 40px;
    }

    .hero-text h1 span {
        text-align: center;
    }

    .hero-text h1 {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .dont-box {
        padding: 20px 30px 40px 80px;
        max-width: 92%;
        margin: 60px auto 0;
    }


    .hero-resources-box {
        padding: 20px;
    }

    .hero-resources-btn {
        flex-wrap: wrap;
    }

    .help-section h2 {
        text-align: center;
    }


    .help-buttons {
        justify-content: center;
    }

    .breadcrumb-box label {
        font-size: 50px;
        line-height: 50px;
    }

    .footer-logo img {
        width: 100%;
    }

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

    .reviw-action {
        justify-content: center;
    }

    .guide-icon {
        display: none;
    }

    .guide-item {
        padding: 20px;
    }

}

.find-card label {
    color: #fff;
    font-size: 20px;
}

.find-card h3 {
    font-size: 30px
}

.popup-content .section-header h2 {
    margin: 10px auto;
}

.popup-content .section-header p {
    max-width: 1000px;
}

.loctablis {
    margin-top: 30px;
}

.loctabcont {
    background: #f7f7f7;
    padding: 30px 30px;
}

.loctablis ul {
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    border: none;
}

.loctablis ul > li > a {
    display: inline-block;
    background: #f4f3f3;
    border: 1px solid #999 !important;
    padding: 10px 20px;
    color: #000;
    letter-spacing: 2px;
    border-radius: 0px !important;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}

.loctablis ul li a.active {
    background-color: #164177 !important;
    color: #fff !important;
    border: 1px solid #164177 !important;
}

.sgadres a h3 {
    margin: 0 0 4px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.5s;
    overflow: hidden;
    text-align: left;
}

.sgadres a h3:after {
    content: "";
    left: -50%;
    width: 200px;
    height: 3px;
    letter-spacing: 0;
    bottom: 0;
    position: absolute;
    transition: all 0.5s;
}

.adressrows:hover .sgadres a h3:after {
    left: 0;
    background: #ffc528;
}

.sgadres a p {
    font-size: 16px;
    color: #000;
    text-align: left;
}

.stateHeader {
    text-align: left;
    margin-bottom: 30px;
}

.popup-branch-items {
    height: calc(100vh - 400px);
    overflow-x: hidden;
    overflow-y: auto;
}

.adressrows {
    padding: 20px 0;
}

.brninfo p {
    color: #000;
    text-align: left;
}

.mobile-content {
    position: relative;
}

.mobile-menu .footer-content {
    padding: 20px 2rem 40px;
    position: fixed;
    bottom: 0;
    background-color: #fff;
    z-index: 0;
}

.mobile-menu .footer-content li a {
    font-size: 12px;
}

.footer-content .address-menu-list li::after {
    font-size: 10px;
}


.loan-content h4 {
    margin-bottom: 15px;
    margin-top: 30px;
}

.loan-content .note {
    margin-bottom: 30px;
    text-align: center;
}

.loan-content ul {
    margin-bottom: 30px;
}

.loan-content ul li {
    padding: 4px 0;
    position: relative;
}

.loan-content ul li {
    margin-left: 20px;
}

.loan-content ul li::after {
    content: '';
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: center start;
    background-size: 20px;
    position: absolute;
    left: -25px;
    top: 5px;
    width: 20px;
    height: 20px;
}

.loan-content p {
    text-align: left;
}

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

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

.help-icon img {
    width: 107px;
    height: 107px;
    min-width: 107px;
    transition: all .3s linear;
}

.help-option:hover img {
    transform: scale(1.2);
}

.container .card-stack {
    width: 100%;
    height: 382px;
    margin: 0 auto;
}

.container .card-stack .buttons {
    display: none;
    position: absolute;
    background-color: #369eaa;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 0;
    top: 40%;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    font-size: 22px;
    z-index: 100;
    outline: none;
    transition: all 0.2s ease;
}


.container .card-stack .prev {
    left: 15px;
    right: auto;
    cursor: pointer;
}

.container .card-stack .next {
    left: auto;
    right: 15px;
    cursor: pointer;
}


.container .card-stack .card-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 100ms ease-in-out;
    border-radius: 10px;
    position: absolute;
    list-style: none;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.container .card-stack .card-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.container .card-stack .card-list li:nth-child(1) {
    top: 24px;
    width: 60%;
    /* animation: scaleCard 100ms; */
}

.container .card-stack .card-list li:nth-child(2) {
    top: 36px;
    width: 70%;
}

.container .card-stack .card-list li:nth-child(3) {
    top: 48px;
    width: 80%;
}

.container .card-stack .card-list li:nth-child(4) {
    top: 60px;
    width: 90%;
}

.container .card-stack .card-list li:nth-child(5) {
    top: 72px;
    width: 100%;
}

.container .card-stack:hover > .buttons.prev {
    display: block;
}

.container .card-stack:hover > .buttons.next {
    display: block;
}

.transformThis {
    animation: scaleDown 500ms;
}

.transformPrev {
    animation: scaleUp 100ms;
    display: none;
}

@keyframes scaleUp {
    0% {
        transform: scale(1.2) translateY(50px);
        opacity: 0;
    }

    20% {
        transform: scale(1.15) translateY(40px);
        opacity: 0.1;
    }

    40% {
        transform: scale(1.1) translateY(30px);
        opacity: 0.2;
    }

    60% {
        transform: scale(1.05) translateY(20px);
        opacity: 0.4;
    }

    80% {
        transform: scale(1.01) translateY(10px);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes scaleDown {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    20% {
        transform: scale(1.01) translateY(20px);
        opacity: 0.8;
    }

    40% {
        transform: scale(1.05) translateY(40px);
        opacity: 0.4;
    }

    60% {
        transform: scale(1.1) translateY(60px);
        opacity: 0.2;
    }

    80% {
        transform: scale(1.15) translateY(80px);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.2) translateY(100px);
        opacity: 0;
    }
}

@keyframes scaleCard {
    0% {
        top: 5px;
    }

    100% {
        top: 24px;
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

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


.card-slider {
    position: relative;
}

.cardslider {
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.cardslider.transformThis {
    transform: translateX(-100%);
    opacity: 0;
}

.cardslider.transformPrev {
    transform: translateX(100%);
    opacity: 0;
}

.cardslider.activeNow {
    opacity: 1;
    transform: translateX(0);
}


.cardslider-box {
    overflow: hidden;
}


.slider {
    position: relative;
    height: 377px;
    border-radius: 20px;
    overflow: hidden;
}

.slider__slides {
    z-index: 1;
    position: relative;
    height: 100%;

}

.slider__control {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 50px;
    height: 50px;
    margin-left: -10px;
    margin-top: -30px;
    border-radius: 50%;
    background: #369eaa;
    transition: background-color 0.3s;
    cursor: pointer;
}

.slider__control--right {
    left: 90%;
}

.slider__control:hover {
    background-color: #369eaa;
}

.slider__control-line {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 3px;
    height: 14px;
    transform-origin: 50% 0;
    transform: rotate(-45deg);
}

.slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(-135deg);
}

.slider__control--right .slider__control-line {
    left: 30px;
    transform-origin: 1px 0;
    transform: rotate(45deg);
}

.slider__control--right .slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(135deg);
}

.slider__control-line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e2e2;
    transition: background-color 0.3s;
}

.slider__control:hover .slider__control-line:after {
    background-color: #fff;
}

.slider__control.a--rotation .slider__control-line:after {
    -webkit-animation: arrowLineRotation 0.49s;
    animation: arrowLineRotation 0.49s;
}

.slider__control.a--rotation .slider__control-line:nth-child(1):after {
    -webkit-animation: arrowLineRotationRev 0.49s;
    animation: arrowLineRotationRev 0.49s;
}

@-webkit-keyframes arrowLineRotation {
    to {
        transform: rotate(180deg);
    }
}

@keyframes arrowLineRotation {
    to {
        transform: rotate(180deg);
    }
}

@-webkit-keyframes arrowLineRotationRev {
    to {
        transform: rotate(-180deg);
    }
}

@keyframes arrowLineRotationRev {
    to {
        transform: rotate(-180deg);
    }
}

.slider-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: max-content;
    /* You can change this to something like 500px or aspect-ratio if preferred */
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: clip-path 0s 0.91s, -webkit-clip-path 0s 0.91s;
    -webkit-clip-path: circle(30px at 120% 50%);
    clip-path: circle(30px at 120% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.s--prev {
    -webkit-clip-path: circle(30px at 30% 50%);
    clip-path: circle(30px at 30% 50%);
}

.slide.s--active {
    z-index: 1;
    transition: clip-path 1.3s, -webkit-clip-path 1.3s;
    -webkit-clip-path: circle(150% at 120% 50%);
    clip-path: circle(150% at 120% 50%);
}

.slide.s--active.s--active-prev {
    -webkit-clip-path: circle(150% at 30% 50%);
    clip-path: circle(150% at 30% 50%);
}

/* Slide Inner */
.slide__inner {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.slide__inner::before {
    content: "";
    position: absolute;
    inset: 0;
}

/* Background Images */
/* .slide:nth-child(1) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-2.jpg");
}
.slide:nth-child(2) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-3.jpg");
}
.slide:nth-child(3) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-4.jpg");
} */

/* Slide Content */
.slide__content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 480px;
    color: #fff;
    padding: 1rem;
    z-index: 2;
}

.slide__heading {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.2;
}

.slide__text {
    font-size: 1.25rem;
}

.slide__text a {
    color: inherit;
}

.custom-btn {
    min-width: 150px;
    font-size: 16px;
}


.content-section blockquote {
    padding-left: 30px;
    position: relative;
}

.content-section blockquote {
    padding-left: 30px;
    position: relative;
}

.content-section blockquote {
    position: relative;
    padding-left: 30px;
}

.content-section blockquote::after {
    background: linear-gradient(0deg, rgba(0, 84, 166, 0) 0%, rgba(252, 238, 199, 1) 47%);
    content: '';
    width: 12px;
    height: calc(100% - 10px);
    margin-top: 10px;
    position: absolute;
    left: 0;
    top: -8px;
    border-radius: 50px;
}

.content-section h2 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.ck-content h2:not(:first-of-type) {
    margin-top: 50px;

}


.content-section h2 span {
    color: #369eaa;
}

.content-section ul {
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
}

.content-section ul li {

    margin-left: 25px;
}


.content-section ul li::after {
    content: "";
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    left: -25px;
    width: 20px;
    height: 20px;
    top: 8px;
}


.content-section p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

.content-section h5 {
    margin-bottom: .5rem !important;
}


.content-section h3 {
    text-align: center;
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.content-section h3 span {
    color: #369eaa;
}


.content-section h4 {
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section ul li {
    padding: 4px 0;
    position: relative;
}


.box-content-text ul {
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    margin-left: 40px;
}

.box-content-text ul li {
    font-family: "MarketPro";

    font-size: 30px;
    line-height: 40px;
}

h6 {
    font-size: 16px;
    line-height: 30px;
    max-width: 500px;
}

.btn-info {
    padding: 9px;
}

.content-section h5 {
    color: #164177;
    font-family: "Poppins", sans-serif;
    font-weight: 500 !important;
    text-transform: capitalize;
    text-align: left !important;
    margin-bottom: 15px;
    font-size: 20px !important;
}


.box-content-text ul li::after {
    content: "";
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    left: -25px;

    width: 20px;
    height: 20px;
    margin-top: 10px;

}

#consultationModal label {
    padding-bottom: 8px;
}


.pinning-contact {
    position: fixed;
    width: 100%;
    z-index: 1111;
    bottom: 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background-color: #369eaa;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

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

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

.pinning-contact .pinning-img img {
    height: 100%;
    width: 100%;
    border-radius: 40px;
}

.pinning-contact .pinning-spe {
    margin-left: 100px;
    min-height: 100%;
    flex-direction: column;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pinning-contact .pinning-spe a {
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
}

.pinning-contact .pinning-spe p {
    font-size: 14px;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    margin: 0;
}

.pinning-contact .pinning-con-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
}

.pinning-contact .pinning-con-info a {
    text-decoration: none;
    padding: 2px 14px;
    border-radius: 4px !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    color: black;
    border: solid 2px #e0dddd;
}

.pinning-contact .pinning-con-info a:hover {
    background-color: black;
    color: white;
    transition: 0.3s;
}

.pinning-contact #clear-session {
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pinning-contact #clear-session i {
    font-size: 16px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .pinning-contact .pinning-con-info {
        gap: 5px;
    }

    .pinning-con-info {
        position: absolute;
        bottom: 0px;
        width: 90%;
        justify-content: flex-start !important;
    }

    .pinning-contact .pinning-con-info a {
        all: unset;
        display: inline-block;
        text-decoration: none;
        padding: 2px 14px;
        border-radius: 4px;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 12px;
        background-color: #fff;
        color: black;
        border: solid 2px #e0dddd;
    }

    .pinning-contact .pinning-con-info a:hover {
        text-decoration: underline;
    }

    .pinning-title {
        text-decoration: underline !important;
        position: relative;
        color: #007bff;
        cursor: pointer;
    }

    .pinning-title::after {
        content: '';
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M10.0002 5H8.2002C7.08009 5 6.51962 5 6.0918 5.21799C5.71547 5.40973 5.40973 5.71547 5.21799 6.0918C5 6.51962 5 7.08009 5 8.2002V15.8002C5 16.9203 5 17.4801 5.21799 17.9079C5.40973 18.2842 5.71547 18.5905 6.0918 18.7822C6.5192 19 7.07899 19 8.19691 19H15.8031C16.921 19 17.48 19 17.9074 18.7822C18.2837 18.5905 18.5905 18.2839 18.7822 17.9076C19 17.4802 19 16.921 19 15.8031V14M20 9V4M20 4H15M20 4L13 11"%3E%3C/path%3E%3C/svg%3E');
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        width: 12px;
        height: 12px;
        position: absolute;
    }

    .pinning-contact .container-fluid {
        padding-bottom: 30px;
    }

    .pinning-phone {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .pinning-buttons {
        margin-right: -20px;
        justify-content: end !important;
    }
}

.pinning-close-btn-sm {
    width: 20px;
    height: 20px;
    position: relative;
    border: none;
}

.pinning-close-btn-sm:before,
.pinning-close-btn-sm:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 20px;
    background-color: #ffffff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: ease-out .3s all;
}

.pinning-close-btn-sm:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.pinning-close-btn-sm:hover:before {
    transform: translate(-50%, -50%) rotate(135deg);
}

.pinning-close-btn-sm:hover:after {
    transform: translate(-50%, -50%) rotate(225deg);
}

::selection {
    background-color: #164177 !important;
    color: white !important;
}
