/**
* Template Name: Lendesta Template - v2.2.1
  * Template URL: https://kgcchemical.com/lendesta
  * Author: Lendesta Team
*/

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #444444;
}

.container {
    max-width: 1220px;
}

a {
    color: #5fcf80;
}

a:hover {
    color: #86db9f;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #ffb506;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #3ac162;
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffb506;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    padding: 30px 0 27px;
    /* box-shadow: 0px 0 18px rgb(0 0 0 / 50%); */
    position: absolute;
    width: 100%;
}

#header.page-banner-header .logo img {
    max-height: 120px;
}

#header.page-banner-header.fixed .logo img {
    max-height: 60px;
}

#header.page-banner-header {
    padding-top: 20px;
}

#header.fixed {
    position: fixed;
    transition: .5s;
    background: #d39e00;
    padding: 10px 0;
    box-shadow: 0 0 20px #797878;
}

#header.fixed .logo img {
    max-height: 31px;
}

#header.fixed .btn.btn-success.top-btn {
    font-size: 11px;
}

#header.fixed .nav-menu a {
    font-size: 13px;
}

#header.fixed .nav-top-area {
    margin-bottom: 10px;
}

#header.fixed .nav-menu a:hover,
#header.fixed .nav-menu .active>a,
#header.fixed .nav-menu li:hover>a {
    color: #093c61;
    font-weight: 700;
}

#header .logo a {
    color: #5fcf80;
}

