:root {
    --main-color: #00AEEF;
    --primary:#00AEEF;
    --yellow: #f7e34c;
    --black: #000;
   --dark-gray:#121314;
    --light-gray: #F7FAFC;
    --text-gray: #6E6E6E;
    --drak-gray: #071C27;
    --dark-gray-bg: #121314;
    --white: #fff;
    --gradient1: linear-gradient(120deg, #2ea9e0 0%, #2ea9e0 60%, #2ea9e0 100%);
    --gradient: linear-gradient(120deg, #000, #2ea9e0);

}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--drak-gray);
    font-size: 14px;
}

a {
    text-decoration: none;
    transition: all .5s ease 0s;
    color: var(--main-color);
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h2{
    font-size:1.5rem;
}
p{margin: 0;}
.container{
padding:0 20px;
}
.main-title{
    margin-bottom: 24px;
}
@media (min-width: 1200px) {
    .container {
        margin: 0 auto;
        padding: 0;
    }
}
@media (min-width: 768px) {
    .h2, h2 {
       font-size: 1.75rem;
    }
}
@media (min-width: 1200px) {
    .h2, h2 {
       font-size:2rem;
    }
}
a {
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

a:hover {
    color: var(--main-color);
}


/** Top Links ***/
.top-head {
    background: rgb(255, 255, 255);
    padding: 5px 0px;
    border-bottom: 1px solid #ebebeb;
}

.top-menu li {
    padding: 0px 10px;
    position: relative;
}

.top-menu li:first-child {
    padding-left: 0px;
}

.top-menu li:first-child::before {
    display: none;
}

.top-menu {
    width: 98%;
}

.top-menu ul {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
}

.top-menu ul::-webkit-scrollbar {
    display: none;
}

.top-menu li a {
    color: rgb(124, 124, 124);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.top-menu li a:hover {
    color: var(--main-color);
}

.top-menu li:last-child {
    padding-right: 0px;
}

.form-control:focus,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border-color: inherit;
    box-shadow: none;
}

.select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none;
}

.section-padding {
    padding: 60px 0;
}

.yellow {
    background: var(--yellow);
}

.light-gray {
    background: var(--light-gray);
}

.dark-gray-bg {
    background: var(--dark-gray-bg);
}

.white {
    color: var(--white) !important;
}

.text-center {
    text-align: center;
}

.p-18 {
    font-size: 18px;
    line-height: 28px;
}


.inner-container {
    max-width: 1062px;
    margin: 0 auto;
}

header {
    padding: 16px 0;
    border-bottom: 1px solid #ebe9e9;
}

.top-sec .badge {
    background: var(--yellow);
    position: absolute;
    left: 30px;
    top: 20px;
    color: var(--black);
    font-size: 12px;
    padding: 10px 13px;
}

.top-sec h1 {
    font-size: 32px;
    font-weight: 600;
}

.top-sec h1 a {
    color: var(--black);
}

.top-sec h6 a {
    font-size: 14px;
    color: var(--black);
}

.top-sec h1 a:hover,
.top-sec h6 a:hover {
    color: var(--main-color);
}

.top-sec .location {
    background: var(--yellow);
    padding: 10px 20px;
    border-radius: 80px;
    font-weight: 500;
    display: inline-block;
}

.back-btn {
    border: 1px solid #d1d1d1;
    padding: 6px 10px;
    border-radius: 21px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease-in;
    display: inline-flex;
    background: #fff;
}

.back-btn:hover {
    background: #d1d1d1;
    color: var(--black);

}
.custom-btn {
    background: var(--main-color);
    border-radius: 4px;
    border: none;
    font-size: 18px;
    padding: 13px 45px;
    display: inline-block;
    border: 1px solid transparent;
    transition: all .56s ease;
}
.custom-btn:hover {
    background: var(--white);
    border: 1px solid var(--main-color);
    color: var(--black);
}

.main-head {
    background: rgb(255, 255, 255);
    padding: 20px 15px;
    border-radius: 5px;
}
.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.archive {
    margin-right: 15px;
    position: relative;
}

.archive-btn {
    border: 1px solid rgba(21, 25, 28, 0.2);
    padding: 6px 10px;
    color: var(--dark-gray);
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}

.archive-btn i {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -4px;
}

.archive-list {
    background: rgb(249, 249, 249);
    border: 1px solid rgb(237, 237, 237);
    margin-top: 10px;
    position: absolute;
    z-index: 9;
    top: 27px;
    width: 100px !important;
max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
@media(min-width:576px){
    .archive-list{
        width: 150px !important;
    }
 
}
.archive-list.open {
  max-height: 500px; /* enough to fit content */
  opacity: 1;
}

.archive-list li a {
    padding: 5px 13px;
    margin: 0px;
    display: block;
    font-size: 15px;
    color: var(--dark-gray);
    border-bottom: 1px solid rgb(235, 235, 235);
}

.archive-list li a:hover {
    background: var(--main-color);
    color: var(--white);
}

.goto-bt {
    border: 1px solid rgba(21, 25, 28, 0.2);
    padding: 5.7px 10px;
    font-size: 14px;
    display: inline-block;
    color: var(--dark-gray);
    font-weight: 600;
    border-radius: 6px;
}
.back-bt {
    flex-shrink: 0;
}
.goto-bt img {
    margin-left: 8px;
    vertical-align: bottom;
}
@media screen and (max-width: 575px) {
        .main-head {
        padding: 10px 0px;
    }

    .logo img {
        max-width: 150px;
    }

    .archive {
        margin-right: 5px;
    }

    .archive-btn,
    .goto-bt {
        font-size: 13px;
        padding: 6px 4px;
    }
    .goto-bt img{
        margin-left: 4px;
    }
    .archive-btn i{
        margin-left: 3px;
    }
}

/* Top Content CSS Start Here */
.top-content-wrap {
    /* margin-bottom: 80px;
    border-bottom: 1px solid #e3e3e3; */
    padding-bottom: 40px;
}
.promo-video {
    position: relative;
    padding-top: 56.3%;
    z-index: 9;
}

.promo-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.top-content-wrap figure {
    position: relative;
    margin-bottom: 20px;
}
/* .top-content-wrap figure::before {
    content: "";
    background: url(../img/bt-yellow-symbol-big@2x.png) 0 0 no-repeat;
    width: 150px;
    height: 150px;
    position: absolute;
    left: -45px;
    top: -45px;
    background-size: 100%;
} */

.top-content p {
    color: var(--drak-gray);
    font-size: 14px;
    line-height: 24px;
}

/* Top Content CSS End Here */
/* Sponsor Section CSS Start Here */

.sponsor-sec {
    padding-bottom: 100px;
}

.sponsors li {
    width: 33.333%;
    padding: 20px;
    min-height: 150px;
    text-align: center;
    border-bottom: 1px solid #C7CBD0;
    border-left: 1px solid #C7CBD0;
}

.sponsors li:last-child {
    /* margin: 0 auto; */
    text-align: center;
    border-bottom: none;
}

.sponsors li p {
    opacity: .7;
    font-size: 13px;
}

/* Sponsor Section CSS End Here */
/* Agenda Section CSS Start Here */
.agenda-sec {
    position: relative;
}

.curve-bg {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMzY2IiBoZWlnaHQ9IjYyIiB2aWV3Qm94PSIwIDAgMTM2NiA2MiI+CiAgPHBhdGggaWQ9ImN1cnZlIiBkPSJNMCwwQzQ1Mi4zNDYsNjIsMTE1NC43NjMsNjIsMTM2NiwzMlY2MkgwWiIgZmlsbD0iIzEyMTMxNCIvPgo8L3N2Zz4K);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 65px;
    position: absolute;
    top: -60px;
}

/* .agenda-sec::before,
.agenda-sec::after {
    content: "";
    position: absolute;
    width: 157px;
    height: 454px;
} */

/* @keyframes slide1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 0);
    }
} */

/* .agenda-sec::before {
    background: url(../img/bt-arrow-pattern-left.png) 0 0 no-repeat;
    left: 0px;
    bottom: 40px;
} */

/* .agenda-sec::after {
    background: url('https://akm-img-a-in.tosshub.com/businesstoday/resource/bt-best-banks-summit-2024/img/bt-arrow-pattern-right.png') 0 0 no-repeat;
    right: 10px;
    top: 40px;
} */

/* .agenda-sec h2 {
    color: var(--text-gray);
    font-size: 48px;
} */

.agenda-sec .select2-container--bootstrap-5 .select2-selection--single {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDE2IDE2IiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPgoJPHRpdGxlPmRvd25sb2FkLXN2ZzwvdGl0bGU+Cgk8c3R5bGU+CgkJLnMwIHsgZmlsbDogbm9uZTtzdHJva2U6ICNmZmZmZmY7c3Ryb2tlLWxpbmVjYXA6IHJvdW5kO3N0cm9rZS1saW5lam9pbjogcm91bmQ7c3Ryb2tlLXdpZHRoOiAyIH0gCgk8L3N0eWxlPgoJPHBhdGggaWQ9IkxheWVyIiBjbGFzcz0iczAiIGQ9Im0xNCA1bC02IDYtNi02Ii8+Cjwvc3ZnPg==")
}

/* .program-wrap{
    padding-bottom: 70px;
    border-bottom: 1px solid #313131;
    margin-bottom: 80px;
} */
.agenda-date span {
    font-size: 22px;
    font-weight: 500;
    display: block;
    color: var(--yellow);
}

.agenda-date p {
    font-size: 18px;
    color: var(--white);
}

.agenda-row {
    border-top: 1px solid #232629;
    padding: 50px 0;
}
.agenda-row:last-child{
    padding-bottom: 0;
}

.agenda-details {
    position: relative;

}

.agenda-time {
    font-size: 20px;
    color: var(--white);
}

.top-badge {
    background: var(--yellow);
    border-radius: 60px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1E1E1E;
    position: absolute;
    top: 0;
}

.agenda-details h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
}

