@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Color Variables */
:root {
    --primary-color: #499BE9;
    /* Primary color (links, buttons, etc.) */
    --secondary-color: #6c757d;
    --third-color: #011e38;
    /* Secondary color */
    --background-color: #f9f9f9;
    /* Background color */

    /* Main text color */
    --heading-color: #2C2C2C;
    /* Heading color */
    --border-color: #ddd;
    /* Border color */
    --input-background: #fff;

    /* Input field background */
    --input-border: #ccc;
    /* Input field border */
    --input-focus-border: #007bff;
    /* Input field focus border */
    --white-background: #fff;
    --border-color: #0060ec;
    --font-awsome-color: #2d2ec3;
    --hover: #499BE9;
    --white-color: #fff;
    --black-color: #000;
    --footer-color: #1F2230;
    --comon-colort: #10375C;
    --text-color: #252525;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    /* Default font */
    font-size: 16px;
    /* Base font size */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--input-background);
    background: var(--input-background);
}

.main-container {
    width: 100%;
    /* max-width: 1320px; */
    margin: 0px auto;
    display: block;
}

.main-container-cstm {
    width: 100%;
    max-width: 1320px;
    margin: 0px auto;
    display: block;

}

.main-row-cstm {
    padding: 0px 30px;
}

.main-row {
    padding: 0px 120px;
}

.flex-ft {

    display: flex;
    flex-wrap: wrap;
    padding: 0px 30px;

}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    margin-bottom: 0rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 14px;
    /* margin-bottom: 1.5rem; */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.35s ease-in-out;
}

a:hover {
    color: darken(var(--primary-color), 15%);
    text-decoration: none;
}

/* Lists */
ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: decimal;
}

li {
    margin-bottom: 0rem;
}



input,
textarea,
select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-background);
    color: var(--text-color);
    transition: border-color 0.3s ease;
    font-family: "Open Sans", sans-serif;
    height: 47.59px;
    min-height: 47.59px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--input-focus-border);
    outline: none;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #7d7d7d;
    font-family: "Nunito", sans-serif;
}

textarea {
    resize: vertical;
}

/* Buttons */

.common-btn {
    position: relative;
    display: inline-block;
    transition: 0.3s;
    padding: 5px;
    /* margin: 10px; */
    color: #fff;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    background-color: var(--heading-color);
}

.btn--hoverEffect {
    display: inline-block;
    z-index: 1;
    color: #ff3c83;
}

.btn--hoverEffect:hover {
    color: #fff;
}

.btn--hoverEffect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.3s all ease;
    box-sizing: border-box;
}

.btn--hoverEffect:hover::before {
    border-radius: 4px;
    transition: 0.3s all ease;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--heading-color), var(--hover-light));
    opacity: 1;
    z-index: -1;
}

button.primary {
    background-color: var(--primary-color);
    color: #fff;
}

button.primary:hover {
    background-color: darken(var(--primary-color), 15%);
}

button.secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

button.secondary:hover {
    background-color: darken(var(--secondary-color), 15%);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.ml-1 {
    margin-left: 1rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pl-1 {
    padding-left: 1rem;
}

img {
    width: 100%;
    transition: opacity .1s ease-in-out;
}


/* typography css end */



/* header css started  */
.menu-flx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header-item .logo img {
        max-width: 190px;
    }
    .header-item .logo {
        
        /*height:75px;*/
      height:56px;  
    }
.decorative-circle {
    display: none;
}

.flx-header {
    display: flex;
    align-items: center;
}

/* header */
.header {
    display: block;
    width: 100%;
    position: fixed;
    z-index: 99;
    top: 0px;
    padding: 15px 0px;
    /* background-color: var(--white-color); */
}


.header .logo a {
    font-size: 26px;
    color: var(--border);
    font-weight: 700;
    text-decoration: none;
}



.header .item-right {

    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    display: inline-block;
    margin-left: 49px;
    transition: color 0.3s ease;
}

.header .menu>ul>li {
    display: inline-block;
    line-height: 46px;
    margin-left: 30px;
}

.header .menu>ul>li>a {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-color);
    text-align: left;
    text-decoration-skip-ink: none;
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
    border-radius: 16px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 16px;
    color: #ea4636;
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 300px;
    object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
    color: var(--hover);
    /* font-weight: 700; */
}

.hide_icodp {
    display: none;
}

/* banner section */
.banner-section {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media(max-width: 991px) {

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: var(--black-color);
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--black-color);
    }

    .header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }



    .header .menu>ul>li {
        line-height: 1;
        margin-left: 0px !important;
        display: block;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 0px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 50px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

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

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

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

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        margin-top: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
        text-align: left;
        color: var(--text-color);
        font-size: 16px;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}





.quick-popup {
    display: none;
}

.search-pop-up {
    display: none;
}

.Wishlist-box {
    display: none;
}

.wrapper_tele {
    display: none;
}

.telephone {
    display: none;
}

.shipping-sect {
    display: none;
}

.foot-sect {
    /* display: none; */
}

.Filter-slide {
    display: none;
}

.Shopping-cart {
    display: none;
}

.top-head {
    display: none;
}

/* header {
    display: none;
} */




.scrolled {
    -webkit-box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3);
    -moz-box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3);
    box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3);
    background-color: var(--background-color);
}

.btn_enq {
    border-radius: 60px;
    font-size: 18px !important;
    font-weight: 600;
    color: var(--white-color) !important;
    line-height: 21.78px;
    text-align: center;
    background-color: var(--primary-color);
    padding: 12.1px 34.3px;
}

.btn_enq:hover {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;


}

/* header css end */

/* slider css started */

.slide {
    position: relative;
    transition: 1s;
}

.imagesection-ani {
    overflow: hidden;
    position: relative;
}

.circle {
    position: absolute;
    border-radius: 50%;
    /* background-color: rgba(255, 255, 255, 0.6); */
    animation: floatAnimation 3s infinite alternate ease-in-out;
}

/* Moving Div */
.moving-div {
    position: relative;
    /* width: 100%;
    height: 100%; */
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
    /* Ensure inner circle stays within this div */
    transition: transform 2s linear;
    /* Smooth transition for outer div */
}

/* Inner Circle inside moving-div */
.inner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: transparent; */
    border-radius: 50%;
    transition: transform 1s linear;
    /* Smooth transition for inner circle */
}

/* Small Circles */
/* .small-circle {
  width: 20px;
  height: 20px;
} */

/* .one {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    background-color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.two {
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
    background-color: #69DAA6;
    width: 28px;
    height: 28px;
}

.three {
    bottom: 10%;
    left: 10%;
    background-color: #5BACF2;
    animation-delay: 2s;
    width: 20px;
    height: 20px;
}

.four {
    bottom: 30%;
    background-color: #FFC100;
    left: 20%;

    animation-delay: 2s;
    width: 20px;
    height: 20px;
} */