#header .logo img {
    max-height: 60px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 6px 0 0 36px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #ffb506;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #37423b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #5fcf80;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 17px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #37423b;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #37423b;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: rgb(255 181 6);
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(32, 38, 34, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.btn.btn-success.top-btn {
    background: #093c61;
    border: none;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 30px 8px;
    margin-right: 6px;
    transition: .5s;
    text-transform: uppercase;
}

.btn.btn-success.top-btn:hover {
    transition: .5s;
    box-shadow: 0 0 40px #5b5757;
    transform: scale(1.02);
}

.footer-menu ul li.active a {
    color: #093c61;
    font-weight: 700;
}

.btn.btn-success.top-btn.appointment {
    background: #ffb506;
    color: #000;
    font-weight: 700;
    padding: 10px 35px 8px;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-success.top-btn.appointment:hover {
    transition: .5s;
    box-shadow: 0 0 40px #5b5757;
    transform: scale(1.02);
}

.social-link a {
    display: inline-block;
    margin-right: 5px;
}

.nav-top-area {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
section#hero {
    background-image: url('../img/banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    height: 50vw;
}

.banner-text-sc {
    color: #fff;
    padding: 280px 0;
}

.banner-text-sc h1 {
    font-weight: 400;
    font-size: 40px;
    position: relative;
    z-index: 2;
    padding-bottom: 22px;
    margin-bottom: 26px;
}

.banner-text-sc h1 span {
    font-weight: 300;
    letter-spacing: 1.4px;
}

.banner-text-sc h1::before {
    position: absolute;
    bottom: 0;
    left: -80px;
    width: 260px;
    height: 4px;
    background: #ffb506;
    content: '';
}

.banner-text-sc p {
    font-size: 18px;
    font-weight: 300;
}

.banner-text-sc a.btn.btn-success.top-btn.appointment {
    font-size: 16px;
    padding: 18px 50px 15px;
    text-transform: uppercase;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Loan section
-------------------------------------------------------------*/
.section-title {}

section.client-loan-section-area {
    padding-top: 130px;
    padding-bottom: 150px;
    position: relative;
    z-index: 2;
}

section.client-loan-section-area::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 74%;
    background-image: url('../img/loan-shape.png');
    background-size: 100% 100%;
    background-position: bottom;
    z-index: -1;
    content: '';
}

section.client-loan-section-area .section-title {
    justify-content: flex-start;
    align-items: flex-start;
}

section.client-loan-section-area .section-title h2 {
    line-height: 40px;
}

.section-title h2 {
    font-size: 42px;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 35px;
    position: relative;
    z-index: 2;
    padding-left: 60px;
}

.section-title p {
    color: #000;
    font-weight: 300;
}

.section-title h4 {
    color: #000;
    font-size: 41px;
    font-weight: 300;
}

.section-title h2::before {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    background: #ffb506;
    width: 40px;
    height: 4px;
    content: '';
}

.box-grid-module {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
    padding-top: 25px;
    /*align-items: center;*/
    position: relative;
    z-index: 2;
}

.box-grid-module::before {
    position: absolute;
    top: 61px;
    left: 65px;
    width: 100%;
    height: 56%;
    background-image: url('../img/loan-mark-shape.png');
    background-position: center;
    background-size: 100% 100%;
    content: '';
    z-index: -1;
    background-repeat: no-repeat;
}

.box-grid-module .single-box {
    flex: 0 0 30.3%;
}

.box-grid-module .single-box:nth-child(4),
.box-grid-module .single-box:nth-child(5),
.box-grid-module .single-box:nth-child(6),
.box-grid-module .single-box:nth-child(7) {
    flex: 0 0 22%;
}

.box-grid-module .single-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 22px;
}

.box-grid-module .single-box img {
    /*max-height: 112px;*/
    margin-bottom: 12px;
}

.box-grid-module .single-box p {
    color: #525050;
    font-size: 15px;
    padding-top: 5px;
}

/*--------------------------------------------------------------
# Get started section
-------------------------------------------------------------*/
section.get-started-section {
    background: #093c61;
    padding: 30px 0;
    color: #fff;
}

.contact-action-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-icon {
    display: flex;
    align-items: center;
}

.text-icon h2 {
    padding-left: 40px;
    font-size: 36px;
}

.btn.btn-success.top-btn.appointment.big {
    font-size: 16px;
    padding: 17px 40px 14px;
}

.text-icon h2 span {
    text-transform: uppercase;
    font-weight: 300;
}


/*--------------------------------------------------------------
# Our services section
-------------------------------------------------------------*/

section.our-sevices-area {
    padding: 90px 0 100px;
}

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

section.our-sevices-area .section-title h2 {
    padding-bottom: 3px;
}

.row.service-module {
    justify-content: center;
    padding: 35px 0;
}

.single-service-box {
    text-align: center;
    margin-bottom: 50px;
    transition: .5s;
}

.single-service-box:hover {
    transition: .5s;
    box-shadow: 0px 20px 10px #f7f7f7;
    /* padding: 20px; */
    transform: scale(1.05);
}

.single-service-box h3,
.single-product-box h3,
.single-partner-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 22px;
    text-transform: uppercase;
    padding: 20px 0 3px;
    text-shadow: 0px 0px 1px #343a40;
}

.single-service-box p {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.btn.btn-success.top-btn.bigL {
    background: #002a67;
    font-size: 16px;
    padding: 14px 40px 13px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Our Product section
-------------------------------------------------------------*/

.our-product-section,
.parner-section-area {
    background-image: url('../img/products_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 70px 0 40px;
}

.our-product-section .section-title h2 {
    color: #fff;
    font-size: 40px;
}

.our-product-section .section-title h2 span {
    font-weight: 200;
    padding-left: 5px;
}

.row.product-module {
    padding-top: 60px;
}

.single-product-box {
    background: #fff;
    text-align: center;
    padding: 61px 20px;
    min-height: 423px;
    margin-bottom: 45px;
    transition: .5s;
}

.single-product-box:hover {
    transition: .5s;
    transform: translateY(-15px);
    /* border-bottom: 8px solid #ffb506; */
    box-shadow: inset 0 0 16px #d39e00;
}

.single-product-box img {
    padding-bottom: 15px;
}

.single-product-box a {
    color: #000;
}

.single-product-box p {
    color: #525050;
    font-size: 15px;
    line-height: 24px;
}

.single-product-box h3,
.single-partner-box h3 {
    font-size: 17px;
    text-shadow: 0px 0px 1px #a2a4a5;
    padding-bottom: 10px;
}

/*--------------------------------------------------------------
# About section
-------------------------------------------------------------*/

section.about-section-area {
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-details-area h3 {
    color: #253444;
    font-size: 40px;
    line-height: 50px;
}

.about-details-area h3 span {
    font-weight: 300;
}

.about-list-area ul li {
    list-style: none;
    position: relative;
    z-index: 2;
    padding-bottom: 33px;
    color: #000;
    font-weight: 500;
    padding-left: 40px;
}

.about-list-area ul li::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/right-mark.png')no-repeat;
    content: '';
}

.about-list-area ul {
    padding-left: 10px;
    margin-bottom: 0;
}

.button-about-area a.btn.btn-success.top-btn.appointment {
    text-shadow: 0 1px #737272;
    margin-left: 7px;
}

.about-list-area {
    padding: 25px 0 6px;
}

p.about-btm-text {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 10px 0;
}

section.about-section-area .row {
    align-items: center;
}

/*--------------------------------------------------------------
# Partners section
-------------------------------------------------------------*/

section.parner-section-area {
    background-image: url('../img/partners_bg.png');
}

/*section.parner-section-area .section-title h2, .client-section-area .section-title h2 {
    color: #000;
    font-size: 42px;
}*/
.parner-section-area .section-title h2::before {
    left: 3%;
    width: 40px;
    background: #000;
}

.section-title h2 span {
    font-weight: 300;
    padding-left: 0px;
    text-transform: capitalize;
}

.section-title p {
    font-size: 16px;
    color: #3e3d3d;
    margin-bottom: 0;
    text-shadow: 0 0 #6a6969;
    text-align: center;
    font-weight: 500;
    padding: 18px 0 15px;
}

.single-partner-box {
    background: url('../img/partners_box.png');
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.row.partner-module {
    justify-content: center;
    padding-top: 36px;
}

.single-partner-box h3 {
    color: #1b1b1b;
}

.single-partner-box {
    padding: 50px 30px 58px;
    transition: .5s;
}

.single-partner-box:hover {
    transition: .5s;
    transform: scale(1.05);
}

.single-partner-box p {
    color: #525050;
    font-size: 15px;
    min-height: 90px;
    margin-bottom: 28px;
}

.row.partner-module .col-md-4 {
    max-width: 30%;
}

.single-partner-box p {
    color: #525050;
    font-size: 15px;
}

.parner-section-area {
    padding: 70px 0 80px;
}

/*--------------------------------------------------------------
# Client section
-------------------------------------------------------------*/

section.client-section-area {
    padding-top: 100px;
    padding-bottom: 110px;
}

.client-single-item img {
    width: 40px !important;
}

.client-single-item {
    text-align: center;
    background-color: #fff;
    box-shadow: -1px 3px 30px #e5eaea;
    margin: 11px 25px 20px;
    padding: 50px 20px 30px;
    border-radius: 5px;
    border-bottom: 6px solid rgb(231 174 54);
}

.client-img-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel.client-slide {
    padding-top: 40px;
}

.client-single-item p {
    color: #485156;
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
}

.client-img-block span {
    color: #016aa4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    padding-left: 20px;
}

section.client-section-area .container {
    padding: 0;
}

.owl-carousel.client-slide .owl-dots {
    display: block;
    position: absolute;
    bottom: -46px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-carousel.client-slide .owl-dots button {
    background: #c7deea;
    width: 13px;
    height: 13px;
    margin: 0 4px;
    border-radius: 50%;
}

.owl-carousel.client-slide .owl-dots button.active {
    background: #093c61;
}

.owl-carousel.client-slide .owl-nav .owl-prev,
.owl-carousel.client-slide .owl-nav .owl-next {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: -70px;
    background: #093c61;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}

.owl-carousel.client-slide .owl-nav .owl-prev i,
.owl-carousel.client-slide .owl-nav .owl-next i {
    color: #fff;
}

.owl-carousel.client-slide .owl-nav .owl-next {
    left: auto;
    right: -70px;
}

/*--------------------------------------------------------------
# Contact section
-------------------------------------------------------------*/

.contact-section-area .section-title p {
    padding: 15px 0 15px;
    font-size: 17px;
    color: #fff;
}

.contact-section-area {
    background: url('../img/contact_bg.png');
    width: 100%;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    padding-top: 80px;
    /*padding-bottom: 40px;*/
}

.contact-section-area .section-title h2 {
    color: #fff;
}

.contact-section-area .section-title h2 span {
    padding-left: 9px;
}

.contact-section-area .row {
    justify-content: center;
}

.form-section input.form-control.input-area::placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 500;
}

input.form-control.input-area,
select.form-control.select-area,
textarea.form-control.textarea {
    border: 2px solid #d1d1d1;
    padding: 28px 25px;
    border-radius: 50px;
    margin-bottom: 10px;
}

textarea.form-control.textarea {
    border-radius: 12px;
    color: #6c6c6c;
    font-weight: 500;
}

select.form-control.select-area {
    color: #6c6c6c;
    padding: 0 25px;
    height: 56px;
    -webkit-appearance: none;
    background: url(../img/select-dpr.png) no-repeat rgb(255 255 255);
    background-position: center right 24px;
}

.form-section .col-md-6,
.form-section .col-md-12 {
    padding-left: 5px;
    padding-right: 5px;
}

.contact-section-area .row .col-md-7 {
    flex: 0 0 55.333333%;
    max-width: 55.333333%;
}

button.btn.btn-success.top-btn.appointment.big.submit_btn {
    font-size: 15px;
    padding: 15px 60px 14px;
}

.form-section {
    padding-top: 25px;
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Contact section and footer 
-------------------------------------------------------------*/

#footer {
    background: url('../img/footer-shape-bg.png');
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 210px;
    padding-bottom: 40px;
}

#footer .container {
    max-width: 1300px;
}

.footer-content-area h4 {
    color: #093c61;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 12px;
}

.footer-content-area p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0px 0px 1px #555;
}

.contact-info {
    color: #000;
}

.contact-info ul li {
    list-style: none;
    font-weight: 500;
    font-size: 14px;
    text-shadow: 0px 0px 1px #555;
    line-height: 31px;
}

.contact-info ul {
    padding-left: 6px;
}

.contact-info ul li a {
    color: #000;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.logo-ftr img {
    width: 95%;
    padding-top: 35px;
}

.footer-menu li {
    list-style: none;
}

.footer-menu ul {
    display: flex;
    justify-content: space-evenly;
    padding: 0 0 0 0;
}

.footer-menu ul li a {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-menu {
    border-top: 1px solid #c9952e;
    border-bottom: 1px solid #c9952e;
    padding: 15px 0px 0px;
    margin-left: 62px;
    margin-top: 20px;
}

.copyright {
    text-align: center;
}

.copyright p {
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0px 0px 1px #555;
}

.footer-social-link {
    display: flex;
    justify-content: center;
    margin: 33px 0;
}

.footer-social-link a {
    margin: 0 5px;
}

/*--------------------------------------------------------------
# Contact Us page section 
-------------------------------------------------------------*/

.page-banner-section {
    background-image: url(../img/page-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    height: 26vw;
}

.page-banner-section .banner-text-sc {
    padding: 260px 0;
}

.mortgage.page-body-section {
    padding-bottom: 0px;
}

.page-body-section {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 100px;
}

.page-body-section::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/page-body-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: -1;
    content: '';
}

h2.page-title {
    text-align: center;
    text-transform: capitalize;
    color: #000;
    font-weight: 300;
    font-size: 45px;
}

.row.angel-box-module {
    justify-content: center;
}

h2.page-title {
    text-align: center;
    text-transform: capitalize;
    color: #000;
    font-weight: 300;
    font-size: 45px;
}

.row.angel-box-module {
    justify-content: center;
    padding-top: 20px;
}

.single-angle-box {
    text-align: center;
    transition: .5s;
}

.single-angle-box:hover {
    transition: .5s;
    transform: translateY(-10px);
}

.single-angle-box h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 22px;
    text-transform: uppercase;
    padding: 25px 0 8px;
    text-shadow: 0px 0px 1px #343a40;
}

.single-angle-box img {
    max-height: 65px;
}

.single-angle-box {
    background: url('../img/angel-box1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    position: relative;
    height: 100%;
    padding: 110px 26px;
}

.single-angle-box.bg2 {
    background: url(../img/angel-box2.png) center/cover !important;
}

.mortgage .single-angle-box.bg2 {
    transform: translateY(-120px);
}

.single-angle-box p {
    color: #fff;
    font-size: 13px;
    line-height: 23px;
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Co-marketing page section 
-------------------------------------------------------------*/

#about-shape-block.page-banner-section {
    background-image: url(../img/page-banner-marketing.png);
}

#about-shape-block.about.page-banner-section {
    background-image: url(../img/page-banner-about.png);
}

#about-shape-block.page-body-section {
    background: url(../img/marketing-banner-img.png) no-repeat right bottom;
    padding-top: 180px;
}

#about-shape-block.about.page-body-section {
    background: none;
    padding-top: 110px;
}

#about-shape-block.page-body-section::before {
    background-image: url(../img/marketing-bg-body.png);
    background-size: 65% 70%;
    bottom: -136px;
    background-position: left;
}

#about-shape-block.about.page-body-section::before {
    background-image: url(../img/page-about-shape.png);
    background-size: 100% 100%;
    bottom: 0;
}