.agenda-details p {
    line-height: 26px;
    color: var(--white);
}

/* Agenda Section CSS End Here */

.last-year-head h4{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}
.last-year-head h4 span{
    position: relative;
    display: inline-block;
    padding: 0 29px;
}
.last-year-head h4 span:before,
.last-year-head h4 span:after{
    content: "";
    width: 15px;
    height: 43px;
    border: 5px solid var(--main-color);
    border-right: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.last-year-head h4 span:after{
    left: inherit;
    right: 0;
    border: 5px solid var(--main-color);
    border-left: none;
}

/* Multi Section CSS Start Here */
.about-bank-summit h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
    color: #6E6E6E;
}

.summit-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}

.summit-content .readmore {
    font-size: 15px;
    color: var(--main-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    position: relative;
}

/* .summit-content .readmore:after {
    content: "";
    background: var(--main-color);
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 4px;
} */

/* Articles CSS Start Here */
.bot-article h4 {
    font-size: 28px;

    font-weight: 600;
    margin-bottom: 15px;
}

.bot-article h4 a {
    color: var(--white);
}

.bot-article p {
    font-size: 14px;
    line-height: 21px;
    color: var(--white);
    margin: 0;
    /* opacity: 0.8; */
}

.more-articles {
    border-top: 1px solid #404040;
    padding-top: 30px;
    margin-top: 30px;
}

.article-col figure {
    max-width: 152px;
    width: 100%;
}

.article-col div {
    width: calc(100% - 152px);
    padding-left: 12px;
}

.article-col div p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: normal;
}

.article-col div p a {
    color: var(--white);
}

.article-col div p a:hover,
.bot-article h4 a:hover {
    color: var(--main-color);
}

/* Articles CSS End Here */
hr{
    padding: 0;
    margin: 0;
}
/* Best Banks CSS Start Here */
.bestbanks-sec h2 a {
    font-size: 32px;
    line-height: 44px;
    color: var(--black);
    font-weight: 600;
}

.bestbanks-sec h6 a {
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
}

.bestbanks-sec h2 a:hover,
.bestbanks-sec h6 a:hover {
    color: var(--main-color);
}

.bestbanks-sec .img-wrapper {
    border: 1px solid #838ea4;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    max-width: 200px;
}

.bestbanks-sec img {
    border-radius: 6px;
    width: 100%;
}

.bestbanks-sec .img-wrapper h5 {
    font-weight: 600;
    color: #838ea4;
    font-size: 14px;
}

/* Best Banks CSS End Here */

/* Methodology CSS Start Here */
.methodology h3 {
    font-size: 40px;
    color: #121314;
    font-weight: normal;
    margin-bottom: 20px;
}

.methodology p {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 20px;
}

.methodology .more-text {
    display: inline-block;
    margin-top: 20px;
    position: relative;
}

.read-more-btn {
    border: 1px solid var(--black);
    border-radius: 4px;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}

.read-more-btn:hover {
    background: var(--black);
    color: var(--white);
}

.read-more-btn svg,
.readmore svg {
    transform: rotate(90deg);
    margin-top: -7px;
}

.read-more-btn.active svg,
.readmore.active svg {
    transform: rotate(270deg);
    margin-top: 2px;
    ;
}

/* Methodology CSS End Here */

/* Comparison Chart CSS Start Here */
#comparison-chart .title {
    font: normal normal normal 48px/24px Poppins;
    letter-spacing: 0px;
    color: #9A9A9A;
    opacity: 1;
}

#comparison-chart .btn {
    font: normal normal medium 14px/21px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin-top: 1em;
    border: 1px solid #FFFFFF;
    border-radius: 4px 0px 0px 4px;
}