/* Main Image Styling */
.banner-content img.main-image {
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: 10;
}

/* Floating Animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(-20px) translateX(20px);
    }
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner__slider {
    /* margin-top: 80px; */
    position: relative;
    /* background: linear-gradient(90deg, hsl(198.1deg 100% 87.65% / 58%) 0%, hsl(181.91deg 100% 69.22% / 57%) 100%); */
    /* background: linear-gradient(264.48deg, #5bacf2b2 -45.37%, #79f1a59a 88.97%); */

    padding-bottom: 30px;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;

    transition: transform 3.5s ease, box-shadow 0.3s ease;
}

.decorative-circle:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.circle-1 {
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
}

.circle-2 {
    width: 28px;
    height: 28px;
    background-color: #69DAA6;
}

.circle-3 {
    width: 20px;
    height: 20px;
    background-color: #5BACF2;
}

.circle-4 {
    width: 20px;
    height: 20px;
    background-color: #FFC100;
}

.banner__slider .cntnt-wrp {
    display: flex;
    justify-content: space-between;
    padding-top: 160px;
}

.banner__slider .cntnt-wrp .heading_banner {
    width: 49%;
}

.banner__slider .cntnt-wrp .imganist {
    width: 49%;
    display: flex;
    justify-content: end;
}

.banner__slider .cntnt-wrp .imganist img {
    /* height: 100%; */
    height: 535px;
    /* object-fit: cover; */
    object-fit: contain;
    min-height: 535px;
    position: relative;
}

.mb_dv {
    /* width: 75%; */
    width: unset;
    /* padding: 30px; */
}

.banner__slider .cntnt-wrp h1 {

    font-size: 62px;
    font-weight: 700;
    line-height: 64px;
    text-align: left;
    padding-top: 67px;
}

.banner__slider .cntnt-wrp h1 span {
    color: var(--primary-color);
}

.banner__slider .cntnt-wrp p {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    padding: 20px 0px;
    color: #252525;

}

.banner__slider .cntnt-wrp span.hd_sp {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #384356;
}

.banner__slider .cntnt-wrp .flx-btn-wrphd {
    display: flex;
    align-items: center;
    padding-top: 30px;
    gap: 20px;
}

.banner__slider .cntnt-wrp .flx-btn-wrphd a:first-child {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    border-radius: 60px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    padding: 16.1px 78.9px;
}

.banner__slider .cntnt-wrp .flx-btn-wrphd a:first-child:hover {
    background: linear-gradient(264.48deg, #5BACF2 -45.37%, #79F1A4 88.97%);
    transition: 0.35s ease-in-out;
}

.banner__slider .cntnt-wrp .flx-btn-wrphd a:last-child {
    display: flex;
    gap: 11.8px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    text-align: left;


}

.banner__slider .cntnt-wrp .flx-btn-wrphd a:last-child img {
    max-width: 22.4px;
}

img.banner_dot {
    position: absolute;
    top: 120px;
    max-width: 690px;
    z-index: -1;
    height: 568px;
    left: -120px;
    opacity: 0.1;
}

/* slider css end */

/* product card css started  */
.sec-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
}

.sec-icon::before {
    content: "";
    position: absolute;
    height: 1px;
    left: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #f5f5f5;
    width: 50px;
}

.sec-icon::after {
    content: "";
    position: absolute;
    height: 1px;
    right: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333;
    width: 50px;
}

.advertisers-service-sec h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: center;
    color: #10375C;
    padding-bottom: 9px;
}

.advertisers-service-sec .section-header p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    padding-bottom: 38px;
}

.advertisers-service-sec {

    padding: 75px 0px;
}

.advertisers-service-sec .flex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.newsCard {
    position: relative;
    /* width: 500px;
    height: 250px; */
    /* margin: 5rem auto; */
    background-color: var(--background-color);
    padding: 50px 35px 44px;
    border: 1px solid #EBEBEB;
    color: #fff;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 8px 33px 0px #0000001A;

}

.newsCard .card_wrper img.up_img {
    /* max-width: 280px; */
    max-width: 80px;

    object-fit: contain;
    margin: 0px auto;
    display: block;
    border-radius: 10px;
}

.newsCard .card_wrper span {

    display: block;
    padding: 27px 0px 17px;
    font-size: 24px;
    font-weight: 700;
    line-height: 24.89px;
    text-align: center;
    color: #10375C;

}

.newsCard .card_wrper p {
    color: #384356;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    /* -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
    /* display: -webkit-box; */
}

.newsCard .card_wrper a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    margin-top: 16px;

}

.newsCaption img {
    max-width: 80px;
    margin: 0px auto;
    display: block;
}

.newsCaption p.newsCaption-title {

    font-size: 24px;
    font-weight: 700;
    line-height: 31.2px;
    text-align: center;
    padding: 15px 0px 0px;

}