section#about-shape-block .section-title {
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 28px;
}

.about-marketing-text p {
    color: #000;
    font-size: 19px;
    line-height: 33px;
    font-weight: 500;
    padding-bottom: 28px;
}

.marketing-co-banner {
    display: none;
}

/*--------------------------------------------------------------
# About page section 
-------------------------------------------------------------*/
.about .about-marketing-text {
    padding-top: 80px;
    padding-left: 30px;
}

.about .about-marketing-text p {
    padding-bottom: 20px;
}

#about-shape-block.about_block_2.page-body-section::before {
    background: url(../img/about-image2.png) no-repeat right bottom;
    bottom: 0;
}

#about-shape-block.about_block_2.page-body-section {
    background-image: none !important;
    background-color: #093c61;
    padding-top: 110px;
}

.about_block_2 .section-title h2 {
    color: #fff;
    /* padding-bottom: 0; */
    /* margin-bottom: 0; */
}

.about_block_2 .section-title h2 span {
    padding-left: 19px;
    /* padding-bottom: 0; */
}

section#about-shape-block.about_block_2 .section-title {
    padding-bottom: 25px;
}

section#about-shape-block.about_block_2 .details p {
    color: #fff;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

section#about-shape-block.about_block_2 .details {
    padding-bottom: 50px;
}

