/*==finance_sec_2 start==*/
.financeCategorySlider {
    .slick-slide{
        margin: 0 10px;
    }
    .financeCategoryItem {
        .finCatBox {
            padding: 20px;
            background-color: #000;
            text-align: center;
            border-radius: 25px;
            margin-bottom: 20px;
            h4{
                color: #fff;
                font-size: 14px;
            }
            .finCatIcon {
                margin-bottom: 20px;
                min-height: 140px;
                text-align: center;
                display: flex;
                justify-content: center;
                img {
                    filter: brightness(0) invert(1);
                }
            }
            .finCatTitle {
                color: #fff;
                font-size: 18px;
            }
        }
    }
    .slick-arrow {
        &.slick-next {
            right: -40px;
        }
    }
}

/*===brandList_sec_2 start===*/
.finance_sec_4{
    .loanCalMain{
        border-radius: 30px;
        background-color: #000;
        padding: 30px;
        .card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: transparent;
            background-clip: border-box;
            border: 1px solid rgba(0, 0, 0, .125);
            border-radius: .25rem;
            .slider-container {
                margin-bottom: 20px;
                label {
                    display: block;
                    margin-bottom: 10px;
                    font-size: 16px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 10px;
                }
                .loanAmtHead {
                    font-size: 18px;
                    font-weight: 600;
                    color: #fff;
                }
                .slider-value {
                    font-weight: 600;
                    border: 1px solid #c4c4c4;
                    border-radius: 10px;
                    padding: 5px;
                    font-size: 14px;
                    width: 135px;
                    height: 40px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #000;
                    background-color: #fee49f;
                }
                input[type="range"] {
                    -webkit-appearance: none;
                    width: 100%;
                    height: 6px;
                    border-radius: 5px;
                    background: linear-gradient(90deg, #ffffff, #ffffff);
                    outline: none;
                    transition: background 0.3s;
                    cursor: pointer;
                }
            }
        }        
        .loanCalRight {
            border: none;
            padding: 25px 30px;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            padding-left: 40px;
            padding-top: 0px;
            align-items: center;
            background-color: #fff;
            border-radius: 30px;
            padding: 30px;
            height: 100%;
            .card {
                position: relative;
                display: flex;
                flex-direction: column;
                min-width: 0;
                word-wrap: break-word;
                background-color: transparent;
                background-clip: border-box;
                border: none;
                border-radius: .25rem;
                width: 100%;
                h4{
                    font-size: 24px;
                    font-weight: 600;
                    text-align: center;
                    margin-bottom:20px;
                    padding-bottom: 10px;
                    border-bottom: 2px solid #000;
                }
            }
            .loanCalRtTxt{
                font-size: 20px;
                font-weight: 500;
                margin-bottom: 10px;
                padding-bottom: 10px;
                text-align: center;
            }
        }
    }
}

/*===brandFormWrap atart===*/
.brandFormWrap{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0px 0px 10px 0px #ccc;
    padding: 50px;
    border-radius: 30px;
    input[type=text], input[type=tel], input[type=mail], select, textarea, input[type=email] {
        width: 100%;
        height: 45px;
        font-size: 18px;
        color: #000;
        line-height: 45px;
        padding: 5px 20px;
        border-radius: 8px;
        border: 1px solid #cccccc61;
        background-color: #adadad08;
    }
    textarea{
        height: 100px;
    }
    .brand-form{
        .secH{
            font-size: 24px;
        }
    }
    .selBox{
        p{
            br{
                display: none;
            }
            .inputH{
                display: block;
            }
        }
    }
    .btnWrap{
        p{
            margin-bottom: 0px;
        }
    }
}