span.newsCaption-content {

    font-size: 15px;
    display: block;
    padding-top: 9px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

a.newsCaption-link {
    background-color: var(--white-background);
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    padding: 14.2px 58px;
    font-weight: 400;
    line-height: 21.78px;
    text-align: center;
    color: var(--comon-colort);
    display: block;
    max-width: fit-content;
    margin: 0px auto;
    margin-top: 20px;
}

a.newsCaption-link:hover {
    background: linear-gradient(180deg, #499BE9 0%, #6BD1CA 100%);
    box-shadow: 0px 8px 33px 0px #0000001A;
    color: var(--white-color);

}

.newsCaption {
    position: absolute;
    top: auto;
    bottom: 0;
    opacity: 1;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 35px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* -webkit-transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
    transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s, -webkit-transform 0.4s; */
    background: linear-gradient(180deg, #499BE9 0%, #6BD1CA 100%);
    box-shadow: 0px 8px 33px 0px #0000001A;

}

.newsCaption-title {
    margin-top: 0px;
}

.newsCaption-content {
    margin: 0;
}

.newsCaption-link {
    color: #fff;
    text-decoration: underline;
    opacity: .8;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
    transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}

.newsCaption-link:hover {
    opacity: 1;
}

.news-Slide-up:hover .newsCaption {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
    transition: opacity 0.1s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s, -webkit-transform 0.4s;
}

.advertisers-service-sec .grid_two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding-top: 87px;
}

.advertisers-service-sec .grid_two .cm_block {
    border-radius: 15px;
    background: linear-gradient(90deg, #FFF395 0%, #FFB662 100%);
    padding: 0px 35px;
    display: flex;
    overflow: hidden;

}

.advertisers-service-sec .grid_two .cm_block img {
    max-width: 192px;
    position: relative;
    bottom: 0px;
}

.advertisers-service-sec .grid_two .cm_block .inner-flx {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0px;

}

.advertisers-service-sec .grid_two .cm_block .inner-flx .wd_prom:last-child {
    display: flex;
    justify-content: flex-end;
}

.advertisers-service-sec .grid_two .cm_block .inner-flx .wd_prom {
    width: 50%;
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx .wd_prom:last-child {
    display: flex;
    align-items: end;
    justify-content: end;
}

.advertisers-service-sec .grid_two .cm_block .inner-flx .wd_prom:last-child {
    display: flex;
    align-items: end;
    justify-content: end;
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx .wd_prom {
    width: 50%;
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx {
    display: flex;
    gap: 35px;
    align-items: center;
    padding: 10px 0px;
    justify-content: space-between;
    width: 100%;
}

.advertisers-service-sec .grid_two .cm_block .inner-flx p {

    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #10375C;

}

.advertisers-service-sec .grid_two .cm_block .inner-flx span {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;

    display: block;
    padding-top: 9px;
    color: var(--comon-colort);
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx {
    display: flex;
    gap: 35px;
    align-items: center;
}


.advertisers-service-sec .grid_two .cm_block2 {
    border-radius: 15px;
    background: linear-gradient(90deg, #ECB3FF 0%, #CCBBFF 100%);

    padding: 0px 35px;

}

.advertisers-service-sec .grid_two .cm_block2 img {
    max-width: 190px;
    position: relative;
    bottom: -10px;
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx {
    display: flex;
    gap: 35px;
    align-items: center;
}

.owl-nav button {
    position: absolute;
    top: 44%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: 10px;
}

.owl-nav button.owl-next {
    right: 10px;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

/* .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
  }
  .owl-dots button.owl-dot.active {
    background-color: #000;
  } */
.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
    display: flex;
    padding: 10px;
    border-radius: 5px;
}

.owl-nav {
    display: block !important;
}

.owl-nav button:hover {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%) !important;
}

.owl-nav button.owl-next svg {
    height: 25px;
    width: 25px;
    fill: var(--text-color);
}

.owl-nav button.owl-prev svg {
    height: 25px;
    fill: var(--text-color);
    width: 25px;
}

.owl-carousel span {
    font-size: 70px;
    position: relative;
    top: -5px;
}

.owl-nav button:focus {
    outline: none;
}

.owl-item {

    display: flex;
}

.owl-carousel .item {
    width: 100%;
}

.promotion_banner h6 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: center;
    color: #10375C;
    padding-bottom: 9px;
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx p {

    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    /* padding-top: 19px; */
    text-align: left;
    color: #10375C;

}

.advertisers-service-sec .grid_two .cm_block2 {

    overflow: hidden;
}

.advertisers-service-sec .grid_two .cm_block {

    overflow: hidden;
}

.promotion_banner {
    padding: 75px 0px;
}

.promotion_banner p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    padding-bottom: 38px;
}

.advertisers-service-sec .grid_two .cm_block2 .inner-flx span {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;

    display: block;
    padding-top: 9px;
    color: var(--comon-colort);
}

/* product card css end  */
/* calculator block css started */
.calc_bg {

    background: linear-gradient(180deg, #F9F9F9 0%, #F5F5F5 91.47%);
    padding: 75px 0px;
    position: relative;

}

/* .calc_bg:after
{
    background-color: #F8F8F8;
    position: absolute;
    content: '';
    width: 100%;
    height: 125px;
    left: 0px;
    bottom: -54px;
    transform: skew(0deg, 3deg);
    z-index: -1;
} */
.calc_bg .calc-wrpr h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: center;
    color: #10375C;
    padding-bottom: 9px;

}

.calc_bg .calc-wrpr p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    padding-bottom: 38px;
}

.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;

}

.tabs::-webkit-scrollbar {
    width: 8px;
}

.tabs::-webkit-scrollbar-thumb {
    background-color: #545454;
    border-radius: 4px;

}

.tabs {
    scrollbar-width: thin;
    scrollbar-color: #10375C #ffffff;
}

.tabs::-webkit-scrollbar-track {
    background: #ffffff;
}

.tabs::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.tab {
    padding: 8px 16px;
    border: 1px solid #10375C;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: center;
    background-color: var(--white-color);
    color: #10375C;

}


.tab.active {
    background: #D2E4F4;
    color: #10375C;
    border-color: #10375C;
}

.calculator {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
}

.results .flx-bx-res {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.results .flx-bx-res .ps {
    display: flex;
    gap: 15px;
    align-items: center;
}

.results .flx-bx-res .ps p {

    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: var(--black-color);

}

.results .flx-bx-res .ps span {
    width: 25px;
    height: 15px;
    border-radius: 5px;
    display: block;
    background-color: var(--primary-color);

}

.results .flx-bx-res .ist span {
    width: 25px;
    height: 15px;
    border-radius: 5px;
    display: block;
    background-color: #79F1A4 !important;

}

@media (max-width: 768px) {
    .calculator {
        grid-template-columns: 1fr;
    }

}

.inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inputs .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inputs .input-group label {

    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    text-align: left;
    color: #384356;

}

.inputs .input-group .flx_bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}

.inputs .input-group .value-display span {
    color: #10375C;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    text-align: left;


}

.inputs .input-group .value-display {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    background-color: var(--white-background);
    border: 1px solid #ECECEC;
    border-radius: 5px;
    padding: 10px 12px;
    max-width: fit-content;
    font-size: 15px;
    font-weight: 700;
    line-height: 19.36px;
    display: flex;
    align-items: center;
    gap: 17px;

}

.inputs .input-group .value-display p {
    color: #10375C;
    font-size: 16px;
    font-weight: 300;
    line-height: 19.36px;
    text-align: left;
}

.inputs .input-group .flx_dt {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.inputs .input-group .flx_dt p {

    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #384356;

}

.inputs input[type="range"] {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    padding: 0px;
    border: none;
    min-height: auto;
}

.inputs input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    /* border: 2px solid white; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results {
    background: #EDEDED;
    padding: 24px;
    border-radius: 12px;
}

.emi-amount {
    margin-bottom: 24px;
}

.emi-amount h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.emi-amount .amount {
    font-size: 32px;
    font-weight: 600;
    color: #2563eb;
}

.breakdown {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.breakdown-item .label {
    color: rgb(16 55 92 / 70%);
    font-size: 16px;
}

.breakdown-item span:last-child {
    font-size: 18px;
    color: var(--comon-colort);
    font-weight: 500;
}

.breakdown-item .value {
    font-weight: 500;
}

#chart-container {
    aspect-ratio: 1;
    max-width: 170px;
    margin: 0px auto;
}

.tabs-wrapper {
    transition: box-shadow 0.3s ease;
}

.tabs-wrapper.scrolled {
    box-shadow: none;
}



/* calculator block css end */
/* login form css started */
.lg_pd {
    padding: 160px 0px 100px;
}

.login_form {
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
    display: block;
    /* margin-top: 153px;
    margin-bottom: 50px; */
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.login_form button {
    font-size: 16px;
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    color: var(--white-color);
    font-weight: 400;
    line-height: 21.78px;
    text-align: center;
    border: none;
    padding: 12.2px 43px;
    border-radius: 60px;
    cursor: pointer;
    margin: 0px auto;
    display: block;
}

.login_form button:hover {
    background: var(--white-background);
    color: var(--comon-colort);
}

.login_form button i {
    transition: width 0.5s, height 0.5s, transform 0.5s;
}

.login_form button:hover i {
    transform: rotate(360deg);
}

.login_form h1 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    /* padding-bottom: 10px; */
    position: relative;
    margin-bottom: 15px;
    color: var(--comon-colort)
}


.wraper_eye {
    position: relative;
}

.wraper_eye input {
    padding-right: 55px;
}

.wraper_eye .toggle-password {
    position: absolute;
    right: 8px;
    margin-top: 15px;
}

.login_form label {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21.82px;
    text-align: left;
    padding-bottom: 6px;
    display: block;
}

.login_form input {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    margin-bottom: 20px;
}

.flx_bx_reg_fg {
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
}

.flx_bx_reg_fg a {
    font-size: 14px;
    line-height: 20px;
    color: var(--heading-color);
    font-weight: 600;
}

/* login form css end */

/* accrdion css start here */
.common_accrdion {
    position: relative;
    background-color: #f9f9f9;
    padding-bottom: 74px;
}

.common_accrdion .wrapper {
    /* max-width: 800px; */
    max-width: 80%;
    margin: 0px auto;
    display: block;
}

.common_accrdion h4 {

    font-size: 36px;
    font-weight: 700;

    line-height: 43.57px;
    text-align: center;
    padding: 84px 00px 52px;
    color: var(--comon-colort);


}

.container_acc {
    transition: 0.5s ease-out;
    /* border-bottom: 1px solid rgb(209, 209, 209); */
    padding: 9px;
}

.wrapper .container_acc .title_acc {
    display: flex;
    /* align-items: center; */
    border-bottom: 3px solid #CDD6DA40;
    vertical-align: middle;
    justify-content: space-between;
}

.wrapper .container_acc:last-child .title_acc {
    border-bottom: 0px solid transparent;
}

.title_acc p {

    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: left;
    color: var(--comon-colort);

    padding-bottom: 20px;
    cursor: pointer;

}

.desc_acc {
    display: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: left;
    padding: 16px 25px;
    color: #384356;
    border-bottom: 3px solid #CDD6DA40;
}

#first-letter {
    font-size: 2.0em;
    font-weight: bold;
}

.op_clsd {
    cursor: pointer;
}

.clicked {
    cursor: pointer;
}

#open {
    /* rotate: 40deg; */
}

#closed {
    display: none;
}

/* accrdion css start here */

/* contact us page css stared */
.banner__slider .cnt_usPg h1 {
    padding-top: 117px !important;
}

.captcha {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha img {
    object-fit: contain !important;
    min-height: auto !important;
    height: auto !important;
}

.contact-us {
    background: #F8F8F8;
    border-radius: 15px;
    padding: 45px 55px;
    position: relative;
    overflow: hidden;
}

.cnt_flx_input {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* flex-wrap: wrap; */
    padding-bottom: 24px;
}


.cnt_flx_input label {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21.82px;
    text-align: left;
    padding-bottom: 6px;
    display: block;
    color: #333;

}

.cnt_flx_input input {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}

.text_area_msg label {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21.82px;
    text-align: left;
    padding-bottom: 6px;
    display: block;
}

.text_area_msg textarea {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    height: auto;
    min-height: auto;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

#captcha {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}

.cntct_us {
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    font-size: 18px;
    color: var(--white-color);
    font-weight: 400;
    line-height: 21.78px;
    text-align: center;
    border: none;
    padding: 16.2px 63px;
    border-radius: 60px;
    margin-top: 25px;
    cursor: pointer;
}

.cntct_us:hover {
    background: var(--primary-color);
}

.cnt_usPg .heading_banner {
    width: 47%;
}

.cnt_usPg .imganist {
    width: 53%;
}

.cnt_usPg ul li a {
    color: #384356;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
}

/* .cnt_usPg ul 
{
    padding-top: 25px;
} */

.cnt_usPg ul li .fa-phone {
    color: #384356;
}

.cnt_usPg ul li .fa-envelope {
    color: #384356;
}

.cnt_usPg ul li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    gap: 10px;
}

.contact_us_lg_crd:before {
    display: none;
}

.contact_us_lg_crd:after {
    height: 185px !important;
    bottom: -88px !important;
    transform: skew(0deg, -2.2deg);
    z-index: -1;
}

.contact_us_lg_crd h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: center;
    color: #10375C;
    padding: 80px 0px 9px;
}

.contact_us_lg_crd p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    padding-bottom: 38px;
}

.contact_us_lg_crd .lg_card .text_block p:first-child {
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 31.47px !important;
    padding-bottom: 15px !important;
    padding-top: 20px;
}

.contact_us_lg_crd .lg_card .text_block span {

    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    text-align: left;


}

.contact_us_lg_crd .lg_card .text_block a {
    padding: 16px 53.5px !important;
}

/* contact us page css end */
/* home loan page css started */

.grid-simp-step {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    display: grid;
}

.grid-simp-step .card-step {
    box-shadow: 0px 8px 33px 0px #0000001A;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 35px 15px;
    transition: all 0.3s ease-in-out;
}

.grid-simp-step .card-step:hover {
    transform: translateY(-10px);

}

.grid-simp-step .card-step p {

    font-size: 24px;
    font-weight: 700;
    line-height: 24.89px;
    text-align: center;
    padding: 23px 0px;
    color: var(--comon-colort);


}

.grid-simp-step .card-step span {

    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: #384356;
    display: block;
}

.grid-simp-step .card-step img {
    max-width: 60px;
    margin: 0px auto;
    display: block;
}

.hm_loan_block .lg_card {

    background: linear-gradient(90deg, #499BE9 0%, #6BD1CA 100%);
    box-shadow: 0px 8px 33px 0px #0000001A;

}

.hm_loan_block .lg_card .text_block p:first-child {
    color: var(--white-color) !important;
}

.hm_loan_block .lg_card .text_block li {

    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: var(--white-color);
    display: flex;
    gap: 17px;
    align-items: center;
    padding-bottom: 13px;
}

.hm_loan_block .lg_card .text_block li img {
    max-width: 30px;
}

.hm_loan_services {
    padding: 0px !important;
}

.hm_loan_services .grid_two {
    padding-top: 0px;
}

.lin_hgt p {
    line-height: 32px !important;
}

.hm_loan_block:after {
    display: none;
}

.bsLn::before {
    display: none;
}

a.apply_nw {
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    color: var(--white-color);

    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    max-width: fit-content;
    display: block;
    margin: 00px auto;
    margin-top: 60px;
    margin-bottom: 5px;
    padding: 16.2px 79px;
    border-radius: 60px;
}

a.apply_nw:hover {
    background: var(--primary-color);
}

/* home loan page css end */
/* business loan page css end */
.loan-intrest-block .flx-bx {
    display: flex;
    gap: 40px;
}

.loan-intrest-block {
    padding: 34px 0px 78px;
}

.loan-intrest-block .flx-bx .intrest_block {
    width: 70%;
}

.loan-intrest-block .flx-bx .intrest_block h5 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 20px;
}

.loan-intrest-block .flx-bx .intrest_block:first-child p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: left;
    color: #384356;
    /* padding-bottom: 20px; */
    padding-bottom: 15px;
}

.loan-intrest-block .flx-bx .related_sd_block {
    width: 29%;
}

.rates-table {

    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #828282;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.rates-table li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.rates-table li:last-child {
    border-bottom: none;
}



.rates-table li div {
    padding: 8px 15px;

}

.rates-table li div:first-child {
    border-right: 1px solid #828282;



}

.lstLi div:first-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--black-color);
}