section#about-shape-block.about_block_2 .buton-about-area a {
    padding-left: 0;
    margin-left: 0;
}

.about_block_2 .button-about-area a.btn.btn-success.top-btn.appointment {
    margin-left: 0;
}

/*team*/


section.our-team-section {
    padding-top: 130px;
    padding-bottom: 150px;
}

.team-warper-area {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.team-image {
    margin-bottom: 27px;
    position: relative;
    z-index: 2;
    transition: .5s;
}

.single-team-warp h3 {
    font-size: 15px;
    margin-bottom: 0;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.single-team-warp {
    text-align: center;
    transition: .5s;
}

.single-team-warp:hover {
    transform: translateY(-10px);
    transition: .5s;
}

.single-team-warp p {
    color: #000;
}

.team-image::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffb506;
    opacity: 0;
    content: '';
    transition: .5s;
}

.team-image:hover:after {
    opacity: 0.7;
}

/*End team*/

/*promise section*/

.our-promise-section {
    background: url('../img/promise-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    position: relative;
    height: 100%;
    padding: 60px 0px 70px;
}

.promise-module-block {
    text-align: center;
}

.promise-module-block h2 {
    padding: 25px 0 22px 0;
}

.section-title.none-border h2::before {
    background: transparent;
}

.section-title.none-border h2 {
    padding-left: 0;
}

.promise-module-block p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

/*End promise section*/

/*--------------------------------------------------------------
# Career page section 
-------------------------------------------------------------*/

#about-shape-block.career.page-banner-section {
    background-image: url(../img/page-career-banner.png);
}

.career.page-banner-section .banner-text-sc {
    padding: 36vh 0;
}

#about-shape-block.career.page-body-section {
    background-image: url(../img/career-about.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding-top: 100px;
    padding-bottom: 120px;
}

#about-shape-block.career.page-body-section::before {
    background-image: none;
}