.bank-group-select {
    font-size: 12px;
    opacity: 0.8;
}

/** remove border radius from all btn in btn-group  except first and last btn */
#comparison-chart .menu>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0 !important;
}

/** remove right border-radius from first btn in btn-group */
#comparison-chart .menu>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/** remove left border-radius from last btn in btn-group */
#comparison-chart .menu>.btn:last-child:not(:first-child),
#comparison-chart .menu>.btn.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

#comparison-chart .menu>.btn:last-child {
    border-radius: 0 4px 4px 0;
}

#comparison-chart .btn-primary {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    color: black;
}


/** hover fix */
#comparison-chart .btn:hover {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    color: black;
}

#comparison-chart .select2-container--bootstrap-5 .select2-selection {
    border: 0;
    background-color: #27292B !important;
    color: #EFC342;
}

#comparison-chart .select2-container--bootstrap-5 {
    max-width: 100%;
}

#comparison-chart .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: #6a6a6a
}

#comparison-chart span.select2-selection.select2-selection--single {
    height: auto;
}

#comparison-chart .bank-name-select-selection {
    letter-spacing: 0px;
    color: #FFFFFF;
    font-size: 12px;
}

#comparison-chart .bank-group-select-selection,
#comparison-chart .bank-group-select {
    letter-spacing: 0px;
    color: #9A9A9A;
    font-size: 13px;
}

#comparison-chart .yellow-box {
    width: 12px;
    height: 12px;
    /* UI Properties */
    background: #F0B32F 0% 0% no-repeat padding-box;
}

#comparison-chart .blue-box {
    width: 12px;
    height: 12px;
    /* UI Properties */
    background: #2D9CDB 0% 0% no-repeat padding-box;
}

#comparison-chart #myChart {
    height: 500px;
}

#comparison-chart .select-help-text {
    font: normal normal normal 12px Poppins;
    letter-spacing: 0px;
    color: #A3A3A3;
    margin-top: 10px;
}

/* Comparison Chart CSS End Here */
/* Report Card Chart CSS Start Here */
.report-chart .title {
    font: normal normal normal 48px/24px Poppins;
    letter-spacing: 0px;
    color: #A3A3A3;
    opacity: 1;
}

.report-chart .btn {
    font: normal normal medium 14px/21px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin-top: 1em;
    border: 1px solid #FFFFFF;
    border-radius: 4px 0px 0px 4px;
}

/** remove border radius from all btn in btn-group  except first and last btn */
.report-chart .menu>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0 !important;
}

/** remove right border-radius from first btn in btn-group */
.report-chart .menu>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/** remove left border-radius from last btn in btn-group */
.report-chart .menu>.btn:last-child:not(:first-child),
.report-chart .menu>.btn.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.report-chart .btn-primary {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    color: black;
}

.report-chart .select2-container--bootstrap-5 {
    max-width: 100%;
}

.report-chart svg,.rankings-chart svg {
    width: 100%;
}

/** hover fix */
.report-chart .btn:hover {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    color: black;
}

.report-chart .bank-name {
    font: normal normal bold 24px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.report-chart .bank-rating-text {
    color: #9A9A9A;
}

.report-chart .bank-rating {
    font: normal normal 600 24px/35px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    min-width: 70px;
}

.report-chart .bank-rating-label {
    font: normal normal normal 12px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.report-chart .section-heading {
    text-align: left;
    font: normal normal normal 20px/24px Poppins;
    letter-spacing: 0px;
    color: #9A9A9A;
    opacity: 1;
}

.report-chart .categorical-ranking-title {
    font: normal normal normal 16px/25px Poppins;
    letter-spacing: 0px;
    color: #9A9A9A;
    font-weight: 500;
}

.report-chart .categorical-ranking-rank {
    font: normal normal 600 20px/30px Poppins;
    letter-spacing: 0px;
    color: #EFC342;
}
#nbfc-report-chart.report-chart .categorical-ranking-rank, #hfc-report-chart.report-chart .categorical-ranking-rank {
    display: none;
}

.report-chart .categorical-ranking-value-with {
    font: normal normal normal 15px/25px Poppins;
    letter-spacing: 0px;
    color: #9A9A9A;
    text-transform: lowercase;
}

.report-chart .categorical-ranking-value {
    font: normal normal bold 24px/32px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    padding-left: 4px;
}

.report-chart .categorical-ranking-item {
    background: #121314 0% 0% no-repeat padding-box;
    border: 1px solid #666;
    border-radius: 4px;
    padding: 1em;
}

.report-chart .financial-row .card {
    border: 1px solid #666;
}

.report-chart .financial-row .card-header {
    background: #1B1A15 0% 0% no-repeat padding-box;

    border-radius: 4px 4px 0px 0px;
    border-bottom: 1px solid #666;
    font: normal normal normal 16px/25px Poppins;
    letter-spacing: 0px;
    color: #E2E2E2;
    text-align: center;
}

.report-chart .financial-row .card-body {
    background: #000 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 4px 4px;
    text-align: center;
}

.report-chart .section-heading-line {
    font: normal normal medium 16px Poppins;
    letter-spacing: 0px;
    color: #9A9A9A;
    opacity: 1;
}

.report-chart .section-heading-value {
    font-family: 'Poppins';
    font-size: 20px;
    letter-spacing: 0px;
    color: #EFC342;
    opacity: 1;
    margin-top: 0.5em;
}

.report-chart .section-heading-value-large {
    font-size: 24px;
    color: #EFC342;
    font-family: 'Poppins';
}

.report-chart hr {
    background-color: #9A9A9A;
}

.report-chart .select2-container--bootstrap-5 .select2-selection {
    border: 0;
    background-color: #27292B !important;
    color: #EFC342;
}

.report-chart .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: #6a6a6a
}

.report-chart #categorical-ranking-value-element {
    text-align: end;
}

.report-chart #bank-logo-report-card,
.report-chart #nbfc-bank-logo-report-card,.report-chart #hfc-bank-logo-report-card {
    width: 58px;
    height: 58px;
    border-radius: 100%;
}

/* Report Card Chart CSS End Here */

/* Ranking Chart CSS Start Here */
.rankings-chart .title {
    font: normal normal normal 48px/24px Poppins;
    letter-spacing: 0px;
    color: #9A9A9A;
    opacity: 1;
}

.rankings-chart .section {
    background-image: url('https://akm-img-a-in.tosshub.com/businesstoday/resource/bt-best-banks-summit-2024/assets/bg-rays.svg');
    background-size: cover;
    background-position-y: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .rankings-chart .section {
        background-size: contain;
    }
}

.rankings-chart .btn {
    font: normal normal medium 14px/21px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin-top: 1em;
    border: 1px solid #FFFFFF;
    border-radius: 4px 0px 0px 4px;
}

/** remove border radius from all btn in btn-group  except first and last btn */
.rankings-chart .menu>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0 !important;
}