.lstLi div:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: var(--black-color);
}

.loan-intrest-block .flx-bx .intrest_block h6 {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.89px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 5px;
}

.loan-intrest-block .flx-bx .intrest_block span {

    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: left;
    color: var(--comon-colort);
    display: block;
    /* padding-bottom: 20px; */
    padding-bottom: 5px;
}

.related_sd_block .related_block {
    background-color: #f8f8f8;
    padding: 20px 22px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.related_sd_block .related_block p {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 14px;
}

.related_sd_block .related_block ul li a {

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #384356;
}

.related_sd_block .related_block ul li a:hover {
    color: var(--primary-color);
}

.related_sd_block .related_block ul li {
    padding-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #D8DCE2;
}

.related_sd_block .related_block ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.related_sd_block .form_sd_block {
    background-color: #f8f8f8;
    padding: 20px 22px;
    border-radius: 16px;
    margin-bottom: 30px;
    position: relative;
}

.related_sd_block .form_sd_block p {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 14px;
}


.form_sd_block input {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding-left: 0px;
    border-bottom: 1px solid #D8DCE2;
    /* border: none; */
    border-radius: 0px;
    border-top: 0px;
    border-right: 0px;
    border-left: 00px;
    background-color: transparent;
    margin-bottom: 15px;
}

.form_sd_block .check_bx label {
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #384356;
}

.check_bx input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.check_bx label {
    position: relative;
    cursor: pointer;
}

.check_bx label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.check_bx input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check_bx span {

    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    display: block;
    color: #384356;
}

.check_bx a {
    text-decoration: underline;
    color: #384356;
}

.form_sd_block button {
    color: var(--white-color);
    border-radius: 60px;
    border: none;
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    padding: 16.2px 81px;
    margin-top: 25px;
    margin-bottom: 14px;
    cursor: pointer;
}

.form_sd_block button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.gt_fin {
    background: linear-gradient(90deg, #FFF395 0%, #FFB662 100%);
    padding: 20px 22px 0px;
    border-radius: 16px;

}

.gt_fin p {

    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 11px;
}

.gt_fin span {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #384356;
    display: block;
}

.gt_fin img {
    max-width: 260px;
    position: relative;
    bottom: -10px;
}

.rm_before::before {
    display: none;
}

.tilt_dt {
    padding-bottom: 0px;
}

.m_tp {
    margin-top: 80px;
}

.bsLd_lt:after {
    background: linear-gradient(98deg, #F5F5F5 0%, #F5F5F5 91.47%);
    position: absolute;
    content: '';
    width: 100%;
    height: 200px;
    left: 0px;
    bottom: -150px;
    transform: skew(0deg, 2.6deg);
    z-index: -1;
}

.mb_btm_ld {
    margin-bottom: 85px;
}

/* Header styling */
.rates-table li.header_rt {
    background-color: #E5E5E5;

}

.rates-table li.header_rt {

    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: var(--black-color);
}

.int_rt {
    text-align: right;
}

.rates-table li {
    border-bottom: 1px solid #828282;
}


/* business loan page css end */
/* help page css started */
.hlp_section {
    margin-top: 159px;
    background: transparent;

}

.hlp_section .search-block {
    background: #F8F8F8;
    padding: 46px 0px 61px;
    border-radius: 16px;

}

.hlp_section .search-block h1 {

    font-size: 46px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    color: var(--comon-colort);
}

.hlp_section .search-block h1 span {
    color: var(--primary-color);
}

.hlp_section .search-block p {

    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #252525;
    padding: 17px 0px 27px;

}

.hlp_section .search-block input {
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
}

.search-block .search-box {
    position: relative;
    max-width: 31%;
    margin: 0px auto;
    width: 100%;
}

.search-block .search-box img {
    position: absolute;
    max-width: 16px;
    right: 17px;
    top: 16px;
}

.grid_block_help {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 54px;
    padding: 76px 0px 0px;
}

.grid_block_help .help-block {
    box-shadow: 0px 8px 33px 0px #0000001A;
    border: 1px solid #EBEBEB;
    padding: 25px;
    border-radius: 16px;
    background-color: var(--white-background);

}

.grid_block_help .help-block img {
    min-height: 311px;
    height: 311px;
    object-fit: cover;
    border-radius: 20px;
}

.grid_block_help .help-block p {
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    text-align: left;
    color: var(--comon-colort);
    padding: 22px 0px 11px;
}

.grid_block_help .help-block p a {
    color: var(--comon-colort);
}

.grid_block_help .help-block span {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #252525;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid_block_hlp_s {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 54px 0px 75px;
}

.grid_block_hlp_s .sm-hlp-block {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 23px 27px;
    /* box-shadow: 0px 8px 33px 0px #0000001A; */

}

.grid_block_hlp_s .sm-hlp-block p {

    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 11px;
}

.grid_block_hlp_s .sm-hlp-block a {
    color: var(--comon-colort);
}

.grid_block_hlp_s .sm-hlp-block span {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #252525;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* help page css end */
/* help page article css started */
.search-block ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
}

.search-block li a {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #252525;
}

.search-block li a:hover {
    color: var(--primary-color);
}

.search-block li {

    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #252525;
}

.search-block li .fa-angle-right {
    padding-left: 8px;
}

.pd_tp_lt_blck {
    padding-top: 70px;
    padding-bottom: 60px;
}

h4.relt_arctle {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: left;
    color: var(--comon-colort);
    border-top: 1px solid #00000026;
    padding-top: 60px;
}

.grid_block_thrty {
    padding-top: 30px;
}

/* help page article css end */
/* promotions page css started  */
p.promt_ps {

    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: center;
    color: #384356;
    padding: 60px 0px 40px;
}

.crnt_promotions h2 {

    font-size: 36px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    color: var(--comon-colort);
    padding-bottom: 25px;

}

.color_yelow {
    background: linear-gradient(90deg, #FFF395 0%, #FFB662 100%);
    border-radius: 16px;
    padding: 25px 34px;
    position: relative;
    padding-bottom: 55px;
}

.color_pink {
    background: linear-gradient(90deg, #ECB3FF 0%, #CCBBFF 100%);
    border-radius: 16px;
    padding: 25px 34px;
    position: relative;
}

.color_green {
    background: linear-gradient(90deg, #C0ECFF 0%, #62FAFF 100%);
    border-radius: 16px;
    padding: 25px 34px;
    position: relative;
}

.color_liteyelow {
    background: linear-gradient(90deg, #FFE3A7 0%, #FFE7BB 100%);
    border-radius: 16px;
    padding: 25px 34px;
    position: relative;
}

.grid_crnt_promotions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid_crnt_promotions .card_promo p {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 12px;
}

.grid_crnt_promotions .card_promo span {
    color: #384356;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    padding-bottom: 12px;
}

.grid_crnt_promotions .card_promo ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #384356;
}

.grid_crnt_promotions .card_promo ul {
    padding: 12px 0px 70px;
}

.grid_crnt_promotions .card_promo img {
    position: absolute;
    right: 19px;
    max-width: 200px;
    bottom: 0px;
}

.grid_crnt_promotions .card_promo a {
    background-color: var(--black-color);
    color: var(--white-color);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    text-align: center;
    padding: 16.5px 63px;
    border-radius: 60px;
    display: block;
    max-width: fit-content;
    position: absolute;
    bottom: 25px;
    max-width: 250px;
    width: 100%;
}

.grid_crnt_promotions .card_promo span strong {
    font-style: italic;
}

.grid_crnt_promotions .card_promo a:hover {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    color: var(--white-color);
}

.permant-discount h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    color: var(--comon-colort);
    padding: 60px 0px 40px;
}

.permant-discount .grid-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.yelo_orange {
    background: linear-gradient(90deg, #FFF696 0%, #FFC5C5 100%);
    border-radius: 16px;
    padding: 25px 34px;
    position: relative;
}

.shady_gren {
    background: linear-gradient(90deg, #CDFFB3 0%, #C0FFDD 100%);
    border-radius: 16px;
    padding: 25px 34px;
    position: relative;
}

.permant-discount .grid-block .card-dis img {

    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 230px;
}

.permant-discount .grid-block .card-dis p {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    color: var(--comon-colort);

}

.permant-discount .grid-block .card-dis span {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #384356;
    padding-bottom: 75px;
}

.yelo_orange span {
    display: block;
    max-width: 290px;
    width: 100%;
}

.permant-discount .grid-block .card-dis a {
    background-color: var(--black-color);
    color: var(--white-color);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    text-align: center;
    padding: 16.5px 63px;
    border-radius: 60px;
    display: block;
    max-width: fit-content;
    position: absolute;
    bottom: 25px;
    max-width: 250px;
    width: 100%;
}

.permant-discount .grid-block .card-dis a:hover {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    color: var(--white-color);
}

.amazing_promotions .banner_amazing img {
    /* height: 330px;
    min-height: 330px; */
    border-radius: 16px;
    object-fit: cover;
    object-position: top;
    position: relative;
    overflow: hidden;
    display: block;
}

.amazing_promotions .banner_amazing {
    position: relative;
    margin-bottom: 70px;
    border-radius: 16px;
    background-repeat: no-repeat !important;
    background-position: center;
    background-size: cover !important;
    background: url(../../public/images/amz_promotions.png);
}

.amazing_promotions .banner_amazing:before {
    background: linear-gradient(90deg, #000000cc 0%, rgba(13, 13, 13, 0.5) 100%);
    position: absolute;
    left: 0px;
    border-radius: 16px;
    top: 0px;
    width: 100%;
    content: '';
    height: 100%;

}

.amazing_promotions .banner_amazing .cnt_block {
    /* position: absolute; */
    z-index: 2;
    position: relative;
    top: 0px;
    padding: 48px 55px;
}

.amazing_promotions .banner_amazing .cnt_block p {
    color: var(--white-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: left;
    padding-bottom: 22px;
}

.amazing_promotions .banner_amazing .cnt_block span {
    font-size: 23px;
    font-weight: 400;
    line-height: 37px;
    text-align: left;
    color: var(--white-color);

}

.amazing_promotions .banner_amazing .flx-bx {
    display: flex;
    gap: 20px;
    padding-top: 26px;
}

.amazing_promotions .banner_amazing .flx-bx a {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    text-align: center;
    color: var(--white-color);
    padding: 16.2px 32px;
}

.amazing_promotions .banner_amazing .flx-bx a:hover {
    background: var(--primary-color);

}

/* promotions page css end  */
/* privacy policy page css started  */
.privacy_ct_dt {
    padding: 159px 00px 50px;
}

.privacy_ct_dt h6 {
    color: var(--comon-colort);
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    text-align: center;
    padding-top: 10px;
}

.privacy_ct_dt h4 {
    color: var(--comon-colort);
    font-size: 26px;
    font-weight: 700;
    line-height: 44px;
    text-align: left;
}

.privacy_ct_dt p {
    font-size: 22px;
    line-height: 28px;
    color: var(--comon-colort);
    padding: 5px 0px;
}

.privacy_ct_dt ul {
    padding: unset;
    margin: unset;
    padding-left: 20px;
    list-style-type: disc;
}

.privacy_ct_dt ul li {
    font-size: 18px;
    color: #252525;
    line-height: 30px;
    padding-bottom: 10px;
}

/* privacy policy page css end  */
/* faq page css started */
.pdt_faq_pg {
    padding: 160px 0px 60px;
}

.remove_bg_color_accrrd {
    background-color: transparent;
    padding-top: 48px;
    padding-bottom: 35px;
}

.remove_bg_color_accrrd .wrapper {
    max-width: 100%;
}

.faq_block_pg {
    border-top: 0px !important;
    padding-top: 0px !important;
}

/* faq page css end */
/* thank you page css start */
.thankyou-page {
    height: 80vh;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;

}

.thankyou-page .thankpg-block {
    box-shadow: 0px 8px 33px 0px #0000001A;
    max-width: 650px;
    margin: 0px auto;
    padding: 25px;
    border-radius: 16px;
}

.thankyou-page .thankpg-block h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: center;
    color: #10375C;
    padding-bottom: 9px;
}

.thankyou-page .thankpg-block p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;

}

.thankyou-page .thankpg-block a {
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    border-radius: 60px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    max-width: fit-content;
    display: block;
    padding: 16.1px 38.9px;
    margin: 00px auto;
    margin-top: 20px;
}

.thankyou-page .thankpg-block a:hover {
    background: linear-gradient(264.48deg, #5BACF2 -45.37%, #79F1A4 88.97%);
    transition: 0.35s ease-in-out;
}

.contact-success-message {
    position: absolute;
    z-index: 2;
    background: linear-gradient(180deg, #499BE9 0%, #6BD1CA 100%);
    box-shadow: 0px 8px 33px 0px #0000001A;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    /* height: 100vh; */
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* background: #F8F8F8; */
    max-width: fit-content;
    padding: 20px;
}

.contact-success-message svg {
    background: linear-gradient(180deg, #499BE9 0%, #6BD1CA 100%);
    cursor: pointer;
    border-radius: 50%;
    height: 25px;
    width: 25px;
}

.crs_hd {
    display: block;
    position: absolute;
    top: -9px;
    right: -9px;
}

/* thank you page css end */
/* footer css started */

.foot-sect {
    background: var(--footer-color);
    position: relative;
    padding: 81px 0px 0px;
    z-index: -1;
}

.flx-bx-ft {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 57px;
    padding-bottom: 60px;
}

.flx-bx-ft h5 {
    color: var(--white-color);
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
}

.flx-bx-ft h5:after {
    content: '';
    width: 50px;
    left: 0px;
    position: absolute;
    border-bottom: 1px solid var(--white-color);
    bottom: -10px;
}

.flx-bx-ft p {
    color: var(--white-color);
    padding-top: 20px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;

}

.flx-bx-ft ul li:first-child {
    padding-top: 20px;
}

.flx-bx-ft ul li {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    padding: 5px 0px;
}

.flx-bx-ft ul li a {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    padding-top: 0px;
}

.foot-bot {
    background-color: #012b51;
    padding: 10px 0px;
}

.foot-bot .flx_bx {
    display: flex;
    justify-content: space-between;
}

.foot-bot .flx_bx a {
    color: var(--white-color);
    font-size: 14px;
}

.foot-bot .flx_bx span {
    color: var(--white-color);
    font-size: 14px;
}

ul.social_media_ft {
    align-items: center;
    display: flex;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    gap: 20px;
}

ul.social_media_ft li {
    padding-top: 0px !important;
    margin-top: 48px;

}

ul.social_media_ft li:last-child {
    position: relative;
    left: -4px;
}

/* footer css end */


/* common forms css started */
.dropdown-cstm {
    position: relative;
    width: 100%;
}


.dropdown-cstm .selected {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 10px;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13.1px 15px;
}

.dropdown-cstm .dropdown-list {
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
    display: none;
    border-radius: 5px;
}


.dropdown-cstm .dropdown-list li {
    padding: 10px;
    cursor: pointer;
}


.dropdown-cstm .dropdown-list li:hover {
    background-color: #ddd;
}


.dropdown-cstm.open .dropdown-list {
    display: block;
}


.dropdown-cstm .arrow {
    transition: transform 0.3s ease;
}

.dropdown-cstm.open .arrow {
    transform: rotate(180deg);
}

.flex-common-form-cls {
    display: flex;
    gap: 10px;
}

.flex-common-form-cls .feild-wrapper {
    width: 100%;
}

.flex-common-form-cls .feild-wrapper input {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    min-height: auto;
    height: auto;
    padding: 13.1px 15px;
}

.flex-common-form-cls .feild-wrapper textarea {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    min-height: auto;
    height: auto;
    padding: 13.1px 15px;
}

.flex-common-form-cls .feild-wrapper select {
    background: #FFFFFF;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    min-height: auto;
    height: auto;
    padding: 13.1px 15px;
}



.flex-common-form-cls .feild-wrapper label {
    padding: 15px 0px 7px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21.82px;
    text-align: left;
    display: block;
    color: #333;

}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.uplod_btn {
    background-color: var(--input-background);
    width: 100%;
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    text-align: left;
    color: #7d7d7d;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    height: auto;
    border-radius: 8px;
    padding: 13.1px 15px;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.common-form-wrapper {
    background-color: #f8f8f8;
    padding: 0px 15px 10px;
    border-radius: 16px;
    margin: 62px 0px 70px;
}

.dwn_arrow_feild {
    position: relative;
}

.dwn_arrow_feild .fa-chevron-down {
    position: absolute;
    right: 11px;
    top: 17px;
    color: #7d7d7d;
}

.cm-fr-bt {
    /* font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    max-width: fit-content;
    margin: 0px auto;
    color: var(--white-color);
    margin: 0px auto;
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 10px; */

    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    font-size: 18px;
    color: var(--white-color);
    font-weight: 400;
    line-height: 21.78px;
    text-align: center;
    border: none;
    padding: 16.2px 63px;
    border-radius: 60px;
    margin-top: 25px;
    cursor: pointer;
    margin: 0px auto;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}

.cm-fr-bt i {
    transition: width 0.5s, height 0.5s, transform 0.5s;
}

.cm-fr-bt:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.common-name-brder p {

    color: var(--heading-color);
    border-bottom: 1px solid hsl(218deg 21.13% 27.84% / 16%);
    padding: 10px 00px 5px;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: left;
    color: var(--comon-colort);
}

/* common forms css end */

/* breadcrumb css started */
.breadcrumb {
    background-image: url(../../resources/images/home-loan-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
}

.breadcrumb:after {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #499ce9dc 0%, #6bd1cae1 100%);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

p.bread_crumb {
    padding: 120px 0px;
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    position: relative;
    z-index: 2;

}

/* breadcrumb css end */

/* long card css started */
.long-card-block {
    position: relative;
    /* top: -35px; */
    /* z-index: 9999; */
}

.long-card-block:before {
    background: linear-gradient(98deg, #F5F5F5 0%, #F5F5F5 91.47%);
    position: absolute;
    content: '';
    width: 100%;
    height: 125px;
    left: 0px;
    top: -54px;
    transform: skew(0deg, 2.6deg);
    z-index: -1;
}

.long-card-block:after {
    background-color: #f9f9f9;
    position: absolute;
    content: '';
    width: 100%;
    height: 168px;
    left: 0px;
    bottom: -68px;
    transform: skew(0deg, -2.2deg);
    z-index: -1;
}

.long-card-block .section-heading h3 {
    font-size: 32px;
    line-height: 40px;
    color: var(--heading-color);
    font-weight: 600;
    position: relative;
    max-width: fit-content;
    margin: 0px auto;
    display: block;
    margin-bottom: 30px;
    margin-top: 50px;
}

.long-card-block .section-heading h3:after {

    position: absolute;
    content: '';
    border-bottom: 0.3px solid var(--border-color);
    width: 70px;
    height: 1px;
    left: 0px;
    right: 0px;
    bottom: -7px;
    margin: 0px auto;

}

.long-card-block .lg_card {
    box-shadow: 0px 8px 33px 0px #0000001A;
    border: 1px solid #EBEBEB;
    background-color: var(--white-background);
    display: flex;
    justify-content: space-between;
    align-items: start;
    /* box-shadow: -1px 15px 30px -15px rgba(0, 0, 0, 0.753); */
    /* box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, 0.25), -5px -5px 30px 7px rgba(0, 0, 0, 0.22); */
    border-radius: 16px;
    gap: 20px;
    padding: 48px 40px;
}

.long-card-block .lg_card {
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.long-card-block .lg_card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 33px 0px #0000001A;

    background: linear-gradient(90deg, #499BE9 0%, #6BD1CA 100%);

}

.long-card-block .lg_card:hover .text_block a {
    background: var(--white-background);
    color: var(--comon-colort);

}

.long-card-block .lg_card:hover .text_block p:first-child {
    color: var(--white-color);
}

.long-card-block .lg_card:hover .text_block span {
    color: var(--white-color);
}

.long-card-block .lg_card .text_block {
    width: 50%;
}

.long-card-block .lg_card .image_block {
    width: 50%;
}

.long-card-block .lg_card .text_block p:first-child {

    font-size: 36px;
    font-weight: 700;
    line-height: 43.57px;
    text-align: left;
    color: var(--comon-colort);
    padding-bottom: 18px;
}

.long-card-block .lg_card .text_block span {

    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #252525;
    display: block;
    padding-bottom: 29px;
}

.long-card-block .lg_card .text_block p:nth-child(3) {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #4b4b4b;
    margin-bottom: 2.5rem;
}

.long-card-block .lg_card .text_block p:nth-child(2) {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #4b4b4b;
    margin-bottom: 2.5rem;
}

.long-card-block .lg_card .text_block a {

    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    text-align: center;
    color: var(--white-color);
    box-shadow: 0px 5px 22.58px 0px #32AE8940;
    background: linear-gradient(264.48deg, #79F1A4 -45.37%, #5BACF2 88.97%);
    border-radius: 60px;
    max-width: fit-content;
    padding: 16px 27px;
}

.long-card-block .lg_card .text_block a i {
    transition: 0.70s;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
}

.long-card-block .lg_card .text_block a:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.long-card-block .lg_card .image_block {
    display: flex;
    justify-content: end;
}

.long-card-block .lg_card .image_block img {
    max-width: 477px;
    border-radius: 20px;
    min-height: 311px;
    height: 311px;
    object-fit: cover;
}

/* long card css end */
/* bank logo css started */
.bank-logo .grid-block-logo {
      padding: 0px 0px 80px 0px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
    vertical-align: middle;
}
.bank-logo h6{
    padding-top:80px;
        font-weight: 700;
    line-height: 43.57px;
    text-align: center;
font-size: 36px;
padding-bottom:20px;
    color: var(--comon-colort);
}

.bank-logo .grid-block-logo img {
    object-fit: contain;
    box-shadow: 0px 8px 33px 0px #0000001A;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
}

/* bank logo css end */
/* common card css started */
.common_loan_card {
    background-color: var(--white-background);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    /* max-width: 600px;
    width: 90%; */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.common_loan_card:hover {
    transform: translateY(-5px);
}

.common_loan_card .card-content {
    padding: 2rem;
    flex: 1;
}

.common_loan_card .card-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease;
}

.common_loan_card .card-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease 0.1s;
    animation-fill-mode: both;
}

.common_loan_card .loan-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease 0.2s;
    animation-fill-mode: both;
}

.common_loan_card .loan-amount,
.loan-rate {
    text-align: center;
    background-color: #f1f1f1;
    padding: 5px 8px;
    border-radius: 5px;
}

.common_loan_card .amount,
.rate {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black-color);
}

.common_loan_card .label {
    font-size: 0.9rem;
    color: #999;
}

.common_loan_card .apply-button {
    background-color: var(--heading-color);
    border: none;
    /* border-radius: 25px; */
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: fit-content; */
    cursor: pointer;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    animation: fadeInUp 0.5s ease 0.3s;
    animation-fill-mode: both;
    margin: 0px auto;
    gap: 10px;
}

.common_loan_card .apply-button i {
    transition: 0.70s;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
}

.common_loan_card .apply-button:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.common_loan_card .apply-button:hover {
    /* background-color: #45a049; */
    transform: scale(1.05);
}

.common_loan_card .card-image {
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.5s ease;
}

.common_loan_card .card-image img {
    max-width: 120px;
    height: auto;
}

.common-data-block-category .flx-block-common {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* common card css end */

/* common page heading product listing started */
.common-heading-catg {
    padding: 70px 0px;
}

.common-heading-catg h1 {
    font-size: 32px;
    line-height: 40px;
    color: var(--heading-color);
    font-weight: 600;
    position: relative;
    max-width: fit-content;
    margin: 0px auto;
    display: block;
    margin-bottom: 30px;
}

.common-heading-catg h1:after {
    position: absolute;
    content: '';
    border-bottom: 0.3px solid var(--border-color);
    width: 70px;
    height: 1px;
    left: 0px;
    right: 0px;
    bottom: -7px;
    margin: 0px auto;
}

.common-heading-catg p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
}

/* common page heading product listing end */
/* home loan banner started */
.home_banner {
    background-image: url(https://acko-cms.ackoassets.com/acko_drive_banner_desktop_6ee7286472.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 200px 0px 400px;
}

.home_banner .home_loan_banner {
    text-align: center;
    color: var(--white-color);
}

.home_banner .home_loan_banner p {
    font-size: 46px;
    line-height: 55px;
    font-weight: 600;
    padding-bottom: 10px;
}

.home_banner .home_loan_banner span {
    font-size: 26px;
    line-height: 35px;
    display: block;
    font-weight: 400;
}

.home_banner .home_loan_banner a {
    color: var(--white-color);
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: fit-content;
    margin: 0px auto;
    margin-top: 30px;
}

.home_banner .home_loan_banner a i {
    transition: 0.70s;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
}

.home_banner .home_loan_banner a:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* home loan banner end */
/* thank you page css started */

.thank_pge {
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #f1f1f1;
    padding: 50px 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.thank_pge h1 {
    line-height: 50px;
    padding-bottom: 10px;
}

.thank_pge p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
}

.thank_pge a {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
    margin: 0px auto;
    text-align: center;
    padding: 12px 15px;
    transition: transform 0.5s;
}

.thank_pge a i {
    transition: transform 0.5s;
}

.thank_pge a:hover i {
    transform: rotate(360deg);
}

.checkmark {
    width: 100px;
    margin: 0 auto;

}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    animation: dash 2s ease-in-out;
    -webkit-animation: dash 5s ease-in-out;
}

.spin {
    animation: spin 2s;
    -webkit-animation: spin 5s;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
}



@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

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

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

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

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

@-webkit-keyframes text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }


    @keyframes text {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /* thank you page css end */


    @media (max-width: 768px) {
        .menu {
            display: none;
            flex-direction: column;
            background-color: #333;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 10;
        }

        .menu.active {
            display: flex;
        }

        .hamburger {
            display: flex;
        }
    }