#career .section-title h2 {
    padding-left: 0;
    line-height: 46px;
}

#career .section-title h2 span {
    padding-left: 8px;
    color: #ffb506;
    font-weight: 400;
}

#career .details p {
    font-size: 15px;
    line-height: 27px;
    padding-bottom: 15px;
}

#career .details {
    padding-bottom: 18px;
}

#small-btn a.btn.btn-success.top-btn.appointment {
    margin-left: 0;
    color: #fff;
    text-shadow: none;
    padding: 9px 60px;
    font-weight: 500;
    font-size: 15px;
}

section.loan-summary-section {
    padding-top: 80px;
}

.summary-text {
    padding: 23px 0px 40px;
}

.summary-text b {
    color: #000;
    padding-bottom: 8px;
    display: block;
    font-weight: 500;
    font-size: 18px;
}

.summary-text p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

h2.title-loan {
    color: #000;
    font-size: 19px;
    font-weight: 700;
    padding-bottom: 25px;
}

.sub-listing-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 100px; */
    /* margin: 0 42px; */
}

.sub-listing-info .item {
    flex: 0 0 44%;
    /* display: flex; */
    padding-bottom: 45px;
}

.sub-listing-info .item img {
    float: left;
    overflow: hidden;
    margin-right: 45px;
}