/** remove right border-radius from first btn in btn-group */
.rankings-chart .menu>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/** remove left border-radius from last btn in btn-group */
.rankings-chart .menu>.btn:last-child:not(:first-child),
.rankings-chart .menu>.btn.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.rankings-chart .btn-primary {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    color: black;
}

.rankings-chart .select2-container--bootstrap-5 {
    max-width: 100%;
}

/** hover fix */
.rankings-chart .btn:hover {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    color: black;
}

.rankings-chart .select2-container--bootstrap-5 .select2-selection {
    border: 0;
    background-color: #27292B !important;
    color: #EFC342;
    border: 1px solid #9A9A9A;
}

.rankings-chart .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: white
}

.rankings-chart .bank-name-rankings {
    font: normal normal bold 20px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-align: center;
}

.rankings-chart #bank-first-place .bank-name-rankings,
.rankings-chart #nbfc-bank-first-place .bank-name-rankings {
    font: normal normal bold 32px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.rankings-chart .bank-withscore-rankings {
    font: normal normal normal 14px Poppins;
    letter-spacing: 0px;
    color: #A3A3A3;
    text-align: center;
}

.rankings-chart #bank-first-place .bank-withscore-rankings,
.rankings-chart #nbfc-bank-first-place .bank-withscore-rankings,.rankings-chart #hfc-bank-first-place .bank-withscore-rankings {
    font: normal normal normal 20px Poppins;
    letter-spacing: 0px;
    color: #A3A3A3;
}

.rankings-chart .bank-score-rankings {
    text-align: center;
    font: normal normal bold 20px Poppins;
    letter-spacing: 0px;
    color: #fff;
}

.rankings-chart #bank-first-place .bank-score-rankings,
.rankings-chart #nbfc-bank-first-place .bank-score-rankings,.rankings-chart #hfc-bank-first-place .bank-score-rankings {
    font: normal normal bold 32px Poppins;
    letter-spacing: 0px;
}

.rankings-chart #bank-logo-ranking,
.rankings-chart #nbfc-bank-logo-ranking,.rankings-chart #hfc-bank-logo-ranking {
    border-radius: 100%;
    width: 80px;
    height: 80px;
    border: 2px white solid;
}

.tabs-wrap .nav-tabs {
    border-bottom: none;
}
.tabs-wrap .nav-tabs .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 25px;
    border: 1px solid #484848;
    margin-right: 10px;
    border-radius: 5px;
    margin-bottom: 6px;
    min-width: 320px;
}
.tabs-wrap .nav-tabs .nav-link.active {
    background: #f7e34c;
    color: #000;
    border-bottom: none;
}
#nbfc-balance-sheet-chart, #balance-sheet-chart,#hfc-balance-sheet-chart{
    min-height: 250px;
  }

  .tabs-wrap .tab-content>.tab-pane {
    display: block!important;
    opacity: 0!important;
    pointer-events: none!important;
    height: 0px!important;
    overflow: hidden;
  }
  
  .tabs-wrap .tab-content>.active{
    display: block!important;
    opacity: 1!important;
    pointer-events: all!important;
    height: auto!important;
  }
/* Ranking Chart CSS End Here */

/* Responsive */

@media screen and (max-width: 1199px) {
     
    .inner-container {
        max-width: 100%;
    }

    .top-content-wrap figure::before {
        width: 120px;
        height: 120px;
        left: -28px;
        top: -28px;
    }

    .company-bg svg {
        width: 100%;
    }

   
}

@media screen and (max-width: 991px) {
    .top-sec h1 {
        font-size: 26px;
    }

    .custom-btn {
        padding: 10px 35px;
    }

    .sponsors li {
        padding: 15px 10px;
    }

    
    .agenda-date span {
        font-size: 20px;
    }

    .agenda-date p {
        font-size: 16px;
    }

    .agenda-time {
        font-size: 18px;
    }
    .agenda-details h3{
        font-size: 20px;
    }

    .p-18 {
        font-size: 16px;
    }

    .speakers-info ul li .name p {
        font-size: 16px;
    }

    .report-chart .title {
        font-size: 34px;
        line-height: normal;
    }

    .about-bank-summit h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .summit-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .summit-content .readmore {
        font-size: 14px;
    }
  
    .bot-article h4 {
        font-size: 24px;
    }

    .bot-article p {
        font-size: 18px;
        line-height: normal;
    }

    .article-col div p {
        font-size: 14px;
    }

    .bestbanks-sec h2 a {
        font-size: 26px;
        line-height: normal;
    }
    .bestbanks-sec .img-wrapper{
        margin-bottom: 25px;
    }
    .bestbanks-sec h6 a {
        font-size: 15px;
        line-height: normal;
    }
    .bestbanks-sec p{
        font-size: 13px;
        line-height: normal;
    }

    .methodology p {
        font-size: 16px;
        line-height: normal;
    }

    .methodology h3 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .report-chart #bank-logo-report-card,
    .report-chart #nbfc-bank-logo-report-card,.report-chart #hfc-bank-logo-report-card {
        width: 38px;
        height: 38px;
        border-radius: 100px;
    }

    #bt-footer .footer-bot-nav ul li {
        padding-left: 10px;
    }

    #bt-footer .footer-bot-nav ul li a:after {
        right: -7px;
    }
}

