.mobView {
    display: none;
}

.home {
    .containerMax {
        max-width: 100%;
    }

    .headingWrap {
        &.headingWrapC {
            .smallHeading {
                margin-right: 0;
                padding: 0;
                font-size: 24px;
                color: #046262;
                margin-bottom: 25px;

                &::after {
                    width: 40px;
                    height: 3px;
                    position: absolute;
                    top: auto;
                    bottom: -8px;
                    right: auto;
                    left: 50%;
                    transform: translateX(-50%);
                }

                &::before {
                    content: '';
                    width: 100px;
                    height: 3px;
                    position: absolute;
                    bottom: -15px;
                    background-color: #028180;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }

            .mainH {
                color: #028180;
                text-align: center;
                font-size: 50px;
                padding-left: 0;
                line-height: 1.3;
                margin-bottom: 10px;

                &::before {
                    content: normal;
                }
            }

            .Para {
                color: #F78F35;
                font-size: 34px;
                text-align: center;
            }
        }
    }
}

.slick-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #028180;
    padding: 8px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-size: 0px;
    top: 50%;
    position: absolute;
    left: -50px;
    transition: all 0.5s;
    background-color: transparent;

    &:hover {
        box-shadow: 0px 0px 20px 5px rgb(2, 129, 128, 0.45);
    }

    &.slick-next {
        left: auto;
        right: -50px;

        &::after {
            left: 100%;
            transform: translate(-50%, -50%) rotate(-180deg);
        }

        &::before {
            left: 92%;
        }

        &:hover {
            &::after {
                left: 25px;
            }

            &::before {
                background-color: transparent;
            }
        }
    }

    &::before {
        width: 27px;
        height: 25px;
        background-color: #fff;
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    &::after {
        content: "";
        position: absolute;
        width: 35px;
        height: 20px;
        background: url(../images/Home/prev-arrow.png) no-repeat center center;
        left: 0;
        transform: translateX(10px);
        top: 50%;
        transform: translate(-50%, -50%);
        background-size: 100%;
        transition: 0.6s;
        background-color: #f0f0f000;
    }

    &.slick-prev {
        &:hover {
            &::before {
                background-color: transparent;
            }

            &::after {
                left: 26px;
            }
        }
    }
}

.homeTabs {
    li {
        a {
            display: block;
            width: 100%;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            margin-bottom: 0;
            border-radius: 25px;
            color: #000;
            transition: all 0.5s;
        }

        &:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.5);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        &.active {
            a {
                background: linear-gradient(92deg, #FEC241 16.29%, #F79336 93.55%);
                color: #035C57;
                border-radius: 25px;
                padding: 12px;
                text-align: center;
            }
        }
    }
}

/* banner */

.home {
    .header {
        z-index: 100;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;

        .headerInn {
            padding-top: 0;
        }
    }

    .customBlock {
        padding: 140px 0px;
        overflow: hidden;
    }
}

.is-sticky {
    .home {
        .header {
            .headerInn {
                padding-top: 10px;
            }
        }
    }
}

.bannerWrap {
    overflow: hidden;

    .bannerInner {
        .bannerImgWrap {
            height: calc(100vh + 30px);
            background-color: #e7e8e9;

            .bannerVdo {
                /* display: none; */
                top: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                position: absolute;
                object-fit: cover;
            }

            .bannerMobBanner {
                display: none;
                top: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                position: absolute;
            }
        }

        .bannerText {
            left: 0;
            right: 0;
            top: 230px;
            position: absolute;
            width: 100%;
            max-width: 50%;

            .banTxtInn {
                position: relative;

                &::after {
                    content: '';
                    position: absolute;
                    bottom: -20px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 150px;
                    height: 5px;
                    background-color: #028180;
                }

                h2 {
                    font-size: 50px;
                    color: #028180;
                    font-weight: 400;
                    text-align: center;

                    span {
                        font-size: 80px;
                        font-weight: 700;
                    }
                }
            }
        }
    }
}

.fancybox-content {
    background-color: #fff !important;

    .fancybox-image {
        padding: 20px;
    }
}


/* prelude section */
.preludeSec {
    padding: 0 !important;

    .mainBg {
        height: auto;

        .mainBgCont {
            position: static;
            padding-top: 100px;
            background-color: transparent;
            background-image: none;
            padding-bottom: 150px;

            .headingWrap {
                align-items: center;
                flex-direction: column;
                justify-content: center;
                margin-bottom: 10px;
            }

            .subTxtWrap {
                p {
                    font-size: 18px;
                    color: #606060;
                    text-align: center;
                    font-weight: 400;

                    span {
                        color: #028180;
                        font-size: 22px;
                        font-weight: 700;
                    }
                }

                &::after {
                    content: normal;
                }
            }
        }

        &.mainBg_env {
            box-shadow: none;

            &:after {
                background-image: url(../images/Home/prelude-bg.png);
            }
        }
    }
}

/* chairman's message */
.ChairmanSec {
    .chairmanSecCard {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 85%;
        margin-left: auto;
        box-shadow: -18px 16px 98px 0px rgba(56, 56, 56, 0.26);
        border-radius: 20px;
        overflow: hidden;

        .chairmanLeft {
            width: 40%;
            padding-top: 40px;
            padding-bottom: 20px;
            padding-right: 0;
            position: relative;

            .headingWrap {
                position: absolute;
                right: 0;

                .smallHeading {
                    &::before {
                        width: 2px;
                        height: 95%;
                        right: -7px;
                        background-color: var(--greenText2);
                        content: "";
                        top: 5px;
                        position: absolute;
                        border-radius: 10px;
                    }
                }
            }

            .chairmanImgWrap {
                .flowerImg {
                    width: 90%;
                    height: 80%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }

                .innerImg {
                    width: 100%;
                    height: 550px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        object-position: bottom;
                    }
                }

                &::before {
                    bottom: -3px;
                    height: 6px;
                    z-index: 2;
                }
            }
        }

        .chairmanRight {
            width: 60%;
            background-color: #FEF7E9;

            .chairmanTxt {
                width: 100%;
                max-width: 75%;
                height: 100%;
                padding: 70px 0px 30px 30px;

                .headingWrap {
                    &.headingWrapC {
                        .mainH {
                            text-align: left;
                        }

                        .smallHeading {
                            display: none;
                        }
                    }
                }

                .chairmanImgRes {
                    display: none;
                }

                .chairmanTxtInn {
                    padding-top: 60px;

                    p {
                        text-align: right;
                    }
                }

                .hBtnWrap {
                    text-align: right;
                }

                .chairmanName {
                    text-align: right;
                    padding-top: 50px;

                    h5 {
                        color: #038181;
                        font-size: 45px;
                        font-weight: 500;
                        margin-bottom: 10px;
                    }

                    p {
                        font-size: 24px;
                        color: #0B0B0B;
                    }
                }
            }
        }

        &:last-child {
            margin-left: 0;
            margin-right: auto;
            margin-top: 100px;

            .chairmanLeft {
                .headingWrap {
                    position: absolute;
                    right: auto;
                    left: 0;

                    .smallHeading {
                        padding-right: 0px;
                        padding-left: 15px;
                        margin-right: 0px;
                        margin-left: 10px;
                        text-align: left !important;

                        &::before {
                            left: 0;
                        }

                        &::after {
                            left: 7px;
                        }
                    }
                }
            }

            .chairmanRight {
                .chairmanTxt {
                    margin-left: auto;
                    padding: 70px 30px 30px 0px;

                    .headingWrap {
                        &.headingWrapC {
                            justify-content: flex-end;

                            .mainH {
                                text-align: end;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* key performance highlights */
.keyPerformnc {
    background-color: #F1F4F9;
    background-position: bottom left;
    background-repeat: no-repeat;

    .keyListWrap {
        display: flex;
        justify-content: space-between;
        padding-top: 60px;

        .keyTabsLeft {
            width: 250px;
        }

        .listContBox {
            width: calc(100% - 250px);
            padding-left: 200px;

            .tab_content {
                background-color: #fff;
                box-shadow: -18px 16px 98px 0px rgba(56, 56, 56, 0.26);
                border-radius: 20px;
                padding: 30px 80px;
                display: none;

                &.active {
                    display: block;
                }

                .keySlider {
                    .slick-arrow {
                        z-index: 2;
                    }

                    .keySlide {
                        padding: 0px 15px;

                        .graphImg {
                            padding: 0 !important;
                            max-width: 420px;
                            height: 400px;
                            margin: 0px auto;

                            figure {
                                width: 100%;
                                height: 100%;

                                a {
                                    width: 100%;
                                    height: 100%;

                                    img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: contain;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .keyAccContainer {
        padding-top: 25px;

        .keyAcc {
            border-radius: 20px;
            overflow: hidden;

            &:not(:last-child) {
                margin-bottom: 25px;
            }

            .keyAccHead {
                background: linear-gradient(92deg, #FEC241 16.29%, #F79336 93.55%);
                padding: 12px 20px;
                position: relative;

                &::after {
                    content: "\f107";
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 15px;
                    width: 30px;
                    height: 30px;
                    border-radius: 50%;
                    background-color: #0E8281;
                    font-family: fontawesome;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.4s;
                }

                h4 {
                    color: #035C57;
                    font-size: 20px;
                    font-weight: 500;
                    padding-right: 40px;
                }
            }

            &.active {
                .keyAccHead {
                    &::after {
                        content: "\f106";
                    }
                }
            }

            .keyAccCont {
                display: none;
                background: #fff;
                padding: 30px 20px;

                .keySlider {
                    padding-bottom: 50px;

                    .slick-arrow {
                        top: auto;
                        bottom: 0;

                        &.slick-prev {
                            left: calc(50% - 50px);
                        }

                        &.slick-next {
                            right: calc(50% - 50px);
                        }
                    }

                    .graphImg {
                        img {
                            margin: 0px auto;
                        }
                    }
                }
            }
        }
    }
}

/* financial scorecard */
.fin_Scorecard {
    .bigBg {
        position: absolute;
        right: -350px;
        top: 300px;
        z-index: -1;
    }

    .smallBg {
        position: absolute;
        left: -50px;
        top: 50px;
        z-index: -1;
    }

    ul.finTabs {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 40px;
        padding-bottom: 50px;

        li {
            list-style: none;
            cursor: pointer;
            border-radius: 25px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            padding: 12px 30px;
            color: #0B0B0B;
            text-align: center;
            font-size: 20px;
            font-weight: 500;
            line-height: 26px;
            margin-bottom: 0;

            &.active {
                background: linear-gradient(92deg, #FEC241 16.29%, #F79336 93.55%);
                color: #035C57;
                border: 1px solid transparent;
            }
        }
    }

    .listContBox {
        width: 100%;

        .tab_content {
            display: none;

            &.active {
                display: block;
            }

            .tabHeader{
                display: none;
            }
        }

        .mainH {
            text-align: center;
        }

        .finListContBtm {
            .esgTableEach {
                position: relative;

                .esgTabHeader {
                    &::after {
                        width: 300px;
                        background-color: #f2f8ed;
                        background: linear-gradient(90deg, rgba(189, 226, 217, 1) 0%, rgba(234, 243, 214, 1) 200%);
                        bottom: -12px;
                    }
                }

                .fin_scoreIcon {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    left: -30px;
                    z-index: 2;

                    .esgTabHeadIconBg {
                        padding: 5px;
                        width: 70px;
                        height: 70px;
                        display: flex;
                        position: relative;
                        border-radius: 50%;
                        align-items: center;
                        justify-content: center;

                        img {
                            width: 45px;
                            height: auto;
                            object-fit: contain;
                        }

                        &:before {
                            z-index: -1;
                            content: '';
                            width: 100%;
                            height: 100%;
                            right: -5px;
                            bottom: -5px;
                            border-radius: 50%;
                            position: absolute;
                            background-color: #bcbdc0;
                        }
                    }
                }

                .esgTabContent {
                    height: 340px;
                    padding: 20px 30px 20px 50px;

                    .esgTabContentInner {
                        height: 100%;
                        display: flex;
                        align-items: center;
                        width: 100%;
                        padding: 15px 10px 0px 0;

                        .esgTabContentInnerBox {
                            width: 100%;

                            .eachNumBlockWrap {
                                padding-right: 10px;
                                padding-left: 10px;

                                .eachNumBtm {
                                    display: flex;
                                    justify-content: flex-start;
                                    gap: 6px;

                                    .eachNumBtmCir {
                                        width: 30px;
                                        height: 30px;
                                        border-radius: 50%;
                                        background-color: rgb(255, 202, 67);
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;

                                        img {
                                            width: 18px;
                                            height: auto;
                                        }
                                    }

                                    p {
                                        display: inline-block;
                                        padding-right: 30px;
                                        border: 1px solid #229e82;
                                        border-left: none;
                                        border-radius: 0px 20px 20px 0px;
                                        font-size: 14px;
                                        vertical-align: middle;
                                        line-height: 28px;

                                        span {
                                            color: #f78f35;
                                            margin-right: 6px;
                                            font-weight: 600;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                &:nth-child(odd) {
                    .esgTabHeader {
                        &:after {
                            background-color: #fef7e9 !important;
                            background-image: none !important;
                        }
                    }
                }

            }

            .finSmallCir {
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background-color: rgb(255, 202, 67);
                display: inline-block;
                position: relative;
                vertical-align: middle;

                img {
                    width: 8px;
                    height: auto;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }
    }
}

.finListContBtm_mob{
    display: none;
}
/* .finListContBtm_desk{
    display: block;
} */

@media only screen and (max-width: 767px){
    .fin_Scorecard{
        &.customBlock{
            .tab_content_inner{
                .finListContSlider{
                    padding-bottom: 40px;
                    .slick-arrow {
                        top: auto;
                        bottom: 0;
                        z-index: 1;

                        &.slick-prev {
                            left: calc(50% - 50px);
                        }

                        &.slick-next {
                            right: calc(50% - 50px);
                        }
                    }
                }
                .col-lg-12{
                    margin-top: 30px;
                    p{
                        text-align: center !important;
                    }
                }
            }
        }
    }
    .finListContBtm_desk{
        display: none;
    }
    .finListContBtm_mob{
        display: block;

        .slick-list{
            /* padding: 0 20px; */

            .slick-slide{
                padding: 20px;
            }
        }
    }
}

/* corporate identity */
.corporate_identity {
    overflow: visible !important;

    .corpListWrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        .corpTabLeft {
            width: 230px;

            .corpTabs {
                li {
                    a {
                        /* text-align: center; */
                        font-weight: 400;
                    }
                }
            }
        }

        .corpContBox {
            width: calc(100% - 230px);
            padding-left: 40px;

            .tab_content {
                display: none;

                &.active {
                    display: block;
                }
            }

            .corpCont {
                .corpContLeft {
                    .headingWrap {
                        flex-direction: column;

                        .smallHeading {
                            text-align: left !important;
                            padding-left: 22px;
                            margin-bottom: 15px;

                            &::before {
                                width: 3px;
                                height: 57px;
                                left: 0;
                                top: 0;
                                bottom: auto;
                                transform: translateX(0);
                            }

                            &::after {
                                width: 3px;
                                height: 40px;
                                top: 0;
                                bottom: auto;
                                right: auto;
                                left: 6px;
                                transform: translateX(0);
                            }
                        }

                        .mainH {
                            text-align: left;
                        }
                    }

                    p {
                        color: #606060;
                        font-size: 22px;
                        font-weight: 500;
                    }
                }

                .corpContRight {
                    padding-left: 70px;
                    position: relative;

                    .corpImg {
                        width: 100%;
                        height: auto;

                        img {
                            width: 100%;
                            height: 100%;
                            border-radius: 20px;
                            object-fit: cover;
                            object-position: top;
                        }
                    }

                    .greenAbsImg {
                        top: -30px;
                        right: 75px;
                        width: 70px !important;
                        height: auto;
                    }

                    .orangeAbsImg {
                        bottom: -25px;
                        left: 50px;
                        width: 70px !important;
                        height: auto;
                        transform: rotate(90deg);
                    }
                }
            }
        }
    }

    .corpAccContainer {
        padding-top: 25px;

        .corpAcc {
            border-radius: 20px;
            overflow: hidden;

            &:not(:last-child) {
                margin-bottom: 25px;
            }

            .corpAccHead {
                background: linear-gradient(92deg, #FEC241 16.29%, #F79336 93.55%);
                padding: 12px 20px;
                position: relative;

                &::after {
                    content: "\f107";
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 15px;
                    width: 30px;
                    height: 30px;
                    border-radius: 50%;
                    background-color: #0E8281;
                    font-family: fontawesome;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.4s;
                }

                h4 {
                    color: #035C57;
                    font-size: 20px;
                    font-weight: 500;
                    padding-right: 40px;
                }
            }

            &.active {
                .corpAccHead {
                    &::after {
                        content: "\f106";
                    }
                }
            }

            .corpAccCont {
                display: none;
                background: #fff;
                padding: 30px 20px;
            }
        }
    }
}

/* micro banking start */

.bankingTabSec {
    height: 100%;
}

.mobBanking {
    display: none;
}

.bankingTabCon {
    background: center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
}

.bankingOverlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.bankingTxt {
    width: 100%;
    max-width: 700px;
    height: auto;
    padding: 165px 0 0;

    h1 {
        font-size: 2.5em;
        margin: 0;
    }

    span {
        color: #00aced;
    }

    p {
        margin: 20px 0;
        font-size: 18px;
        line-height: 26px;
    }
}


.bankingTabCon {
    display: none;
}

.bankingTabCon.current {
    display: block;
}

.dskBanking {
    position: relative;
}

.bankingTabMnuWrap {
    /* background: rgba(0, 0, 0, 0.45); */
    color: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;


    .bankingTabMenu {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        list-style: none;
        justify-content: space-between;
        margin: 0;
        background: rgba(0, 0, 0, 0.45);
        border-radius: 10px 10px 0 0;
        margin: 0 130px;

        li {
            width: 20%;
            min-height: 118px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px 30px;
            cursor: pointer;
            transition: 0.3s ease;
            margin: 0;
            color: #fff;
            position: relative;
            font-size: 19px;
            line-height: 1.4;
            font-weight: 400;

            &:hover,
            &.current {
                /* font-size: 20px; */
                /* font-weight: 700; */
                color: #f90;
                text-shadow: 2px 6px 3px #F8A51B6B;
            }

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: #fff;
            }

            &::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 1px;
                height: 100%;
                background-color: #fff;
            }

            &:nth-child(1)::before,
            &:nth-child(2)::before,
            &:nth-child(3)::before,
            &:nth-child(4)::before,
            &:nth-child(5)::before {
                content: normal;
            }

            &:nth-child(1)::after,
            &:nth-child(6)::after {
                content: normal;
            }
        }
    }
}

.hBtnWrap {
    margin-top: 30px;

    .hBtnOne {
        display: inline-flex;
        transition: .5s;

        span.hBtnTxt {
            color: #fff;
            border-radius: 30px;
            line-height: 15px;
            padding: 15px 30px;
            font-weight: 500;
            font-size: 20px;
            transition: 0.5s;
            background: rgb(255, 106, 13);
            background: linear-gradient(90deg, rgb(255, 106, 13) 30%, rgb(248, 165, 27) 100%);
            /* border: 2px solid transparent; */
        }

        span.arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-left: -2px;
            /* transform: rotate(-45deg); */
            transition: 0.5s;
            background: rgb(248, 165, 27);
            background: linear-gradient(90deg, rgb(248, 165, 27) 30%, rgb(255, 106, 13) 100%);
            /* border: 2px solid transparent; */
            position: relative;
        }

        &:hover {
            span.hBtnTxt {
                /* border: 2px solid rgb(255, 106, 13);
          background: #fff;
          color: #000; */
                background: linear-gradient(90deg, rgb(255, 106, 13) 100%, rgb(248, 165, 27) 100%);
            }

            span.arrow {
                /* border: 2px solid rgb(255, 106, 13);
          background: #fff; */
                background: linear-gradient(90deg, rgb(255, 106, 13) 100%, rgb(248, 165, 27) 100%);

                /* img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(21%) hue-rotate(227deg) brightness(98%) contrast(98%);
        } */
            }
        }
    }
}

/* micro banking end */

/* esg section start */

.drivingRes {
    .headingWrap {
        flex-direction: column;

        .smallHeading {
            text-align: left !important;
            padding-left: 22px !important;

            &::before {
                width: 3px !important;
                height: 57px !important;
                left: 0 !important;
                top: 0 !important;
                bottom: auto !important;
                transform: translateX(0) !important;
            }

            &::after {
                width: 3px !important;
                height: 40px !important;
                top: 0 !important;
                bottom: auto !important;
                right: auto !important;
                left: 6px !important;
                transform: translateX(0) !important;
            }
        }

        .mainH {
            text-align: left;
        }
    }

    .driveTxtInn {
        p {
            color: #606060;
            font-size: 20px;
            font-weight: 500;
        }
    }
}

.esgTabHeader {
    top: 30px;
    z-index: 2;
    position: relative;
    display: inline-block;

    .esgTabHeadIconBg {
        padding: 5px;
        width: 100px;
        height: 100px;
        display: flex;
        position: relative;
        border-radius: 50%;
        align-items: center;
        justify-content: center;

        &:before {
            z-index: -1;
            content: "";
            width: 100%;
            height: 100%;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            position: absolute;
            background-color: #bcbdc0;
        }
    }


    &:after {
        left: 0;
        bottom: -30px;
        width: 100%;
        height: 20px;
        content: "";
        position: absolute;
        background-color: #f2f8ed;
    }
}

.esgTabContent.bg_f2f8ed,
.esgTabContent.bg_fef7e9,
.esgTabContent.bg_fff9f1 {
    position: relative;
    padding: 50px 30px 30px 20px;
    padding-right: 30px;

    .esgTabContentInner {
        position: relative;
        border-radius: 0 50px 50px 0;
        border: 2px solid #239d82;
        border-left: 0 !important;
        padding: 30px 10px 0px 0;
    }

    &::after {
        width: 15px;
        height: 100%;
        top: 0;
        right: 0;
        background: linear-gradient(90deg, #4ca682 0%, #b0d17c 100%);
        content: "";
        position: absolute;
    }
}

.esgTabContent.bg_fef7e9 {
    .esgTabContentInner {
        border: 2px solid #fbc189;
    }

    &::after {
        background: linear-gradient(90deg, #feca42 0%, #f68f35 100%);
    }
}

/* tab */

.driveResTabWrap {
    margin-top: 60px;

    .esgTableEach {
        .eachNumBlockWrap {
            h2 {
                font-size: 28px;
            }

            p.smallText {
                font-size: 16px !important;
            }

            .midText {
                font-size: 17px !important;
            }
        }
    }
}

.driveTabcon {
    display: none;
}

.driveTabcon.current {
    display: block;
}

.driveResTabMenu {
    margin-bottom: 15px;

    ul {
        display: flex;
        align-items: center;
        justify-content: center;

        li {
            margin: 0 40px;
            border: 1px solid rgba(0, 0, 0, 0.24);
            border-radius: 98px;
            padding: 25px 56px 25px 76px;
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;

            & .driveLstImg {
                width: 67px;
                height: 67px;
                border-radius: 50%;
                padding: 15px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: -28px;
            }

            & .envirImg {
                background: rgba(187, 217, 118, 1);
                background: linear-gradient(90deg, #bbd976 0%, #269e82 100%);
            }

            & .socialImg {
                background: rgba(252, 181, 62, 1);
                background: linear-gradient(90deg, rgb(254, 202, 66, 1) 0%, rgb(246, 143, 53, 1) 100%);
            }

            & .goverImg {
                background: rgba(187, 217, 118, 1);
                background: linear-gradient(90deg, #bbd976 0%, #269e82 100%);
            }

            &:hover,
            &.current {
                border: 1px solid transparent;

                &:nth-child(odd) {
                    background: rgba(252, 181, 62, 1);
                    background: linear-gradient(90deg, rgb(254, 202, 66, 1) 0%, rgb(246, 143, 53, 1) 100%);
                    color: #046262;
                }

                &:nth-child(even) {
                    background: rgba(187, 217, 118, 1);
                    background: linear-gradient(90deg, #bbd976 0%, #269e82 100%);
                    color: #fff;
                }
            }
        }
    }
}

.mobHEsgBtn {
    display: none;
}

.mobEsgTab {
    display: none;
}

/* esg section end */

/* Responsive */

@media(max-width: 1768px) {

    /* nisha css start */
    .bankingTxt {
        padding: 66px 0 0;
        max-width: 764px;
    }

    .bankingTabMnuWrap {

        /* bottom: 0; */
        & .bankingTabMenu {
            li {
                padding: 20px 30px;
                min-height: 120px;

                /* &:hover,
                &.current {
                    font-size: 19px;
                } */
            }
        }
    }

    /* nisha css end */
}

@media(max-width: 1680px) {

    /* nisha css start */
    .bankingTabMnuWrap {
        .bankingTabMenu {
            margin: 0 45px;
        }
    }

    /* nisha css end */
}

@media(max-width: 1600px) {

    /* banner */
    .bannerWrap {
        .bannerInner {
            .bannerImgWrap {
                .bannerVdo {
                    object-position: 80% 0%;
                }
            }

            .bannerText {
                .banTxtInn {
                    & h2 {
                        span {
                            font-size: 60px;
                        }
                    }
                }
            }
        }
    }

    /* heading */
    .home {
        .headingWrap {
            &.headingWrapC {
                .mainH {
                    font-size: 40px;
                }
            }

            .smallHeading {
                font-size: 20px !important;
            }
        }
    }

    /* chairman sec */
    .ChairmanSec {
        .chairmanSecCard {
            .chairmanRight {
                .chairmanTxt {
                    .chairmanTxtInn {
                        padding-top: 25px;
                    }

                    .chairmanName {
                        h5 {
                            font-size: 30px;
                        }
                    }
                }
            }
        }
    }

    /* bod sec */

    .bodMainBox {
        .bodBoxCont {
            .bodBoxLeft {
                .bodBoxImg {
                    height: 330px;
                }
            }

            .bodBoxRight {
                p {
                    font-size: 16px;
                }
            }
        }
    }

    /* corporate identity */
    .corporate_identity {
        .corpListWrap {
            .corpContBox {
                .corpCont {
                    .corpContLeft {
                        p {
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }

    /* banking section */
    .bankingTxt {
        max-width: 75%;

        p {
            font-size: 16px;
        }
    }

    /* esg section */
    .driveResTabMenu {
        ul {
            li {
                padding: 16px 42px 16px 55px;

                .driveLstImg {
                    width: 60px;
                    height: 60px;
                }
            }
        }
    }

    .esgTabHeader {
        top: 25px;

        .esgTabHeadIconBg {
            width: 85px;
            height: 85px;
        }

        .figCap {
            font-size: 28px !important;
        }
    }

    .esgTabContent.bg_f2f8ed,
    .esgTabContent.bg_fef7e9,
    .esgTabContent.bg_fff9f1 {
        padding: 35px 30px 30px 20px;
        padding-right: 30px;
    }
}

@media (max-width: 1480px) {

    /* financial scoreboard */
    .fin_Scorecard {
        .finListWrap {
            padding: 0px 50px;
        }
    }
}

@media (max-width: 1440px) {

    .home {
        .headingWrap {
            &.headingWrapC {
                .mainH {
                    font-size: 40px;
                }
            }
        }
    }

    /* banner */
    .bannerWrap {
        .bannerInner {
            .bannerImgWrap {
                height: calc(100vh + 10px);
            }
        }
    }

    /* chairman sec */
    .ChairmanSec {
        .chairmanSecCard {
            max-width: 90%;

            .chairmanLeft {
                .chairmanImgWrap {
                    .innerImg {
                        height: 500px;
                    }
                }
            }
        }
    }

    /* financial scoreboard */
    .fin_Scorecard {
        .finListWrap {
            padding: 0px 50px;

            .finListContBtm {
                .esgTableEach {
                    .esgTabContent {
                        height: 350px;
                        padding: 14px 22px 14px 40px;

                        .eachNumBlockWrap {
                            .eachNumBlock {
                                .counterText {
                                    font-size: 20px !important;
                                }

                                .midText {
                                    font-size: 14px !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* corporate identity */
    .corporate_identity {
        .corpListWrap {
            .corpContBox {
                .corpCont {
                    .corpContLeft {
                        p {
                            font-size: 18px;
                        }
                    }

                    .corpContRight {
                        padding-left: 20px;

                        .greenAbsImg {
                            right: 30px;
                            width: 45px !important;
                        }

                        .orangeAbsImg {
                            width: 50px !important;
                        }
                    }
                }
            }
        }
    }

    /* esg section */
    .drivingRes {
        .driveTxtInn {
            p {
                font-size: 16px;
            }
        }
    }

    .driveResTabWrap {
        margin-top: 25px;
    }

    .driveResTabMenu {
        ul {
            li {
                padding: 16px 30px 16px 50px;
                margin: 0 25px;

                h4 {
                    font-size: 18px;
                }

                .driveLstImg {
                    width: 54px;
                    height: 54px;
                    padding: 10px;
                }
            }
        }
    }

    .esgTabHeader {
        top: 18px;

        .esgTabHeadIconBg {
            width: 70px;
            height: 70px;

            img {
                width: 42px;
                height: auto;
            }
        }

        strong {
            font-size: 22px !important;
        }
    }

    .esgTabContent.bg_f2f8ed,
    .esgTabContent.bg_fef7e9,
    .esgTabContent.bg_fff9f1 {
        padding: 28px 30px 20px 20px;
    }
}

@media (max-width: 1399px) {

    /* banner */
    .bannerWrap {
        .bannerInner {
            .bannerText {
                top: 200px;

                .banTxtInn {
                    h2 {
                        font-size: 36px;

                        span {
                            font-size: 46px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1380px) {

    /* nisha css start */
    .bankingTabMnuWrap {
        .bankingTabMenu {
            margin: 0px 15px;
        }
    }

    /* nisha css end */
}

@media (max-width: 1366px) {

    .container-mid {
        width: 100%;
        max-width: 95%;
    }

    /* common css */
    .home {
        .headingWrap {
            .smallHeading {
                font-size: 16px !important;
            }

            &.headingWrapC {
                .mainH {
                    font-size: 36px;
                }

                .Para {
                    font-size: 30px;
                }
            }
        }

        .customBlock {
            padding: 80px 0px;
        }
    }

    .slick-arrow {
        width: 42px;
        height: 42px;

        &::after {
            width: 28px;
        }

        &.slick-prev {
            &:hover {
                &::after {
                    left: 20px;
                }
            }
        }

        &.slick-next {
            &:hover {
                &::after {
                    left: 20px;
                }
            }
        }
    }

    /* common button */
    .hBtnWrap {
        .hBtnOne {
            span.hBtnTxt {
                line-height: 16px;
                padding: 10px 20px;
                font-size: 16px;
            }

            span.arrow {
                width: 40px;
                height: 40px;
            }
        }
    }

    /* banner */
    .bannerWrap {
        .bannerInner {
            .bannerImgWrap {
                height: calc(100vh + 60px);
            }
        }
    }

    /* prelude section */
    .preludeSec {
        .mainBg {
            .mainBgCont {
                .subTxtWrap {
                    p {
                        font-size: 16px;

                        span {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    /* chairman sec */
    .ChairmanSec {
        .chairmanSecCard {
            .chairmanLeft {
                padding-bottom: 0;

                .chairmanImgWrap {
                    .innerImg {
                        height: 400px;
                    }
                }
            }

            .chairmanRight {
                .chairmanTxt {
                    padding-top: 40px !important;

                    .chairmanTxtInn {
                        padding-top: 15px;

                        p {
                            font-size: 15px;
                        }
                    }

                    .chairmanName {
                        h5 {
                            font-size: 22px;
                        }

                        p {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    .chairmanImgWrap {
        &::before {
            width: 80%;
            bottom: -4px !important;
        }
    }

    /* key performance section */
    .keyPerformnc {
        .keyListWrap {
            padding-top: 35px;

            .listContBox {
                .tab_content {
                    .keySlider {
                        .keySlide {
                            .graphImg {
                                max-width: 300px;
                                width: 100%;
                                margin: 0px auto;
                            }
                        }
                    }
                }
            }
        }
    }

    /* bod section */
    .bodMainBox {
        .bodBoxCont {
            .bodBoxLeft {
                .bodBoxImg {
                    height: 300px;
                }
            }
        }
    }

    .home {

        .leadershipSec,
        .bodSec {
            padding-bottom: 120px;

            .slick-arrow {
                bottom: -40px;
            }
        }
    }

    .homeTabs {
        li {
            &:not(:last-child) {
                padding-bottom: 15px;
                margin-bottom: 15px;
            }

            a {
                font-size: 16px;
                padding: 10px;
                padding: 6px 12px;
            }
        }
    }

    /* financial scoreboard */
    .fin_Scorecard {
        .smallBg {
            left: -50px;
            top: 30px;
            width: 220px;
            height: auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        .bigBg {
            position: absolute;
            right: -90px;
            top: 220px;
            width: 420px;
            height: auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        .finListWrap {
            padding: 0;
        }

        ul.finTabs {
            padding-bottom: 30px;
            gap: 20px;

            li {
                padding: 8px 20px;
                font-size: 16px;
                line-height: 26px;
            }
        }

        .listContBox {
            .finListContBtm {
                .esgTableEach {
                    .greyText {
                        font-size: 20px !important;
                    }

                    .fin_scoreIcon {
                        left: -15px;

                        .esgTabHeadIconBg {
                            width: 55px;
                            height: 55px;

                            img {
                                width: 35px;
                            }
                        }
                    }

                    .esgTabContent {
                        padding: 12px 30px 12px 40px;
                    }
                }
            }
        }
    }

    /* micro banking section */
    .bankingTabMnuWrap {
        .bankingTabMenu {
            margin: 0px 20px;

            li {
                padding: 12px 20px;
                min-height: 90px;
                font-size: 16px;

                /* &:hover,
                &.current {
                    font-size: 17px;
                } */
            }
        }
    }

    .bankingTxt {
        padding: 60px 0 0;
        max-width: 65%;

        p {
            font-size: 14px;
            line-height: 24px;
        }

        .hBtnWrap {
            margin-top: 20px;
        }
    }

    /* esg section */
    .driveResTabWrap {
        .esgTableEach {
            .eachNumBlockWrap {
                margin-bottom: 12px;

                h2 {
                    font-size: 22px;
                }

                .midText {
                    font-size: 15px !important;
                }

                p.smallText {
                    font-size: 14px !important;
                }
            }
        }
    }

    .esgTabContent.bg_f2f8ed,
    .esgTabContent.bg_fef7e9,
    .esgTabContent.bg_fff9f1 {
        padding: 28px 30px 20px 20px;
    }

    .drivingRes {
        .headingWrapC {
            margin-bottom: 20px !important;
        }

        .hBtnWrap {
            margin-top: 20px;
        }
    }

    .driveResTabMenu {
        ul {
            li {
                .driveLstImg {
                    width: 54px;
                    height: 54px;
                    padding: 12px;
                }
            }
        }
    }

    /* key performance highlights */
    .keyPerformnc {
        .keyListWrap {
            .listContBox {
                .tab_content {
                    padding: 20px 80px;
                }
            }
        }
    }
}


@media (max-width: 1365px) {
    .bannerWrap {
        .bannerInner {
            .bannerImgWrap {
                height: 650px;
            }
        }
    }
}

@media(max-width: 1280px) {

    .home {
        .headingWrap {
            &.headingWrapC {
                .mainH {
                    font-size: 30px;
                }
            }
        }
    }

    .hBtnWrap {
        .hBtnOne {
            span.hBtnTxt {
                line-height: 20px;
                padding: 8px 16px;
                font-size: 15px;
            }

            span.arrow {
                width: 36px;
                height: 36px;

                img {
                    width: 20px;
                    height: auto;
                }
            }
        }
    }

    .homeTabs {
        &.keyTabs {
            li {
                a {
                    text-shadow: 1px 1px 1px #ffffff60;
                    letter-spacing: 0.075rem;
                }
            }
        }
    }

    .home {
        .customBlock {
            padding: 60px 0px;
        }
    }

    .slick-arrow {
        width: 35px;
        height: 35px;
    }

    /* chairman section */
    .ChairmanSec {
        .chairmanSecCard {
            margin: 0px auto;
            max-width: 96%;

            .chairmanRight {
                .chairmanTxt {
                    max-width: 100%;
                    padding: 40px 30px !important;

                    .headingWrap {
                        align-items: center;
                        justify-content: center !important;
                        text-align: center;

                        .mainH {
                            text-align: center !important;
                        }
                    }

                    .chairmanTxtInn {
                        p {
                            text-align: center;
                        }
                    }

                    .hBtnWrap {
                        text-align: center;
                    }

                    .chairmanName {
                        text-align: center;
                    }
                }
            }

            &:last-child {
                margin-left: auto;
                margin-right: auto;
                flex-direction: row-reverse;
                margin-top: 60px;

                .chairmanLeft {
                    .headingWrap {
                        left: auto;
                        right: 0;

                        .smallHeading {
                            padding-right: 20px;
                            padding-left: 0;
                            margin-right: 0;
                            margin-left: 0px;
                            text-align: right !important;

                            &::before {
                                left: auto;
                                right: 0;
                            }

                            &::after {
                                left: auto;
                                right: 7px;
                            }
                        }
                    }
                }
            }
        }
    }

    /* key performance section */
    .keyPerformnc {
        .keyListWrap {
            .listContBox {
                width: calc(100% - 250px);
                padding-left: 60px;
            }
        }
    }

    /* financial scoreboard */
    .fin_Scorecard {
        .finListWrap {
            .finListContBtm {
                .esgTableEach {
                    .esgTabContent {
                        .eachNumBlockWrap {
                            .eachNumBlock {
                                .counterText {
                                    font-size: 18px !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* corporate identity */
    .corporate_identity {
        .corpListWrap {
            align-items: flex-start;
            .corpContBox {
                .corpCont {
                    row-gap: 30px;

                    .col-lg-5 {
                        flex: 100%;
                        max-width: 100%;
                    }

                    .col-lg-7 {
                        flex: 100%;
                        max-width: 100%;
                    }
                }
            }
        }
    }

    /* nisha css start */

    .bankingTxt {
        padding: 55px 0 0;
        max-width: 85%;

        .headingWrap {
            margin-bottom: 20px !important;
        }
    }

    /* home esg */
    .driveResTabMenu {
        & ul {
            li {
                padding: 12px 35px 12px 45px;

                .driveLstImg {
                    width: 46px;
                    height: 46px;
                    padding: 7px;
                }

                h4 {
                    font-size: 17px;
                }
            }
        }
    }

    .esgTabHeader {
        top: 18px;

        &:after {
            bottom: -10px;
            z-index: -2;
        }

        .esgTabHeadIconBg {
            width: 62px;
            height: 62px;

            img {
                width: 36px;
            }
        }

        .figCap {
            font-size: 20px !important;
        }
    }

    .esgTabContent.bg_f2f8ed,
    .esgTabContent.bg_fef7e9,
    .esgTabContent.bg_fff9f1 {
        padding: 18px 30px 20px 20px;
    }

    /* .esgTabHeader {
        .esgTabHeadIconBg {
            width: 90px;
            height: 90px;
        }
    } */

    .bodMainBox {
        .bodBoxCont {
            .bodBoxRight {
                padding-top: 15px;
                padding-left: 15px;

                .bodBoxTxt {
                    p {
                        font-size: 13px;
                    }
                }
            }
        }
    }

    .home {

        & .leadershipSec,
        & .bodSec {
            .slick-arrow {
                bottom: 0;
            }
        }
    }

    .bodMainBox {
        .bodBoxCont {
            & .bodBoxLeft {
                .bodBoxImg {
                    height: 280px;
                }
            }
        }
    }

    /* nisha css end */
}

@media (max-width: 1199px) {

    /* banner */
    .bannerWrap {
        height: 700px;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(../images/Home/banner-mob-bg.png);
            background-repeat: no-repeat;
            background-size: 100% 100%;
            z-index: 1;
        }

        .bannerInner {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row-reverse;
            padding-top: 85px;
            padding-right: 85px;
            position: relative;
            z-index: 2;

            .bannerImgWrap {
                width: 420px;
                height: auto;

                .bannerVdo {
                    display: none;
                }

                .bannerMobBanner {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    position: static;
                }
            }

            .bannerText {
                position: static;
            }
        }
    }

    /* common css */
    .home {
        .headingWrap {
            &.headingWrapC {
                .mainH {
                    font-size: 40px;
                }

                .Para {
                    font-size: 26px;
                }
            }
        }
    }

    /* financial scoreboard */
    .fin_Scorecard {
        .finListWrap {
            .finListContBtm {
                .esgTableEach {
                    .esgTabContent {
                        height: auto;
                        padding: 20px 25px 20px 50px;
                    }

                    &.pr_50 {
                        padding-right: 0 !important;
                    }

                    &.esgTableeach_4,
                    &.esgTableeach_2 {
                        padding-right: 0px !important;
                    }
                }
            }
        }
    }

    /* nisha css start */

    .bankingTxt {
        padding: 85px 0 0;
    }

    .bankingTabMnuWrap {
        & .bankingTabMenu {
            li {
                padding: 20px 24px;
            }
        }
    }

    /* esg page */
    .driveResTabWrap {
        margin-top: 40px;
    }

    .home {
        .eachNumBlockWrap {
            & .eachNumBlock {
                & h2 {
                    .ff_rupee_n {
                        font-size: 16px !important;
                    }
                }
            }
        }
    }

    /* nisha css end */
}

@media (max-width: 1024px) {
    .preludeSec {
        .mainBg {
            background-image: url(../images/Home/grey-bg.png) !important;

            &.mainBg_env {
                &::after {
                    display: block;
                }
            }

            .mainBgCont {
                .subTxtWrap {
                    p {
                        font-size: 16px;

                        span {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .mobView {
        display: block;
    }

    .deskView {
        display: none;
    }

    .home {
        .header {
            .containerMax {
                padding-right: 15px;
            }
        }

        .headingWrap {
            &.headingWrapC {
                .smallHeading {
                    font-size: 20px;
                }

                .mainH {
                    font-size: 35px;
                }
            }
        }

        .customBlock {
            padding: 60px 0px;
            overflow: hidden;
        }
    }

    .bannerWrap {
        height: 570px;

        .bannerInner {
            .bannerImgWrap {
                width: 340px;
            }

            .bannerText {
                .banTxtInn {
                    h2 {
                        font-size: 35px;

                        span {
                            font-size: 40px;
                        }
                    }
                }
            }
        }
    }

    .preludeSec {
        .mainBg {
            .mainBgCont {
                padding-top: 60px;
                padding-bottom: 100px;
            }
        }
    }

    /* nisha css start */

    .bankingTabCon {
        background-position: top right;
    }

    .bankingTabMnuWrap {
        & .bankingTabMenu {
            li {
                padding: 14px;
            }
        }
    }

    /* home esg */
    .dskHEsgBtn {
        display: none;
    }

    .mobHEsgBtn {
        display: block;
    }

    .driveResTabMenu {
        & ul {
            li {
                margin: 0 20px;
                padding: 18px 36px 18px 54px;

                & .driveLstImg {
                    width: 60px;
                    height: 60px;
                }
            }
        }
    }

    .driveResTabMenu {
        margin-bottom: 10px;
    }

    .esgTabHeader {
        .esgTabHeadIconBg {
            width: 86px;
            height: 86px;
            padding: 20px;
        }
    }

    .hEsgBx {
        p {
            font-size: 18px !important;
        }
    }

    /* nisha css end */

    /* chairman section */

    .chairmanImgRes {
        display: block;

        .innerImg {
            width: 100%;
            max-width: 350px;
            height: auto;
            margin: 0px auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }

    .ChairmanSec {
        .chairmanSecCard {
            flex-direction: column;

            .chairmanLeft {
                display: none;
            }

            .chairmanRight {
                width: 100%;

                .chairmanTxt {
                    .chairmanImgRes {
                        padding-top: 30px;
                        display: block;

                        .flowerImg {
                            width: 100%;
                            max-width: 300px;
                            height: auto;
                        }
                    }

                    .chairmanImgWrap {
                        &::before {
                            width: 65%;
                            bottom: 0px !important;
                        }
                    }

                    .headingWrap {
                        &.headingWrapC {
                            display: block;

                            .smallHeading {
                                display: block;
                            }
                        }
                    }

                    .chairmanName {
                        padding-top: 40px;

                        h5 {
                            font-size: 20px;
                        }

                        p {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }

    /* key performance section */
    .keyPerformnc {
        .keyAccContainer {
            .keyAcc {
                .keyAccCont {
                    .keySlider {
                        .graphImg {
                            width: 100%;
                            max-width: 450px;
                            height: 400px;
                            margin: 0px auto;

                            figure {
                                width: 100%;
                                height: 100%;

                                a {
                                    width: 100%;
                                    height: 100%;

                                    img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: contain;
                                    }
                                }
                            }

                        }
                    }
                }
            }
        }
    }

    /* financial scoreboard */
    .fin_Scorecard {
        .smallBg {
            left: -20px;
            width: 90px;
        }

        .bigBg {
            right: -90px;
            top: 200px;
            width: 270px;
        }

        .finListWrap {
            .finListContBtm {
                .esgTableEach {
                    &:first-child {
                        margin-top: 20px !important;
                    }
                }
            }
        }
    }

    /* corporate identity */
    .corporate_identity {
        .headingWrap {
            &.headingWrapC {
                .smallHeading {
                    padding-right: 10px;

                    &::before {
                        content: normal;
                    }

                    &::after {
                        width: 3px;
                        height: 30px;
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        left: auto;
                        transform: none;
                        top: 0;
                    }
                }

                .mainH {
                    text-align: left;
                    position: relative;
                    padding-left: 15px;
                    font-size: 28px;

                    &::before {
                        content: '';
                        width: 3px;
                        height: 100%;
                        top: 0;
                        left: 4px;
                        background-color: #028180;
                    }
                }
            }
        }

        .corpAccContainer {
            .corpAcc {
                .corpAccCont {
                    .col-lg-7 {
                        .corpContRight {
                            display: none;
                        }
                    }

                    .corpContRight.mobView {
                        position: relative;
                        margin-bottom: 30px;

                        .corpImg {
                            width: 100%;
                            height: auto;

                            img {
                                width: 100%;
                                height: 100%;
                                border-radius: 20px;
                            }
                        }

                        .orangeAbsImg {
                            bottom: -20px;
                            left: 50px;
                            width: 35px !important;
                            height: auto;
                            transform: rotate(90deg);
                        }

                        .greenAbsImg {
                            position: absolute;
                            top: -30px;
                            right: 50px;
                            width: 35px !important;
                            height: auto;
                        }
                    }
                }
            }
        }
    }

    /* nisha css start */

    .hBtnWrap {
        .hBtnOne {
            span.hBtnTxt {
                line-height: 14px;
                padding: 14px 22px;
                font-size: 18px;
            }

            span.arrow {
                width: 42px;
                height: 42px;
            }
        }
    }

    .dskBanking {
        display: none;
    }

    .mobBanking {
        display: block;
        .headingWrap {
            .mainH {
                color: #028180 !important;
                span{
                    color: #028180 !important;
                }
            }
            .smallHeading{
                color: #046262 !important;
            }
        }
    }

    .bankingTabSec {
        padding: 60px 0;
    }

    .bankingAcc-content {
        display: none;
    }

    .bankingAcc {
        background-color: #fbfbfb;
        box-shadow: 1px 1px 13px 1px #f1741a5c;
        border-radius: 20px;
        overflow: hidden;

        &:not(:last-child) {
            margin-bottom: 25px;
        }
    }

    .bankingTxt {
        max-width: 100%;
        padding: 46px 27px 25px;

        .headingWrap {
            margin-bottom: 28px !important;
        }

        .bankingImg {
            img {
                border-radius: 10px;
            }
        }

        .hBtnWrap {
            margin-top: 18px;
        }
    }

    .bankingAcc-head {
        position: relative;
        transition: all 0.4s;
        background: linear-gradient(92deg, #FEC241 16.29%, #F79336 93.55%);
        padding: 12px 20px;

        h4 {
            font-size: 20px;
            width: calc(100% - 40px);
            transition: .4s;
            color: #035C57;
        }

        &::after {
            content: "\f107";
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 20px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #0E8281;
            font-family: fontawesome;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }
    }

    .bankingAcc.active {
        .bankingAcc-head {
            &::after {
                content: "\f106";
            }
        }
    }

    /* home esg accordion */

    .driveResTabWrap {
        margin-top: 50px;
    }


    .dskEsgTab {
        display: none !important;
    }

    .dskTabMenu {
        display: none;
    }

    .driveTabcon {
        display: block;
    }

    .hEsgD {
        display: none;

    }

    .hEsgAcc {
        &:not(:last-child) {
            margin-bottom: 25px;
        }

        .esgTabHeader {
            position: static;

            strong {
                font-size: 24px !important;
            }

            .esgTabHeadIconBg {
                width: 46px;
                height: 46px;
                padding: 10px;
            }
        }

        .mobEsgTab {
            display: block;
            border-radius: 10px;
            padding: 10px;
            position: relative;

            &::after {
                content: "\f107";
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 12px;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #239d82;
                font-family: fontawesome;
                font-size: 16px;
                color: #fff;
            }

        }

        &:nth-child(odd) {
            .mobEsgTab {
                background-color: #f2f8ed;
                border: 1px solid #239d82;
            }
        }

        &:nth-child(even) {
            .mobEsgTab {
                background-color: #fef7e9;
                border: 1px solid #fbc189;
            }
        }

        &.active {
            .hEsgD {
                display: block;
                padding: 26px 30px 30px 20px;

            }

            .mobEsgTab {
                border-radius: 10px 10px 0 0;

                &::after {
                    content: "\f106";
                }
            }
        }
    }

    /* nisha css end */

    .drivingRes {
        .headingWrap {
            justify-content: center;
            align-items: center;

            .smallHeading {
                text-align: center !important;
                padding-bottom: 10px !important;
                padding-left: 0 !important;

                &::before {
                    width: 100px !important;
                    height: 3px !important;
                    left: 50% !important;
                    top: auto !important;
                    bottom: -10px !important;
                    transform: translateX(-50%) !important;
                }

                &::after {
                    width: 40px !important;
                    height: 3px !important;
                    top: auto !important;
                    bottom: 0px !important;
                    right: auto !important;
                    left: 50% !important;
                    transform: translateX(-50%) !important;
                }
            }

            .mainH {
                text-align: center !important;

                br {
                    display: none;
                }
            }
        }

        .driveTxtInn {
            p {
                text-align: center;
            }
        }

        .hBtnWrap {
            text-align: center;
        }

        .esgTableEach {
            .esgTabHeader {
                &::after {
                    content: normal;
                }
            }
        }
    }

}

@media (max-width: 840px) {
    .bannerWrap {
        .bannerInner {
            .bannerText {
                .banTxtInn {
                    h2 {
                        font-size: 30px;

                        span {
                            font-size: 35px;
                        }
                    }
                }
            }
        }
    }

    .bodMainBox {
        .bodBoxCont {
            .bodBoxRight {
                padding-left: 0;
            }
        }
    }
}

@media (max-width: 767px) {
    .bannerWrap {
        height: auto;

        &::after {
            background-size: cover;
            background-position: center;
        }

        .bannerInner {
            flex-direction: column;
            padding-right: 0;
            padding-bottom: 100px;

            .bannerImgWrap {
                max-width: 450px;
                width: 100%;
            }

            .bannerText {
                max-width: 100%;
                padding-top: 30px;
            }
        }
    }

    .home {
        .headingWrap {
            margin-bottom: 20px !important;
        }
    }

    /* header */
    header {
        .headerInn {
            .headRight {
                padding-right: 0px !important;
            }
        }
    }

    /* key performance section */
    .keyPerformnc {
        .keyAccContainer {
            .keyAcc {
                .keyAccHead {
                    h4 {
                        color: #035C57;
                        font-size: 18px;
                        font-weight: 500;
                        padding-right: 40px;
                    }
                }

                .keyAccCont {
                    .keySlider {
                        .graphImg {
                            max-width: 350px;
                            height: 300px;
                        }
                    }
                }
            }
        }
    }

    /* financial scoreboard */
    .fin_Scorecard {
        .finListWrap {
            .finListContBtm {
                padding-left: 12px;

                .esgTableEach {
                    &:first-child {
                        margin-top: 0px !important;
                    }
                }
            }
        }
    }

    /* chairman message */
    .ChairmanSec {
        .chairmanSecCard {
            .chairmanRight {
                .chairmanTxt {
                    .chairmanImgWrap {
                        &::before {
                            width: 72%;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .home {
        .headingWrap {
            &.headingWrapC {
                .mainH {
                    font-size: 30px;
                }

                .Para {
                    font-size: 22px;
                }
            }
        }
    }

    /* chairman section */
    .ChairmanSec {
        .chairmanSecCard {
            max-width: 90%;

            .chairmanRight {
                .chairmanTxt {
                    .chairmanImgWrap {
                        &::before {
                            width: 80%;
                        }
                    }
                }
            }
        }
    }

    /* corporate identity */
    .corporate_identity {
        & .headingWrap {
            &.headingWrapC {
                .mainH {
                    font-size: 22px;
                }
            }
        }

        .corpAccContainer {
            .corpAcc {
                .corpAccHead {
                    h4 {
                        font-size: 18px;
                    }
                }

                .corpAccCont {
                    .corpContRight.mobView {
                        .greenAbsImg {
                            top: -15px;
                            right: 20px;
                            width: 22px !important;
                            height: auto;
                        }

                        .orangeAbsImg {
                            bottom: -20px;
                            left: 25px;
                            width: 25px !important;
                        }
                    }
                }
            }
        }
    }

    .bankingAcc-head {
        h4 {
            font-size: 18px;
        }
    }
}

@media (max-width: 480px) {
    .home {
        header {
            .containerMax {
                padding-left: 0px !important;
            }
        }
    }
    .bodMainBox {
        & .bodBoxCont {
            & .bodBoxLeft {
                .bodBoxImg {
                    height: auto;
                }
            }
        }
    }
    header {
        .headerInn {
            .headRight {
                .menuToggleBtn {
                    .barsIcon {
                        width: 35px;
                        height: 35px;
                    }
                }
            }
        }
    }

    /* nisha css start */
    .hBtnWrap {
        .hBtnOne {
            span.hBtnTxt {
                font-size: 16px;
            }
        }
    }

    .bankingTxt {
        padding: 22px 10px 18px;
    }

    /* start home esg */
    .hEsgAcc {
        & .esgTabHeader {
            strong {
                font-size: 20px !important;
                margin-left: 10px !important;
            }
        }
    }

    /* end home esg */

    /* nisha css end */

    /* financial scoreboard */
    .fin_Scorecard {
        .smallBg {
            left: -15px;
            width: 65px;
        }

        .bigBg {
            right: -60px;
            top: 200px;
            width: 150px;
        }

        ul.finTabs {
            li {
                padding: 8px 12px;
                font-size: 15px;
                line-height: 26px;
            }
        }
    }

}

@media (max-width: 400px) {

    /* financial scoreboard */
    .fin_Scorecard {
        ul.finTabs {
            justify-content: space-between;
            gap: 0;

            li {
                font-size: 14px;
                line-height: 24px;
                padding: 8px 10px;
            }
        }
    }
}


@media (max-width: 1199px) {
	.fin_Scorecard {
		.listContBox {
			.finListContBtm {
				.esgTableEach {
					.esgTabHeader {
						&::after {
							background: linear-gradient(90deg, rgba(189, 226, 217, 1) 0%, rgba(234, 243, 214, 1) 400%) !important;
                            /* background: transparent !important; */
						}
					}
				}
			}
		}
	}
}
@media (max-width: 837px) {
	.fin_Scorecard {
		.listContBox {
			.finListContBtm {
				.esgTableEach {
					.esgTabHeader {
						&::after {
							background: linear-gradient(90deg, rgba(189, 226, 217, 1) 0%, rgba(234, 243, 214, 1) 200%) !important;
                            /* background: transparent !important; */
						}
					}
				}
			}
		}
	}
}
@media (max-width: 767px) {
	.esgTabContent.bg_f2f8ed, .esgTabContent.bg_fef7e9, .esgTabContent.bg_fff9f1 {
		.esgTabContentInner {
			border-radius: 0 20px 20px 0 !important;
		}
	}
    .fin_Scorecard {
		.listContBox {
			.finListContBtm {
				.slick-slide {
                    &:nth-child(2n+1){
                        .esgTabHeader {
                            &::after {
                                background: linear-gradient(90deg, rgba(189, 226, 217, 1) 0%, rgba(234, 243, 214, 1) 200%) !important;
                            }
                        }
                    }
				}
			}
		}
	}
}
@media (max-width: 576px) {
	.fin_Scorecard {
		.listContBox {
			.finListContBtm {
				.slick-slide {
                    &:nth-child(2n+1){
                        .esgTabHeader {
                            &::after {
                                background: linear-gradient(90deg, rgba(189, 226, 217, 1) 0%, rgba(234, 243, 214, 1) 150%) !important;
                            }
                        }
                    }
				}
			}
		}
	}
}
.headerDwnldBtn {
    margin-left: 25px;
}
@media screen and (max-width:480px) {
    .headerDwnldBtn {
        margin-left: 10px;
    }
}