.sub-listing-info .item p {
    overflow: hidden;
    /* clear: both; */
    color: #000;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-shadow: 0px 0px #928d8d;
}

.loan-essential-warper {
    margin: 0 42px;
}

.qualification-section {
    background-image: url(../img/qualifition-shape-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 60px;
}

.single-qulifi-box {
    background: #093c61;
    color: #fff;
    text-align: center;
    border-radius: 7px;
    padding: 40px 11px 7px;
    transition: .5s;
    max-width: 23.5%;
}

.single-qulifi-box:hover {
    box-shadow: 0 0 29px #222;
    transition: .5s;
}

.single-qulifi-box img {
    padding-bottom: 18px;
}

.single-qulifi-box p {
    font-size: 14px;
    margin-bottom: 5px;
}

.row.qulifi-box-module {
    padding-top: 50px;
    padding-bottom: 40px;
    gap: 20px;
}

.qualification-section #small-btn a.btn.btn-success.top-btn.appointment {
    background: #093c61;
}

.qualification-section #small-btn {
    text-align: center;
}

/*--------------------------------------------------------------
# Mortgage rates page section 
-------------------------------------------------------------*/

#about-shape-block.mortgage.page-body-section {
    background-image: none;
    padding-top: 70px;
    padding-bottom: 60px;
}