@media screen and (max-width: 768px) {

    /* Comparison */
    #comparison-chart .title {
        text-align: center;
        line-height: 1 !important;
        font: normal normal normal 38px Poppins;
        letter-spacing: 0px;
        color: #fff;
        padding: 0.5em 1em;
    }

    #comparison-chart #myChart {
        height: 300px;
    }
    /* Report Card */
    .report-chart .title {
        text-align: center;
        line-height: 1 !important;
        font: normal normal normal 38px Poppins;
        letter-spacing: 0px;
        color: #6E6E6E;
        padding: 0.5em 1em;
    }

    .report-chart .bank-rating-column {
        margin-top: 1em;
    }

    .report-chart #balance-sheet-chart {
        min-height: 300px;
    }

    .report-chart .categorical-ranking-title {
        font: normal normal normal 14px Poppins;
        letter-spacing: 0px;
        color: #9A9A9A;
        font-weight: 500;
    }

    .report-chart #categorical-ranking-value-element {
        text-align: start;
    }

    .report-chart .categorical-ranking-rank {
        font: normal normal 600 18px Poppins;
    }

    .report-chart .categorical-ranking-value-with {
        font: normal normal normal 14px Poppins;
    }

    .report-chart .categorical-ranking-value {
        font: normal normal bold 16px Poppins;
    }

    .report-chart .categorical-ranking-item {
        padding: 0.5em;
    }

    /* Ranking */
    .rankings-chart .title {
        text-align: center;
        line-height: 1 !important;
        font: normal normal normal 38px Poppins;
        letter-spacing: 0px;
        color: #fff;
        padding: 0.5em 1em;
    }

    .rankings-chart .bank-name-rankings {
        font: normal normal bold 16px Poppins;
    }

    .rankings-chart #bank-first-place .bank-name-rankings,
    .rankings-chart #nbfc-bank-first-place .bank-name-rankings {
        font: normal normal bold 20px Poppins;
    }

    .rankings-chart .bank-withscore-rankings {
        font: normal normal normal 14px Poppins;
    }

    .rankings-chart #bank-first-place .bank-withscore-rankings,
    .rankings-chart #nbfc-bank-first-place .bank-withscore-rankings {
        font: normal normal normal 14px Poppins;
    }

    .rankings-chart .bank-score-rankings {
        font: normal normal bold 20px Poppins;
    }

    .rankings-chart #bank-first-place .bank-score-rankings,
    .rankings-chart #nbfc-bank-first-place .bank-score-rankings {
        font: normal normal bold 20px Poppins;
    }

}
.logo-col img{width: 100%;height: auto;}
@media screen and (max-width: 767px) {
        #comparison-chart .bank-name-select-selection{font-size: 16px;}

}
@media screen and (max-width: 767px) {
    #comparison-chart .bank-name-select-selection{font-size: 11px;}
    .top-head {
        padding: 5px 0 0;
    }
    .logo-col img{
        max-width: 240px;
    }

    .custom-btn {
        font-size: 15px;
    }
    
    .top-sec h1 {
        font-size: 24px;
        margin-top: 15px;
    }
 
    .top-sec img {
        width: 100%;
    }

    .more-text a {
        font-size: 14px;
    }

    .top-badge {
        position: inherit;
        margin-bottom: 15px;
        display: inline-block;
    }
    .top-content-wrap {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .top-content-wrap figure::before {
        width: 90px;
        height: 90px;
        left: -18px;
        top: -18px;
    }
    .agenda-row {
        padding: 40px 0;
    }
    .agenda-time {
        margin: 0 0 15px;
    }
    .agenda-details h3 {
        margin-bottom: 15px;
    }

    .speakers-info h4 {
        margin-bottom: 22px;
    }

    .p-18 {
        font-size: 14px;
        line-height: normal;
    }

    /* .agenda-sec::before,
    .agenda-sec::after {
        width: 100px;
        height: 291px;
        background-size: 100%;
    } */
    .main-title svg {
        width: 16px;
    }

    .bot-article p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .bot-article+.speakers-sec {
        padding-bottom: 0;
    }


    .bestbanks-sec img {
        width: 100%;
    }

    .bestbanks-sec .main-title02 img {
        width: auto;
    }


    .last-year-head h4{
        font-size: 35px;
    }
    .last-year-head h4 span:before, 
    .last-year-head h4 span:after{
        height: 35px;
    }

    /* .report-chart {
        margin-top: 0 !important;
    } */

    .report-chart .title {
        text-align: left;
        padding: 0 0 20px;
    }
    .tabs-wrap .nav-tabs .nav-link{
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 6px;

    }

    .curve-bg {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNzUiIGhlaWdodD0iNjIiIHZpZXdCb3g9IjAgMCAzNzUgNjIiPgogIDxwYXRoIGlkPSJjdXJ2ZSIgZD0iTTAsMEMxMjQuMTgsNjIsMzA5LjM1NCw0Mi42MzksMzc1LDMyVjYySDBaIiBmaWxsPSIjMTIxMzE0Ii8+Cjwvc3ZnPgo=);
        height: 107px;
        top: -107px;
    }
}

@media screen and (min-width: 576px) {
    .speakers-info ul li:nth-last-of-type(-n+2) {
        margin-bottom: 0;
    }

    .sponsors li:nth-last-child(-n+3) {
        border-bottom: none;
    }
    .sponsors li:nth-child(3n+1) {
        border-left: none;
    }

    .sponsors li:last-child {
        border-left: 1px solid #C7CBD0;
    }
}

@media screen and (max-width: 575px) {
    header {
        padding: 8px 0;
    }
    .logo-col img{
        max-width: 175px;
    }
    .head-right{
        align-items: center;
    }
    .archive{
        margin-right: 3px;
    }
    .archive-btn{
        padding: 5px;
        font-size: 13px;
    }
    .back-btn{
        display: flex;
        align-items: center;
    }
    .back-btn img {
        height: 13px;
    }
    .section-padding {
        padding: 40px 0;
    }

    .top-sec {
        padding: 15px 0;
    }

    .top-sec .location {
        display: block;
        font-size: 12px;
    }

    .top-sec h1,
    .bestbanks-sec h2 a {
        font-size: 20px;
    }

    .top-content-wrap figure::before {
        width: 60px;
        height: 60px;
        left: -10px;
        top: -10px;
    }
    .top-articles-wrap{
        padding: 30px 0 50px;
    }

   

    .sponsors li {
        width: 50%;
        min-height: 148px;
        padding: 20px 10px;
    }

    .sponsors li:nth-child(2n+1) {
        border-left: none;
    }

    .sponsors li:nth-child(-n+2) {
        border-top: none;
    }

    .sponsors li img {
        max-width: 140px;
    }
    .speakers-info ul li {
        width: 100%;
    }
    .agenda-time {
        font-size: 16px;
    }
    .agenda-date span {
        font-size: 18px;
    }
    .agenda-date p {
        font-size: 14px;
    }
    .speakers-info ul li:last-child {
        margin-bottom: 0;
    }

    .visual-stories .main-title02 img,
    .videos .main-title02 img {
        width: 12px;
    }

    .about-bank-summit h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .summit-content .readmore {
        margin: 0;
    }
    .p-18 {
        font-size: 13px;
    }
    .speaker-carousel h5 span{
        font-size: 13px;
    }
    .bot-article h4 {
        font-size: 18px;
    }
    .bot-article p{
        font-size: 13px;
    }
    .article-col figure{
        max-width: 115px;
    }
    .article-col div {
        width: calc(100% - 115px);
    }
    .article-col div p {
        font-size: 13px;
    }
    .methodology h3 {
        font-size: 26px;
    }

    .methodology p {
        font-size: 14px;
    }

    .curve-bg {
        height: 67px;
        top: -67px;
    }

    .report-chart .title {
        font-size: 25px;
    }
    .tabs-wrap .nav-tabs li {
        width: 100%;
    }
    .tabs-wrap .nav-tabs .nav-link{
        width: 100%;
        margin-bottom: 10px;
    }
    .report-chart.mt-5{
        margin-top: 1rem!important;
    }

    #toggle-btn {
        font-size: 13px;
    }

 
    .bt-text-logo {
        margin-bottom: 15px;
    }

}