.faqSec{
    background-color: #fff;
}
.wpcf7-spinner{
    position: absolute !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 100%;
    padding: 0px;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 100%;
    user-select: none;
    -webkit-user-select: none;
    background-color: transparent !important;
    border: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding: 0px !important;
}
.page-template-finance-new{
    .finance_sec_4{
        .secH{
            margin-bottom: 10px;
        }
        .intro__text{
            margin-bottom: 20px;
        }
    }
}
.finance_sec_5{
    background-color: #f7f7f7;
}
.accordion-cell {
    margin-bottom: 20px;
    box-shadow: 0 5px 10px 0px #aeaeae42;
    border-radius: 20px;
    .titleAcc {
        padding: 20px;
        cursor: pointer;
        padding-right: 30px;
        background-color: #d7d7d7cf;
        border-radius: 15px;
        position: relative;
        h3{
            font-size: 20px;
        }
        &::after {
            position: absolute;
            right: 20px;
            content: "\f107";
            font-size: 20px;
            color: #000;
            font-family: "FontAwesome";
            top: 50%;
            transform: translateY(-50%);
            transition: 0.5s;
        }
    }
    .accordion-cell-content{
        display: none;
        h4{
            display: none;
        }
    }
    &.active {
        background-color: #2b2b2b;
        border-radius: 20px;
        .titleAcc {
            background-color: #000000;
            border-bottom: 1px solid #fdbb057d;
            h3{
                color: var(--orange);
            }
            &::after {
                transform: rotate(180deg) translateY(-50%);
                color: var(--orange);
                top: 20%;
            }
        }
        .accordion-cell-content{
            p{
                color: #fff;
            }
        }
    }
    .accordion-cell-content {
        padding: 20px;
        display: none;
    }
    &:first-child {
        .accordion-cell-content {
            display: block;
            p{
                color: #fff;
            }
        }
    }
    &:last-child {
        margin-bottom: 0px;
    }
}
.eligibilityWrap{
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    .eligibilityItem{
        width: calc(100% / 3);
        flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        min-height: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 33.33%;
        border-top: 1px solid #cdcdcd;
        border-right: 1px solid #cdcdcd;
        padding: 30px;
        transition: 0.5s;
        .text-center{
            padding: 20px 0;
        }
        &:nth-child(1), &:nth-child(2), &:nth-child(3){
            border-top: none;
        }
        &:nth-child(3n){
            border-right: none;
        }
        figure {
            width: 75px;
            padding: 10px;
            margin: 0 auto;
            height: auto;
            background-color: #f7f7f7;
            border-radius: 5px;
            margin-bottom: 10px;
            img{
                width: 100%;
            }
        }
        .eligibilityTitle {
            font-weight: 700;
            font-size: 15px;
            text-align: center;
            padding-top: 10px;
            transition: all 0.3s;
            width: 100%;
            display: block;
        }
        p{
            font-size: 14px;
        }
        &:hover{
            background-color: #000;
            .eligibilityTitle {
                color: #fff;
            }
            p{
                color: #fff;
            }
            figure {
                background-color: var(--orange);
                margin-bottom: 10px;
                img{
                    filter: brightness(0.5);
                }
            }
        }
    }
}
.finance_sec_7{
    background-color: #000;
    .secH{
        color: #fff;
    }
    .applyNewWrap .rsItem {
        margin: 0 15px;
        position: relative;
    }
    .rentSolutions {
        padding: 30px 30px 30px;
        background-color: #000;
        border-radius: 20px;
        margin-top: 16px;
        transition: 0.2s;
        position: relative;
        overflow: hidden;
        min-height: 350px;
        border: 1px solid #fff;
    }
    .rentSolutionsNum span {
        font-size: 105px;
        font-weight: bolder;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-color: #00000052;
        -webkit-text-stroke-width: 0.012em;
        position: relative;
        display: block;
        height: auto;
        line-height: 105px;
        position: relative;
        -webkit-text-stroke-color: #FDBB05;
    }
    .rentSolutionsNum span::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgb(245, 245, 245);
        background: linear-gradient(180deg, rgba(255, 115, 0, 0.0032387955182072714) 0%, rgba(0, 0, 0, 1) 80%);
        z-index: 1;
    }
    .rentSolutionsNum {
        margin-top: 0;
        
    }
    .rentSolutionsD2{
        .rentSolutionTitle{
            font-weight: 600;
            font-size: 18px;
            line-height: 1.2;
            padding-bottom: 20px;
            transition: all 0.3s;
            color: var(--orange);
            padding-bottom: 10px;
            display: block;
        }   
        p{
            color: #fff;
        }
    }
}
.productQuery {
    position: fixed;
    bottom: -100%;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    display: flex;
    background-color: #00000091;
    z-index: 99;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--orange);
    transition: 0.5s all;
    border-radius: 13px 13px 0 0;
    
    .btnWrap, .btnWrap_2 {
        height: 50px;
    }
}
.productQuery .btnArrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    width: 40px;
    height: 25px;
    background-color: #000;
    border: 1px solid var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px 5px 0 0;
    border-bottom: none;
    cursor: pointer;
    z-index: 1;
}
.productQuery.query-filter-is-sticky {
    bottom: 0;
}
.page-template-finance-new .productQuery {
    input[type=text]{
        height: 50px;
        background-color: #fff;
    }
    .btnWrap{
        margin-top: 0px;
    }
}
.page-template-finance-new .productQuery.financeQuery .floatingForm {
    display: flex;
    width: 100%;
    align-items: center;
}
.page-template-finance-new .productQuery.financeQuery .financeLogo {
    width: 160px;
    padding-right: 20px;
}
.page-template-finance-new .productQuery.financeQuery .financeLogo .bnd-overviewHd {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.page-template-finance-new .productQuery.financeQuery .financeLogo .bnd-overviewHd img {
    width: 100%;
    height: auto;
}
.page-template-finance-new .productQuery.financeQuery .floatingFormWrap {
    padding-left: 20px;
    border-left: 1px solid #fefefe;
    width: calc(100% - 160px);
    padding-left: 20px;
}
.productQuery.query-filter-is-sticky.miniSticky {
    bottom: -110px;
}
.floatApplyBtn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    right: -50px;
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background-color: #000;
    border: 1px solid var(--orange);
    border-radius: 5px;
    display: none;
}
.popFloatingForm {
    display: none;
}
.productQuery.query-filter-is-sticky.miniSticky .btnArrow i {
    transform: rotate(180deg);
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}
.bnd-overviewHd{
    img{
        width: 100%;
    }
}