#contact-page.mortgage.page-body-section::before {
    background-image: none;
}

#about-shape-block.mortgage.page-banner-section {
    background-image: url(../img/mortgage-rates-banner.png);
}

#about-shape-block.mortgage.page-body-section::before {
    background-image: none;
}

#about-shape-block.mortgage.page-body-section {
    background-image: none;
}

.mortgage .button-about-area a.btn.btn-success.top-btn.appointment {
    margin-left: 0;
}

.mortgage .details p {
    font-size: 16px;
    line-height: 28px;
    color: #485156;
    /*padding-bottom: 23px;*/
}

.mortgage .about-marketing-text {
    padding-top: 60px;
    padding-left: 30px;
}

.payment-calculator-section {
    background-image: url(../img/mortgage-rates-blue-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding-top: 130px;
    padding-bottom: 140px;
}

.payment-calculator-section .section-title {
    text-align: center;
    /* color: #fff; */
}

.payment-calculator-section .section-title h2,
.payment-calculator-section .section-title h4 {
    color: #fff;
}

.payment-calculator-section .section-title h4 {
    padding-top: 25px;
}

.payment-calculate-show-info {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    transition: .5s;
}

.payment-calculate-show-info .item p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 12px;
}

.payment-calculate-show-info .item img {
    transition: .5s;
}

.payment-calculate-show-info .item:hover img {
    transform: translateY(-10px);
    transition: .5s;
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

section.payment-calculator-chatbar-sc {
    padding: 60px 0 25px;
}

.payment-calculator-chatbar-sc .section-title h4 {
    font-size: 35px;
    line-height: 43px;
    padding-bottom: 40px;
}

.mortgage-range-moveing>p {
    color: #000;
    font-weight: 500;
}

.moveing-slide-sc .item label {
    color: #646464;
    margin: 12px 0 12px;
}

.moveing-slide-sc .item label span {
    color: #17c018;
    font-weight: 500;
}

input[type='range'] {
    /*overflow: hidden;*/
    -webkit-appearance: none;
    position: relative;
}

input[type='range']::-webkit-slider-thumb {
    width: 16px;
    -webkit-appearance: none;
    height: 16px;
    border-radius: 50px;
    background: #25a79a;
    /*border: 2px solid #007863;*/
    position: relative;
    top: -3px;
}

input[type='range']::-webkit-slider-runnable-track {
    height: 3px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: 0px;
    background: #c6c2c4;
}

h4.show-total-title {
    text-align: center;
    color: #000;
    font-weight: 400;
    font-size: 21px;
}

h4.show-total-title span {
    color: #0093e2;
}

.js-chat-area img {
    width: 75%;
    /* margin: 0 auto; */
}

.js-chat-area {
    text-align: center;
}

.interest-installment-table table td {
    width: 100%;
    color: #000;
    /* padding-left: 0; */
    font-size: 16px;
    font-weight: 500;
    border-top: none;
    padding: 6px 0 7px 0;
    border-bottom: 2px solid #e0e0e0;
}

.interest-installment-table {
    margin-top: 20px;
}

.interest-installment-table table td.text-end {
    text-align: right;
}

.breakdonw-show-monthly-area .js-chat-area img {
    width: 100%;
}

.breakdonw-show-monthly-area {
    margin-top: 20px;
}

#mortgage-page .section-title p {
    color: #fff;
}

#mortgage-page {
    padding: 95px 0 60px;
}

#mortgage-page h2 {
    padding-bottom: 10px;
}

#mortgage-page.our-product-section {
    background-image: url(../img/mortgage-product-banner.png);
}

#mortgage-page .single-product-box {
    padding: 40px 20px;
}

#mortgage-page .single-product-box p {
    font-size: 14px;
}

#mortgage-page .single-product-box h3 {
    padding-top: 0;
}