@media screen and (max-width: 375px) {
    .logo-col img{
        max-width: 137px;
    }
    .back-btn {
        padding: 5px;
        font-size: 13px;
    }

    .back-btn img {
        margin-left: 5px;
    }

    .custom-btn {
        font-size: 14px;
        padding: 8px 25px;
    }

    .curve-bg {
        height: 54px;
        top: -54px;
    }
}



/*** Stories ***/
h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-gray);
}
h3 a{
    color: var(--dark-gray);  
}

h3 a:hover{
    color: var(--main-color);
}
.btn-more{
    background: var(--gradient);
    color: var(--white);
    padding: 8px 12px;
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
}
@media(min-width:992px){
    .btn-more{
    font-size: 15px;
    }
      
}
.btn-more:hover{
    color: var(--white);
    opacity: 0.8;

}
.stories-sec{
background: var(--white);
background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
background-size: 20px 20px;
margin-bottom: 0;
}
@media(min-width:992px){
    .stories-sec{
       /* margin-bottom: -40px;  */
    }
}
.stories-sec img,.bestbanks-sec img,.top-articles-wrap img {
    border-radius: 6px;
    width: 100%;
    display: block;
    margin: 6px 0 0 0;
}
.top-sec p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}
.stories-sec h3 a,.stories-sec h3 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--black);
    font-weight: 600;
}
@media screen and (max-width: 991px) {
    .stories-sec h3 a,.stories-sec h3{
    font-size: 24px;
    }
    .top-sec p {
    font-size: 16px;
}
}
@media screen and (max-width: 767px) {
    .stories-sec h3 a,.stories-sec h3{
    font-size: 20px;

    }
    .top-sec p {
    font-size: 16px;
}
}
.stories-sec h4,.stories-sec h4 a {
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
    font-weight: 500; 
}
  @media (max-width: 767px){
    .stories-sec h4{
        font-size: 16px;
    }

   }


.stories-sec h3 a:hover,
.stories-sec h4 a:hover{
    color: var(--main-color);
}

.stories-sec .img-wrapper {
    border: 1px solid #838ea4;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
}
.btn-arrow{
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;  
  border-left: 8px solid white;
  margin-left: 6px;
}
/** Videos ***/

.event-video-carousel {
    padding-bottom: 50px;
    padding-top: 60px;
    margin-top: -62px;
    /* margin-top: -68px; */
}

.event-video-carousel .swiper-button-prev.swiper-button-disabled,
.event-video-carousel .swiper-button-next.swiper-button-disabled{
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
    background: inherit;
}


.event-video-carousel .swiper-button-prev,
.event-video-carousel .swiper-button-next{
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 15px;
    position: absolute;
    top: 22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
}


.event-video-carousel .swiper-button-prev:after,
.event-video-carousel .swiper-button-next:after{
    display: none;
}


.event-video-carousel .swiper-button-prev,.next-prev-section .swiper-button-prev {
    left: inherit;
    right: 55px;
    transform: rotate(180deg);
}

.event-video-carousel .swiper-slide h5 {
    font-size: 15px;
    line-height: normal;
}

.event-video-carousel .swiper-slide h5 a {
    color: var(--white);
}
.event-video-carousel .swiper-slide h5 a:hover{
    color: var(--main-color);
}
.vs-carousel .swiper-slide figure,
.swiper-slide .video-thumb {
    margin-bottom: 8px;
    position: relative;
}
.swiper-slide .video-thumb img{border-radius: 6px;}
.event-video-carousel .swiper-wrapper{
height: auto;
}
.event-video-carousel svg, .event-video-carousel svg {
    fill: var(--white);
    outline: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 0;
    top: auto;
    height: 3px;
    background: #404040;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00b3fe;
    /* font-size: 30px; */
}

/* .play-icon:before {
    content: "";
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

} */

img {
    max-width: 100%;
}

.section-space{
    padding: 40px 0;
}
@media (min-width: 1200px) {
.section-space{
    padding: 60px 0;
}
}
.primary-color{
    color: var(--primary);
}

/** Gallery**/
/* #mainGallery{min-height: 250px;background: #e9e9e9;}
#thumbGallery{min-height: 70px;} */
.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
    display: none;
}

.swiper .swiper-button-prev.swiper-button-disabled svg, .swiper .swiper-button-next.swiper-button-disabled svg {
    fill: #ccc;
}

.photo-gallery .swiper .swiper-button-prev.swiper-button-disabled, .photo-gallery .swiper .swiper-button-next.swiper-button-disabled {
    background:#fff;
    opacity: 1;
    border: 1px solid #cbcbcb;
    /* display: none; */
}
.photo-gallery .swiper .swiper-button-prev {
    transform: rotate(180deg);
    left: 10px;
}
.photo-gallery .swiper .swiper-button-prev svg, .photo-gallery .swiper .swiper-button-next svg {
    fill: #fff;
    outline:0;
}
.photo-gallery .swiper-button-prev.swiper-button-disabled svg{
    fill: #ccc;
}

    

.photo-gallery .swiper-pagination-fraction {
    color: #fff;
    font-size: 12px;
    background: #000;
    margin: 0 auto;
    width: auto;
    padding: 3px 5px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.photo-gallery {
    position: relative;
}

.photo-gallery .swiper-slide.swiper-slide-thumb-active img {
    border: 2px solid #D141FF;
}
/* .photo-gallery .mySwiper .swiper-slide img{
        height: 65px;
} */
.photo-gallery .swiper-thumbs .swiper-slide img {
    height: 70px;
    object-fit: cover;
}
@media(min-width:768px){
    .photo-gallery .swiper-thumbs .swiper-slide img{
        height: 100%;
        object-fit: cover;
    }
}
.photo-gallery .swiper .swiper-button-prev,
.photo-gallery .swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    position: absolute;
    top: calc(50% +  10px);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery .swiper .swiper-button-prev.swiper-button-disabled,
.photo-gallery .swiper .swiper-button-next.swiper-button-disabled {
    background: #fff;
    opacity: 1;
    border: 1px solid #cbcbcb;
}

.photo-gallery .swiper .swiper-button-prev {
    transform: rotate(180deg);
    left: 10px;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}
.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0 0 0;
}

@media(min-width:992px){
   .photo-gallery {
    position: relative;
    max-width: 900px;
    /* padding: 0 40px; */
    margin: auto;
} 
}
.photo-gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */

}