@media (max-width: 1600px) {
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 991px) {
    .brandFormWrap {
        max-width: 100%;
        padding: 15px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .financeCategorySlider {
        .slick-arrow {
            &.slick-prev{
                left: -10px;
            }
            &.slick-next{
                right: -10px;
            }
        }
    }
    .floatApplyBtn {
        display: block;
    }
    .popFloatingForm {
        max-width: 80%;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 10px;
        padding-top: 40px !important;
        overflow: hidden !important;
    }
    .frmWrap .inputTxt {
        height: 40px;
        line-height: normal;
    }
    .popFloatingForm {
        .fancybox-button {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 2px;
            position: absolute;
            top: 5px;
            right: 5px;
            &::before {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                content: "\f00d";
                font-family: "FontAwesome";
                font-size: 16px;
                background-color: #000;
                border-radius: 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                display: none;
            }
            svg {
                display: none;
            }
            .btnWrap {
                .btnOne {
                    padding: 12px 30px;
                }
            }
        }
        .btnWrap, .btnWrap_2 {
            height: 40px;
            margin-top: 0px !important;
        }
    }
    .desk_991{
        display: none !important;
    }
    .fancybox-close-small:after{
        top: 0 !important;
        right: 0 !important;
    }
    .page-template-finance-new {
        .finance_sec_4 {
            
        }
    }
}

@media (max-width:767px) {
    .frmWrap .inputTxt{
        margin-bottom: 15px;
    }
    .btnWrap {
        .btnOne {
            padding: 10px 20px;
        }
    }
    .accordion-cell {
        .titleAcc {
            h3 {
                font-size:17px;
            }
        }
    }
    .phFrmWrap {
        .select2-container {
            width: 80px !important;
            position: absolute !important;
            left: 4px;
            top: 37%;
            background-color: #fff0;
            z-index: 1;
            height: 40px;
            transform: translateY(-50%);
            background: #dfdfdf;
            border-radius: 7px;
            display: flex;
            align-items: center;
            padding-left: 5px;
        }
    }
    .bnd_overview_cont{
        p{
            text-align: justify;
        }
    }
    .eligibilityWrap {
        .eligibilityItem {
            width: calc(100% / 2);
            flex: 0 0 calc(100% / 2);
            -ms-flex: 0 0 calc(100% / 2);
        }
    }
}