/** Banner css **/
.hero-banner{
    background: var(--gradient);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner-inner{
    position: relative;
    z-index: 2;
}

/* .hero-banner::after{
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image: radial-gradient(#f1f1f1 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;

} */

/* Animation */
/* @keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
} */
 .hero-banner h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
   
    text-shadow: rgb(94 5 106) 0px 3px 3px;
}
@media(min-width:991px){
    .hero-banner{
       padding: 60px 0 60px 0; 
    }
    .hero-banner h1 {
  font-size: 42px;
    }

}
.banner-info-sec{
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
     text-align: center;   
}
.banner-info,.banner-info p{
    color: var(--white);
    font-size: 16px;
     margin-bottom: 0;
     line-height: 1.6;   
}
.hero-img-sec{
    position: relative;
    height: 100%;
}
.banner-img{

    max-width: 300px;
    width: 100%;
    margin: auto;
    display: flex;
    position: relative;
    /* margin-bottom: -40px; */
    z-index: 2;
}
@media (min-width: 576px) {
       .banner-img{
         max-width: 400px;

    } 
}
@media (min-width: 992px) {
    .banner-img{
        max-width: 400px;
     
    }
    .banner-info-sec{
        /* padding-top: 0; */
        text-align: inherit;
    }

}
@media (min-width: 1200px) {

  .banner-img {
    max-width: 600px;
  }
}
.banner::before{
    background: rgb(17, 93, 152, 0.1);
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top:0;
    z-index: 1;
}


/**Partner Logo ***/
.event-sponcers{
background: var(--white);
}
.partner-logo {
    width: 100%;
    background: #fff;
    padding: 16px 10px;
    /* border: 1px solid #e5e5e5; */
    /* border-right: 1px solid #e5e5e5; */
    /* border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px; */
}


.partners-name {
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: var(--black);
    opacity: .7;
    margin-bottom: 4px;
    /* min-height: 36px; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.partner-logo img {
    margin: 0 auto;
    max-width: 160px;
    width: 100%;
}


/* .event-sponcers {
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
} */



@media screen and (max-width: 575px) {
    .partner-logo img {
    margin: 0 auto;
    max-width: 140px;
    width: 100%;
}
    .partner-logo{
        padding: 10px;
    }
    .partner-logo span {
        font-size: 13px;
        font-weight: 500;
    }
}

/** Footer css start here ****/
.ftr_nav_lnk,.ftr_nav_lnk:before{-webkit-transition:.3s ease-in-out;-ms-transition:.3s ease-in-out;-o-transition:.3s ease-in-out}.bt_ftr_wrp{font-family:"Poppins",verdana,trebuchet ms,arial,helvetica, sans-serif;background-color:#181818;padding:0}.ftr_cnt{align-items:flex-start;display:flex}.ftr_lhs{flex:0 0 280px;flex-shrink:0;max-width:280px}.ftr_rhs{width:calc(100% - 280px)}.ftr_nav_itm{margin:0 0 30px}.ftr_nav_ttl{color:#fff;font-size:16px;line-height:24px;margin:0 0 8px;text-transform:uppercase}.ftr_nav_ul{display:flex;flex-wrap:wrap}.ftr_nav_li{padding:0 24px 8px 0}.ftr_nav_lnk{color:#a4a4a4;display:inline-block;font-size:14px;line-height:21px;padding:0 0 0 15px;position:relative;transition:.3s ease-in-out}.ftr_btm_txt,.ftr_scl_ttl{font-size:12px;line-height:20px;color:#a4a4a4}.ftr_nav_lnk:after{content:'';display:flex;background:url('https://akm-img-a-in.tosshub.com/businesstoday/resource/img/bt_icn_grey.svg') center center/contain no-repeat;height:10px;width:10px;position:absolute;left:0;top:4px}.ftr_nav_lnk:before{content:'';left:0;bottom:-3px;width:100%;height:2px;background:#666;position:absolute;transform:scaleX(0);transition:.3s ease-in-out}.ftr_nav_lnk:hover:before{transform:scaleX(1)}.ftr_nav_lnk:hover{color:#ddd}.lts_str_lst .ftr_nav_li{flex:0 0 25%;margin:0 0 20px;max-width:25%}.ftr_lhs_lgo{display:inline-block;margin:0 0 40px}.ftr_scl_ttl{display:block;margin:0 0 12px}.ftr_scl_ul{align-items:center;display:flex}.ftr_scl_li{margin:0 12px 0 0}.ftr_scl_lnk{align-items:center;display:flex;justify-content:center;border-radius:50%;-webkit-transition:.3s ease-in-out;-ms-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.ftr_scl_lnk:hover{box-shadow:0 2px 8px rgba(255,255,255,.3);transform:translateY(-5px)}.ftr_btm_wrp{border-top:1px solid #a4a4a4;padding:20px 0}.ftr_btm_ttl{color:#a4a4a4;font-size:11px;line-height:18px;margin:0 0 2px}.ftr_btm_cnt{align-items:center;display:flex;justify-content:space-between}.ftr_btm_rhs{display:flex;flex-direction:column;flex:0 0 100px;max-width:100%}.bt_txt_wrp{padding:12px 6px 60px}.bt_txt_ul{align-items:center;display:flex;overflow-x:auto;-ms-overflow-style:none;scrollbar-width:none;justify-content: space-between;}.bt_txt_ul::-webkit-scrollbar{display:none}.bt_txt_li{display:flex;flex-shrink:0;padding:0 20px 0 0}.bt_txt_lnk{display:inline-blocks}@media (max-width:1024px){.lts_str_lst .ftr_nav_li{flex:0 0 33.3%;max-width:33.3%}}@media (max-width:767px){/*.bt_ftr_wrp{padding:0 20px}.bt_ftr_wrp.bt_ftr_gap{padding-bottom:90px;}*/.ftr_cnt{flex-direction:column;flex-wrap:wrap}.ftr_lhs{flex:0 0 100%;max-width:100%}.ftr_rhs{margin:40px 0 0;width:100%}.ftr_lhs_lgo{margin-bottom:20px}.ftr_nav_li{flex:0 0 50%;max-width:50%}.lts_str_lst .ftr_nav_li{flex:0 0 50%;max-width:50%;margin:0}.ftr_btm_rhs{margin:0 0 0 50px}.ftr_nav_ttl{color:#fff;margin-bottom:16px}.ftr_nav_lnk:after{filter:invert(.5)}.ftr_nav_lnk{color:#777;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;padding-left:18px}.ftr_btm_wrp{padding:12px 0}.bt_txt_wrp{padding-bottom:30px; padding-left: 20px;padding-right: 20px;}}

.bottom-link{
    border-top:1px solid #a4a4a4;
        padding: 20px 0;
}
.footer-bot-nav {
    display: inline-block;
    width: 100%;
    /* border-bottom: 1px solid rgb(70, 73, 78); */
}
.footer-bot-nav ul {
    padding: 0px 0px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* .footer-bot-nav ul li {
    width: auto;
    display: inline;
    padding-left: 35px;
} */
.footer-bot-nav ul li {
flex: 1 0 auto;
position: relative;
display: flex;
justify-content: space-evenly;
}
.footer-bot-nav ul li:first-child {
    padding-left: 0px;
}
.footer-bot-nav ul li a {
    font-size: 14px;
    line-height: 20px;
    color: #ddd;
    position: relative;
    transition: all 0.5s ease 0s;
}

/* .footer-bot-nav ul li a::after {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 1px;
    height: 13px;
    position: absolute;
    right: -50px;
    top: 4px;
} */

.footer-bot-nav ul li::after {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 1px;
    height: 13px;
    position: absolute;
    right: 0;
    top: 4px;
}
.footer-bot-nav ul li:last-child::after{
    display: none;
}
/* .footer-bot-nav ul li:last-child a::after {
    display: none;
} */

.footer-bot-nav ul li a::before{
    content: '';
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #666;
    position: absolute;
    transform: scaleX(0);
    transition: .3s ease-in-out;
}
.footer-bot-nav ul li a:hover::before{
transform: scaleX(1);
}
.footer-bot-nav ul li a:hover {
    color: #fff;
}
@media(max-width:1200px){
    .footer-bot-nav ul li a{
        font-size: 13px;
        text-align: left;
    }
    /* .footer-bot-nav ul li {
        padding-left: 10px;
    } */
    /* .footer-bot-nav ul li a::after {
        display: none;
    } */
}
@media screen and (max-width: 767px) {
    .bottom-link{
        padding: 7px 0;
    } 
   .footer-bot-nav ul {
        justify-content: flex-start;
    }
    .footer-bot-nav ul li {
        justify-content:flex-start ;
        width: 50%;
        padding: 5px 5px 5px 0px;
    }
    .toprow ul.social li {
        margin-left: 15px;
    }
    .footer-bot-nav {
        padding: 0px;
    }
    /* .footer-bot-nav ul li a::after {
        display: none;
    } */
    .footer-bot-nav ul li::after {
        display: none;
    }
}
/** Footer css end here ****/

.magzine-box{
    background: #9d9d9d;
    max-width: 210px;
    margin: 0 auto;
    height: 32px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    position: relative;
}
.magzine-box::before{
    width: 19px;
    height: 23px;
    content: "";
    background: url(https://akm-img-a-in.tosshub.com/sites/all/themes/itg/images/riban-icon-right.png) no-repeat 50%;
    position: absolute;
    left: 0;
    top: -23px;
}
.magzine-box::after{
    width: 19px;
    height: 23px;
    content: "";
    background: url(https://akm-img-a-in.tosshub.com/sites/all/themes/itg/images/riban-icon-left.png) no-repeat 50%;
    position: absolute;
    right: 0;
    top: -23px;
}
.heading-mb-0 h6{margin-bottom: 2px;}



/** Agenda***/
.tl-event li {
    position: relative;
    margin-bottom: 40px;
}

.tl-event li .timeline-img {
    overflow: hidden;
    border-radius: 11px;
}
.tl-event li{border-bottom: 2px dashed rgb(68, 68, 68); padding-bottom: 30px;}

.tl-event li:last-child{padding-bottom: 0;margin-bottom:0;}
.tl-event li .timeline-date .fa-clock {
    margin-right: 6px;
    font-size: 15px;
}

.event {
    padding-left: 30px;
}

.tl-event li .timeline-img {
    overflow: hidden;
    border-radius: 11px;
}

.tl-event li .timeline-img img {
    width: 100%;
}

/* .tl-event .figure-box img {
    height: 75px;
    width: 75px;
    margin-right: 15px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgb(47 167 223 / 73%);
} */

.tl-event .heading-box h6 {
    font-size: 15px;
    font-weight: 600;
    color: #f1f1f1;
}

.tl-event .heading-box em {
    font-size: 12px;
    color: #ddd;
    font-style: normal;
    font-weight: 400;
    display: block;
    margin-top: 3px;
}
.event-schedule h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.t-box{
    border-left:1px solid #ccc;
    padding: 0px 8px;
   font-size: 16px;
   height: 20px;
   line-height: 20px;
   margin: 7px 0 0 8px;
   color: var(--white);
   white-space: nowrap; 
}
  @media(max-width:575px){
    .t-box{
    margin: 2px 0 0 8px;
      font-size: 14px;
         height: 16px;
   line-height: 16px;
    }

   }
.event-schedule h4 a{
    color: #fff;
}
@media screen and (max-width: 767px) {
    .timeline-content h4 {
        font-size: 17px;
    }
}
@media screen and (max-width: 991px) {
    .tl-event .figure-box img,
    .author-info .author-img img {
        max-width: inherit;
    }
}
@media screen and (max-width: 575px) {
     .tl-event::before {
        display: none;
    }

    .timeline-content span {
        text-align: center;
        font-size: 13px;
    }

    .timeline-content h4 {
        text-align: left;
        font-size: 15px;
    }

    .tl-event li {
        margin-bottom: 24px;
        padding-bottom:24px;
    }


    /* .tl-event li .timeline-date {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .tl-event li .timeline-date br {
        display: none;
    }

    .tl-event li .timeline-date::after {
        border-right: 19px solid transparent;
        border-left: 19px solid transparent;
        border-top: 16px solid rgb(0, 179, 254);
        bottom: -35px;
        right: inherit;
    } */
}
@media screen and (max-width: 767px) {
    .stories-sec h3 a, .stories-sec h3, h3 {
        font-size: 20px;
    }
    .bestbanks-sec h3{
margin-top: 8px;
    }
}

.categorical-ranking-icon{min-width: 21px;}
#hfc-balance-sheet-chart{min-height: 200px;}

/** Agend**/
.speakers-sec{
background: var(--white);
/* background-image: radial-gradient(#dcdcdc 1px, transparent 1px); */
/* background-size: 20px 20px; */
}
.sp-col figure {
    margin: 0 0 12px;
    overflow: hidden;
    /* border: 1px solid red; */
    /* max-width: 250px; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    position: relative;
    
}
.sp-info{
    min-height: 90px;
    margin-bottom: 12px;
}
@media(min-width:767px){
  .sp-info{
    min-height: 60px;
}  
}
.sp-col figure::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    transform: translateY(0);
    /* transform: translateY(50%); */
    max-width: 350px;
    width: 100%;
    height: 90%;
    background: linear-gradient(135deg, #2ea9e0, #1b7eb6);;
    border-radius: 120px 120px 0px 0px;
}

.sp-col:hover figure:before {
    background: linear-gradient(180deg, #03a4d9 12.62%, #6dd1ff 74.57%);
}
.sp-col:hover span{
    color: #000;
}
.sp-col figure{
    overflow: hidden;
}
.sp-col figure img{
    position: relative;
}

.sp-col h4 {
    font-size: 15px;
    color: #333;
    text-align: center;
    transition: all .5s ease 0s;
    margin-bottom: 4px;
}

.sp-col span {
    text-align: center;
    display: block;
    font-size: 12px;
    color: #555;
}
@media(min-width:767px){
   .sp-col h4{
    font-size: 17px;
   }
   .sp-col span{
    font-size: 13px;
   }
}
/* .sp-col:hover h4 {
    color: #9b5bff;
} */
 