@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

header{
    position: static;
    z-index: 999;
    background-color: white;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 62.5%;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    transition: all .3s ease-in-out;
    /* overflow-x: hidden; */
}

main{
    overflow: hidden;
}


::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--nse-purple);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--nse-yellow);
}



:root {
    /* nse primary color */
    --btn-color: #585858;
    --main-bg-color: #fff;
    --purple-color: #382C79;
    --yellow-color: #EFB31D;
    --orangered-color: #E26C23;
    --red-color: #E22028;
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #dadada;
    --light-gray-color: #eee;
    --light-bg-color: #f7f8fc;

    --nse-purple: #392E7D;
    --nse-orange: #E96F24;
    --nse-red: #E41F28;
    --nse-yellow: #F1B519;

    --nse-light-cyan: #4cd9f5b0;
    --nse-light-purple: #4c3ea7a6;
    --nse-light-orange: #fd7e14c4;
    --nse-light-red: #f33c44a8;
    --nse-light-yellow: #f9c53da8;

    --nse-ex-light-cyan: #0dcaf066;
    --nse-ex-light-purple: #392e7d89;
    --nse-ex-light-orange: #fd7e1461;
    --nse-ex-light-red: #e41f284f;
    --nse-ex-light-yellow: #f1b51952;

    --bg-main-theme: #F3F6F8;
    --bg-secondary-theme: #f7fcff;
    --bs-white: #fff;
    --bs-black: #000;
    --bs-blue: #0d6efd;
    --bs-dark-blue: #5863a6;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0080ff;
    --bs-secondary: #6c757d;
    --bs-success: #18d26b;
    --bs-info: #00b8d4;
    --bs-warning: #ffa800;
    --bs-danger: #ff3f3f;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-light-green: #58baab;

    /* radio  */
    --card-line-height: 1.2em;
    --card-padding: 1em;
    --card-radius: 0.5em;
    --color-green: #558309;
    --color-gray: #e2ebf6;
    --color-dark-gray: #c4d1e1;
    --radio-border-width: 2px;
    --radio-size: 1.5em;
    --ex-light-purple: #F4EFFC;

    /* card shadow */
    --shadow-color1: rgba(255, 255, 255, 0.1);
    --shadow-color2: rgba(50, 50, 93, 0.25);
    --shadow-color3: rgba(0, 0, 0, 0.3);
    --inner-gap: 2.5rem;
    --border-radius-btn: 1rem;
    --gradient-color: -webkit-linear-gradient(left, var(--nse-purple), var(--nse-red));
    --gradient-white-color: -webkit-linear-gradient(left, var(--white-color), var(--nse-red));
}

ul,
li,
p,
h2,
h2,
h3,
h4,
h5,
h6,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* custom predefines */


.section_container {
    width: 88%;
    margin: 0 auto;
    padding: 5px;
}

.text_size1 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: var(--bs-dark);
}

.text_size2 {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: var(--bs-dark);
}

.text_size3 {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: var(--bs-gray-dark);
    line-height: 2.2rem;
}

.para_size {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-align: justify;
    color: var(--bs-gray-dark);
    line-height: 2.2rem;
}

.pad {
    padding: .6rem 2rem;
}

.d_flex_d_col_center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
}

.d_flex_center {
    display: flex;
    align-items: center;
}

.custom_btn {
    padding: .8rem 1.2rem;
    background-color: var(--nse-purple);
    color: var(--white-color);
    font-size: 1.5rem;
    border-radius: .8rem;
    margin: 0;
    border: none;
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.custom_btn:hover {
    transition: all .3s ease;
    background-color: var(--nse-light-red);
}

.pad_t {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.section_heading {
    width: 100%;
}

.section_heading h2 {
    font-size: 2.6rem;
    color: var(--bs-black);
    text-align: start;
    text-align: center;
    margin: 2rem 0rem;
}

.section_heading h2 span {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ===================================================  Universal classes ends here  ================================================ */
/* enquiry now button */
html .njs-sticky-side.image_button_cover.placement-right {
    right: 0;
  }

  html .njs-sticky-side.image_button_cover {
    position: fixed;
    top: 50%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3s cubic-bezier(0, 0, 0, 1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0, 0, 0, 1);
  }

  html .njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px, 0, 0) rotate(-90deg);
    -webkit-transform: translate3d(4px, 0, 0) rotate(-90deg);
  }

  html .njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%, 0, 0) rotate(-90deg);
    -webkit-transform: translate3d(200%, 0, 0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
  }

  html .njs-sticky-side.image_button_cover a {
    padding: 6px 15px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    background-color: #392e7d;
    color: white;
    font-weight: 100;
    top: -106.5px;
    font-family: 'Arial';
  }

  html .njs-sticky-side.image_button_cover a:hover {
    background-color: white;
    color: #392e7d;
    border: 2px solid #acacac;
  }
/* enquiry now button */
/* / =============== navbar section starts ================ / */
.navbar {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: .3rem 0;
}

.main_logo {
    width: 20rem;
    display: block;
    margin-left: 1.4rem;
}

.nav-link {
    font-size: 1.3rem;
    color: var(--bs-gray-dark);
}

.main_logo_mob {
    display: none;
}

.hero_section_nseIcon {
    min-width: 17rem;
    width: 12rem;
}

/* / =============== navbar section end ================ / */

/* ====================== hero starts from here=========================== */


/* / =============== hero section start ================ / */
.hero_section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #392e7de0; */
    background-image: url(../images/banners/GFMP\ Banner.png);
    color: #fff;
    background-position: center;
    height: 86vh;
}
/* .hero_section::before{
    content: "";
    background-color: #392e7dbd;
    width: 100%;
    min-height: 84vh;
    position: absolute;
    right: 0%;
} */


.hero_section_inner {
    border-radius: 4rem;
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 2rem;
    padding: 2rem 0rem;
}

.hero_section_txt_inner {
    display: flex;
    flex-direction: column;
}

.hero_section_txt {
    background-color: #392e7dbf;
    padding: 1.5rem;
    border-radius: 20px;
}

.hero_section_txt_heading {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.nse_line_hero {
    width: 95%;
}

.hero_section_img {
    width: 50%;
}

.hero_section_txt_heading h2 {
    font-size: 2.6rem;
    width: fit-content;
    color: white;
    text-align: start;
}

.banner-logos {
    flex-wrap: wrap;
    display: flex;
    gap: 1rem;
    /* align-items: center; */
}

.banner-logos .inner-logo-img{
    max-width: 230px;
    background-color: white;
    padding: 0rem 1rem 1rem 1rem;
}

.hero_section_txt_heading h5 {
    font-size: 2rem;
    width: fit-content;
}

.hero_section_txt_lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hero_section_txt_list .text_hilight{
    color: #f9c53d;
}


.hero_section_txt_list_cards {
    display: flex;
    width: 100%;
}


.hero_section_txt_list h5 {
    font-size: 1.5rem;
	font-weight: 400;
}

.hero_section_txt_list .afm_logo{
    max-width: 7rem;
    max-height:8rem;
}

.hero_section_txt_list .afm_logo img{
    width: 100%;
    height: 100%;
}




/* / hero list  / */
.hero_sec_content_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-wrap: nowrap;
}

.hero_sec_content_list1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
}

.hero_sec_content_list1>div{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero_sec_content_list1 span {
    font-size: 1.4rem;
    display: flex;
    gap: 1rem;
}

@media (max-width:991px) {
    .hero_section_inner{
        flex-direction: column-reverse;
    }
    .hero_section_img {
        width: 100%;
        margin-block:2rem ;
    }
}

/*  program overview starst frome here */

.program_overview .program_overview_inner{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.program_overview_txt .para_size b{
    color: var(--nse-purple);
}

.program_overview_img{
    max-width: 50%;
    min-width: 30%;
  
}

.program_overview_txt{
    border-radius: 5px;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.program_overview_inner img{
    width: 100%;
}

@media (max-width:991px) {
    .program_overview_img{
        max-width: 100%;
    }
    .program_overview .program_overview_inner{
        flex-direction: column;
        align-items: center;
    }
}
/*  program overview starst frome here */


/* program benefists starts from here  */
.program_banefits_you{
    background-attachment: fixed;
    background-image: url(../images/banners/whitebg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.program_banefits_you .section_heading .para_size{
    text-align: center;
}

.program_banefits_you_cards {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.program_banefits_you_card {
    background-color: white;
    flex-grow: 1;
    min-height: 10vh;
    width: 24%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    scale: 0.9;
    transition: 0.5s ease-in-out;
}

.program_banefits_you_cardIMG {
    border-radius: 50%;
    background-color: var(--nse-ex-light-purple);
    padding: 20px;
    transition: 0.5s ease-in-out;
}

.program_banefits_you_cardIMG img {
    width: 100%;
    height: 100%;
}

.program_banefits_you_card:hover {
 scale: 1;
 box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.program_banefits_you_card:hover .program_banefits_you_cardIMG {
    background-color: var(--nse-purple);
}

@media (max-width:991px) {
    .program_banefits_you_cards {
        flex-direction: column;
    }
    .program_banefits_you_card{
        min-width: 100%;
    }
}

/* program benefists */


/* how will 2 */
#programSchedule .HOW_WILL_schedule_card:nth-child(1) {
    border: 3px solid #585858;
}

.HOW_WILL_schedule_card:nth-child(2) {
    border: 3px solid var(--nse-red);
}

.HOW_WILL_schedule_card:nth-child(3) {
    border: 3px solid var(--nse-orange);
}

.HOW_WILL_schedule_card:nth-child(4) {
    border: 3px solid var(--nse-yellow);
}

.HOW_WILL_schedule_card_copy:nth-child(1) {
    border: 3px solid var(--nse-orange);
}

.HOW_WILL_schedule_card_copy:nth-child(2) {
    border: 3px solid var(--nse-purple);
}

.HOW_WILL_schedule_card_copy:nth-child(3) {
    border: 3px solid var(--nse-yellow);
}

.HOW_WILL_schedule_card_copy:nth-child(4) {
    border: 3px solid var(--nse-orange);
}


#programSchedule .HOW_WILL_card {
    width: 24%;
    height: 7rem;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 1rem;
}


#programSchedule .HOW_WILL_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: row;
}

#programSchedule .HOW_WILL_cardIMG {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--nse-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    min-height: 50px;
    font-size: 20px;
    color: #FFFF;
}

#programSchedule .HOW_WILL_inner {
    width: 100%;
}

#programSchedule .HOW_WILL_data {
    width: 100%;
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}

#programSchedule .HOW_WILL_data_copy {
    width: 100%;
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}

#programSchedule .HOW_WILL_schedule_card {
    font-size: 1.4rem;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    width: 22%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    gap: 1rem;
}

#programSchedule .HOW_WILL_schedule_card_img {
    width: 80px;
    height: 80px;
}

#programSchedule .HOW_WILL_schedule_card_img img {
    width: 100%;
    height: 100%;
}

#programSchedule .HOW_WILL_schedule_card_copy {
    background-color: white;
    font-size: 1.4rem;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    width: 22%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

#programSchedule .HOW_WILL_schedule_card_copy_img {
    width: 80px;
    height: 80px;
}

#programSchedule .HOW_WILL_schedule_card_copy_img img {
    width: 100%;
    height: 100%;
}

@media (max-width:991px) {
    #programSchedule .HOW_WILL_data_copy {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    #programSchedule .HOW_WILL_data{
        flex-direction: column;
        gap: 1rem;
    }
    #programSchedule .HOW_WILL_schedule_card {
        width: 100%;
    }
    #programSchedule .HOW_WILL_schedule_card_copy{
        width: 100%;
    }
}

/* program for strats from here  */

.program_for .program_for_inner{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.program_for_txt h3{
    color: var(--nse-purple);
}

.program_for_txt_list{
    margin-block: 5px;
    display: flex;
    flex-direction: column;
}
.program_for_txt_list div{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.program_for_txt_list div i{
    font-size: 2rem;
    color: var(--nse-purple);
}

.program_for_inner .program_for_img img{
    border: 3rem solid rgb(255, 255, 255);
    border-radius: 5rem 0rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

@media (max-width:991px) {
    .program_for .program_for_inner{
        flex-direction: column-reverse;
    }
}

/* program for ends from here  */


/* =============== evaluation section start ================ */
.evaluation {
    padding: 5rem 0;
    background-image: linear-gradient(180deg, var(--nse-purple), #15002e);
}

.evaluation_inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.evaluation_inner_img {
    width: 35%;
}
.evaluation_inner_img img{
    width: 100%;
    border-radius: 5rem 0rem;
    border: 3rem solid rgb(255, 255, 255);
}

.evaluation_inner_txt {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: var(--inner-gap);
}

.evaluation_inner .section_heading h2,
.evaluation_inner .para_size {
    color: var(--white-color);
}

.evaluation_inner .section_heading h2 span {
    background: var(--gradient-white-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evaluation_inner_txt_cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.evaluation_inner_txt_card {
    padding: 3rem 2rem;
    box-shadow: 0.6em 0.6em 0.1em #d2dce9, -0.5em -0.5em 0em #ffffff;
    border-radius: 3rem;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition: all 1s ease;
    background-color: var(--white-color);
}

.evaluation_inner_txt_cardIcon i {
    font-size: 2.2rem;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evaluation_inner_txt_card .text_size1 {
    text-align: center;
    font-size: 1.4rem;
}

.evaluation_inner_txt ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.evaluation_inner_txt_list {
    padding: 1.2rem 1.2rem;
    box-shadow: #fff 1.95px 1.95px 2.6px;
    border-radius: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 1s ease;
}

.evaluation_inner_txt_list.para_size {
    padding-left: 2rem;
}


@media (max-width:991px) {
    .evaluation_inner {
      flex-direction: column;
    }
    .evaluation_inner_img {
        width: 100%;
    }
    .evaluation_inner_txt{
        width: 100%;
    }
}

/* =============== evaluation section end ================ */


.advannce_financial_modler .section_heading h3{
    color: var(--nse-orange);
}

.advannce_financial_modler_para h3 b{
    color: var(--nse-purple);
}

.advannce_financial_modler_para li{
    display: flex;
    gap: 1rem;
}
.advannce_financial_modler_para li i{
  margin-top: 0.5rem;
}

.advannce_financial_modler_body {
    display: flex;
    gap: 1rem;
}

.advannce_financial_modler_para,
.advannce_financial_modler_img {
    max-width: 70%;
    background-size: cover;

}

.advannce_financial_modler_img {
    max-height: 50vh;
    max-width: 30%;
}

.advannce_financial_modler_img img {
    width: 100%;
    height: auto;
}

.advannce_financial_modler .accordions {
    margin: 0 auto;
}

.advannce_financial_modler .accordion {
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color .5s ease;
    border-radius: 5px;
}

.advannce_financial_modler .accordion:hover {
    border-color: #979797;
}

.advannce_financial_modler .accordion__header {
    cursor: pointer;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
    padding: 1rem;
    color: #666;

}

.advannce_financial_modler .accordion__header:after,
.accordion__header:before {
    content: '';
    position: absolute;
    right: 1.5em;
    width: 2px;
    height: 0.75em;
    background-color: #666;
    transition: all 0.2s;
}

.advannce_financial_modler .accordion__header:after {
    transform: rotate(90deg);
}

.advannce_financial_modler .accordion:has(input:checked) .accordion__header {
    color: #000;
    
}

.advannce_financial_modler .accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;

    * {
        padding: 0 1em 1em;
    }
}

.advannce_financial_modler .accordion input {
    display: none;
}

.advannce_financial_modler .accordion:has(input:checked) {
    border-color: #000;
    background-color: #fff;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.advannce_financial_modler .accordion input:checked~.accordion__header:before {
    transform: rotate(270deg) !important;
    background-color: #000;
}

.advannce_financial_modler .accordion input:checked~.accordion__header:after {
    transform: rotate(270deg) !important;
    background-color: #000;
}

.advannce_financial_modler .accordion input:checked~.accordion__content {
    max-height: 1000px;
}

@media (max-width:991px) {
    .advannce_financial_modler_body {
        flex-direction: column-reverse;
    }
.advannce_financial_modler_para,
.advannce_financial_modler_img {
    max-width: 100%;
}
}
/*  advance finace modler ende  here */

/* learning reasources starts from here  */
.learning_resources_body {
    background-color: var(--nse-purple);
}
.learning_resources_body .learning_resources_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.learning_resources_txt .para_size{
    color: white;
}

.learning_resources_txt{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.learning_resources_body .learning_resources_inner .learning_resources_img{
    max-width: 35%;
}
.learning_resources_body .learning_resources_inner .learning_resources_img img{
    width: 100%;
    border: 3rem solid rgb(255, 255, 255);
    border-radius: 5rem 0rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

@media (max-width:991px) {
    .learning_resources_body .learning_resources_inner{
        flex-direction: column;
    }
    .learning_resources_body .learning_resources_inner .learning_resources_img{
        max-width: 100%;
    }
}

/* learning reasources starts ends from here  */

/* learning gerney starts from here  */
.learning_gerney-grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.learning_gerney-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 27rem;
    justify-content: center;
    align-items: center;
}

.learning_gerney-card:hover {
    background-color: #f7f7f7;
}

.icon {
    /* font-size: 40px; */
    color: var(--nse-purple);
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
}


.learning_gerney-card h3 {
    color: #ff7f0e;
}

.learning_gerney-card h4 {
    text-align: center;
}
/* learning gerney ends from here  */

/* program highlight */

/* =============== program highlight section start ================ */
.program_highlight_inner {
    width: 100%;
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.program_highlight_card {
    width: 29%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program_highlight_card_icon {
    border-radius: 50%;
    position: relative;
}

.program_highlight_card_icon div:nth-child(2) {
    border: 3px solid var(--nse-orange);
}

.program_highlight_card_icon div {
    min-width: 5rem;
    height: 5rem;
    min-height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--nse-purple);
    border-radius: 50%;
    border: .3rem solid var(--nse-purple);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.verline {
    height: 55px;
    width: 2px;
    background-color: var(--nse-orange);
}

.program_highlight_card:hover .program_highlight_card_icon {
    background-color: var(--nse-purple);
}

.program_highlight_card:hover .program_highlight_card_txt {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: .1rem solid var(--nse-orange) !important;
}

.program_highlight_card:hover div {
    color: var(--white-color);
}

.program_highlight_card:hover img {
    display: block;
}

.program_highlight_card_icon img {
    transition: all .8s ease-in-out;
    position: absolute;
    left: 50%;
    bottom: -1.8rem;
    transform: translate(-50%, 0%);
    width: 3rem;
    /* height: auto; */
    display: none;
}

.program_highlight_card_txt {
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: .1rem solid var(--nse-orange);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.program_highlight_card_txt .text_size2 {
    position: relative;
    text-align: center;
    color: var(--nse-purple);
}

.program_highlight_card_txt .text_size3 {
    font-weight: 600;
}


@media (max-width:991px) {
    .program_highlight_inner{
        flex-direction: column;
    }
    .program_highlight_card {
        width: 100%;
    }
}




/* why choose start */
.why-bootcamp-section {
    gap: 1rem;
    width: 100%;
}

.why-bootcamp-section_left {
    width: 49%;
    flex-grow: 1;
}

.why-bootcamp-section_right {
    width: 49%;
    flex-grow: 1;
}

.mobile_view{
    display: none;
}

.mobile_view ol li {
    display: flex;
    gap: 1rem;
}

.mobile_view ol li i{
   margin-top: 3px;
}

.dextop_view ol li {
    display: flex;
    gap: 1rem;
}

.dextop_view ol li i{
   margin-top: 3px;
}


.dextop_view{
    display: flex;
    width: 100%;
    gap: 1rem;
}

.accordion-button {
    font-size: 1.8rem;
}

.accordion-body {
    font-size: 1.4rem;
}

.accordion{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mainheading_view{
        margin-top: -12px !important;
 }

@media (max-width:991px) {
    .why-bootcamp-section{
        flex-direction: column;
    }
    .why-bootcamp-section_left,
    .why-bootcamp-section_right{
        width: 100%;
    }
    .dextop_view{
        display: none;
    }
    .mobile_view{
        display: block;
    }
	
	.mainheading_view{
        margin-top: 0px !important;
    }
	
}

/*================================================= PROGRAM DIRECTOR starts from here ====================================*/

.director_main_inner{
    display: flex;
    gap: 1rem;
    /* background-color: var(--nse-ex-light-orange); */
    padding: 2rem;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    align-items: center;
}
.vertical_line{
    height: 25rem;
    width: 2px;
    background-color: var(--nse-purple);
}

.director_main_inner_img{
    flex-grow: 1;
    overflow: hidden;
    background-color: white;
}

.director_main_inner_img img{
    width: 100%;
}
.director_main_inner_text{
    max-width: 70%;
}

@media (max-width:991px) {
    .director_main_inner{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .vertical_line{
        width: 100%;
        height: 1px;
    }
    .director_main_inner_text{
        max-width: 100%;
    }
}
/*================================PROGRAM DIRECTOR starts ens here =================================*/


/*================= ELEVATE YOUR SKILLS WITH INTERNATIONAL CERTIFICATES======================================= */

.international_certification{
    /* background-image: url(../images/banners/stockexchange.jpg);
    background-repeat: no-repeat;
    background-size: cover; */
}

.international_certification .banner{
    padding-top: 5rem;
    height: 100%;
    width: 100%;
    background: rgb(253,253,255);
    background: linear-gradient(0deg, rgb(253, 253, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}
.international_certification_body{
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.international_certification_body .international_certification_text{
    padding: 2rem;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    max-width: 100%;
    border-radius: 5px;
    align-self: auto;
    /* background-color: white; */
}

.international_certification_body .international_certification_inner{
    max-width: 100%;
    /* padding: 2rem; */
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 1rem;
    justify-content: center;
}

.international_certification_inner_card{
    /* background-color: rgb(255, 255, 255); */
    max-width: 48%;
    display: flex;
    /* align-items: center; */
   
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: relative;
    padding: 2rem;
    border-radius: 5px;
}

.international_certification_inner_card
.international_certification_inner_cardIMG{
    position: absolute;
    max-width: 15%;
    bottom: 2%;
    right: 2%;
    z-index: 1;
    opacity: 1.8;
}
.international_certification_inner_cardIMG img{
    width: 100%;
    opacity: 1;
}
.international_certification_inner_card_msg {
    position: static;
    z-index: 9;
}
.international_certification_inner_card_msg .international_cretification_card_header{
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

@media (max-width:991px) {
    .international_certification_inner_card{
        max-width: 100%;
    }
}




/*================= ELEVATE YOUR SKILLS WITH INTERNATIONAL CERTIFICATES======================================= */

/* program fee starts from here  */

.fee_section .section_container{
    display: flex;
    flex-direction: column;
    min-height: 50vh;
    position: relative;
    overflow: auto; 
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}


/* Apply animation to the fee_price_card */

.fee_program_inner{
    max-width: 100%;
    display: flex;
    /* justify-content: center; */
}
.fee_price_card {
    gap: 3rem;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    display: flex;
    color: white;
    padding: 2px;
    border: 1px solid var(--nse-purple);
    background-color: var(--nse-purple);
    z-index: 10;
    animation: jumpAnimation 1s ease-in-out infinite; /* Apply the jumping animation */
}

.btn_regiter_now{
    padding: 1rem;
    outline: 1px solid white;
    color: white;
    background-color: var(--nse-red);
    border-radius: 30px;
    font-size: 1.6rem;
}

.fee_program_cards {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; 
}

.fee_program_card {
    width: 250px;
    border-radius: 5px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
}
.fee_program_card:hover{
    transition: 0.5s ease-in-out;
    scale: 1;
    outline: 1px solid var(--nse-ex-light-purple);
}

.fee_program_cardIMG {

    width: 8rem;
    padding: 10px;
    border-radius: 50%;
}

.fee_program_cardIMG img {
    width: 100%;
}

@media (max-width:991px) {
    .fee_section .section_container{
        flex-direction: column;
    }
}

/* program fee ends from here  */



/* =============== fmi nse schedule section start ================ */
.about_iim>.section_container>.section_heading{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about_iim_inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.about_iim_img {
    padding-block: 15px;
}

.about_iim_img img {
    border-radius: 5rem 0 5rem 0;
    border: 3rem solid var(--white-color);
}

.about_iim_inner{
    display: flex;
    align-items: center;
}
.about_iim_inner>div{
    min-width: 50%;
   
}
 .iim_cards{
   /* flex-direction: column;*/
   flex-grow: 1;
   max-width: 320px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
 .iim_cards .program_schedule_card{
    justify-content: space-between;
    border-radius: 5px;
    width: 100%;
    display: flex;
    padding: 2rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
 .iim_cards h3{
    text-align: center;
    min-width: 30%;
}
.about_iim_img{
    position: relative;
}
.about_iim_img img{
    z-index: 5;
    position: static;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}



.about_iim_txt{
    border-radius: 5px;
    padding: 2rem;
    text-align: justify;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

@media (max-width:991px) {
    .about_iim_inner{
        flex-direction: column;
    }
}
/* =============== program schedule section end ================ */
.community_advantage{
    max-width: 70%;
}

.community_advantage_body{
    display: flex;
    gap: 3rem;
}

/* communty advantages */
.community_advantage .community_advantage_cards {
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
    flex-direction: column;
    
}

.community_advantage .community_advantage_card {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.community_advantage .community_advantage_card i  {
    font-size: 1.5rem;
}



.community_advantage .community_advantage_card h5 {
    position: relative;
}

@media (max-width:991px) {
    .community_advantage .community_advantage_cards{
        flex-wrap: wrap;
        gap: 3rem;
    }
    .community_advantage_body{
        flex-direction: column;
    }
    .community_advantage_body .community_advantage {
        max-width: 100%;
    }
}

/* =============== fmi nse schedule section start ================ */

.about_nse_inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.about_nse_img {
    /* padding-block: 15px; */
}

.about_nse_img img {
    border-radius: 5rem 0 5rem 0;
    border: 3rem solid var(--white-color);
}

.about_nse_inner{
    display: flex;
    align-items: center;
}
.about_nse_inner>div{
    min-width: 50%;
}
.about_nse_inner>.about_nse_img {
    min-width: 40%;
}
 .about_nse_cards{
    flex-direction: column;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
}
 .about_nse_cards .program_schedule_card{
    border-radius: 5px;
    width: 100%;
    display: flex;
    padding: 2rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
 .about_nse_cards h3{
    text-align: center;
    min-width: 30%;
}
.about_nse_img{
    position: relative;
}
.about_nse_img img{
    z-index: 5;
    position: static;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.program_schedule_data{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-block: 15px;
}

.program_schedule_data .program_schedule_card{
    justify-content: space-between;
    border-radius: 5px;
    width: 100%;
    display: flex;
    padding: 2rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.program_schedule_data .program_schedule_card h3{
    text-align: center;
    min-width: 30%;
}

.about_nse_txt{
    border-radius: 5px;
    padding: 2rem;
    text-align: justify;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

@media (max-width:991px) {
    .about_nse_inner {
        flex-wrap: wrap;
    }
    .about_nse_img{
        padding-block:0px;
    } 
}
/* =============== program schedule section end ================ */

/* ================= contsct starts from here ================ */

.contact 
.section_container{
    background-color: var(--nse-ex-light-cyan);
    border-radius: 5px;
    padding: 1rem;
}

.contact_inner{
    width: 100%;
}

.contact_inner_cards{
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    gap: 3rem;
}

.contact_inner_card{
    background-color: white    ;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    min-width: 240px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.contact_inner_card a{
    color: black;
    font-size: 1.4rem;
    display: flex;
    gap: 1rem;

}
.contact_inner_card a i{
    font-size: 1.6rem;
    color: var(--nse-orange);
}

/* ================= contsct ends from here ================ */

.footer_main .nse_line_footer {
    width: 98%;
    height: .6rem;
    margin: 0 auto;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
}

.disclaimer_inner ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    *{
        font-size: 1.4rem;
    }
}

.disclaimer_inner ul .para_size {
    display: flex;
    gap: .6rem;
}
.disclaimer_inner ul .para_size i {
    color: var(--nse-purple);
}
/* footer starts from here  */

.footer_inner {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}
.social_media ul {
    display: flex;
    gap: 1rem;
}
.social_media ul .footer_social_icons{
    max-width: 30px;
}
.social_media ul .icons img{
    width: 100%;
}

@media (max-width:991px) {
    .footer_inner{
        flex-wrap: wrap;
    }
}


 /* register form modal start */
 #registerModal{
    z-index: 99999999999999999999999;
}
#registerModal .modal-header img{
    width: 8rem;
}
.get_in_touch_inner{
    display: flex;
    flex-direction: column;
    gap: 3rem;
   }
   .get_in_touch_inner .section_heading_main{
    color: var(--bs-white);
   }

   .get_in_touch_innerForm{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
   .get_in_touch_innerForm form{
    width: 70rem;
    min-width: 40rem;
    padding: 2rem;
    padding-top: 0;
    border-radius: .8rem;
    background-color: #fff;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    z-index: 9;
   }
  
   .get_in_touch_innerForm_title h4{
    font-size: 2rem;
    color: #392d7d;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
   }
   /* .get_in_touch_innerForm_title p{
    font-size: 1.5rem;
    color: var(--bs-gray);
    margin: 1rem 0;
   } */
   .get_in_touch_innerForm_input{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
   }
   .get_in_touch_innerForm_input .form-control{
    border-radius: 0px;
    border: none;
    background-color: #f2f2f3;
    font-size: 1.6rem;
    color: #777;
    padding: 1rem 1.2rem;
    border-radius: .3rem;
  }
  .get_in_touch_innerForm_input .form-control:focus{
    width: 100%;
    box-shadow: none;
    outline: none;
    background-color: #f2f2f3;
  }
  .get_in_touch_innerForm_input span{
    display: flex;
    gap: 1.2rem;
  }
  .get_in_touch_innerForm_input select{
    padding: 1rem 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    font-size: 1.6rem;
    border: none;
    color: #777;
  }
  .get_in_touch_innerForm_input .form-control::placeholder{
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #777;
  }
  .get_in_touch_innerForm_input button{
    padding: .8rem 1.6rem;
    color: #fff;
    background-color: #392d7d;
    border: none;
    border-radius: .4rem;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .btn-close{
    font-size: 1.4rem;
  }

  #ajaxResponseCheckoutForm{
    font-size: 1.4rem;
  }
/* register form modal end */

.subpoints div{
	margin-bottom:2px;
	 box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 5px;
    border-radius: 6px;
}


.accordion-button {
    font-size: 1.8rem;
}

.accordion-body {
    font-size: 1.4rem;
}

/* .why-bootcamp-section .choose-inner-wrapper {
    width: 80%;
  } */
#accordionChooseBootchamp2.accordion {
    width: 100%;
}

#accordionChooseBootchamp2 .accordion-item {
    /* border: 1px solid var(--nse-orange); */
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.6rem;
    transition: all 0.3s linear 0s;
    /* background: linear-gradient(to right, #fff4ea, #ecebf3); */
    width: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#accordionChooseBootchamp2 .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

#accordionChooseBootchamp2 .accordion-item .accordion-button {
    font-size: 1.8rem;
    color: var(--nse-purple);
    font-weight: 600;
    padding: 1rem;
}

#accordionChooseBootchamp2 .accordion-item .accordion-body {
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--ss-text-light-primary2);
    font-weight: 400;
    padding: 2.2rem;
    padding-top: 10px;
}

#accordionChooseBootchamp2 .accordion-item .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    /* content: "\2b"; */
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    /* background-image: none; */
    transition: all 0.3s ease;
}

#accordionChooseBootchamp2 .accordion-item .accordion-button:not(.collapsed)::after {
    font-family: "Font Awesome 5 Free";
    /* content: "\f068"; */
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    /* background-image: none; */
    transform: none;
    transition: all 0.3s ease;
}

/* why choose end */



#accordionChooseBootchamp.accordion {
    width: 100%;
}

#accordionChooseBootchamp .accordion-item {
    /* border: 1px solid var(--nse-orange); */
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.6rem;
    transition: all 0.3s linear 0s;
    /* background: linear-gradient(to right, #fff4ea, #ecebf3); */
    width: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#accordionChooseBootchamp .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

#accordionChooseBootchamp .accordion-item .accordion-button {
    font-size: 1.8rem;
    color: var(--nse-purple);
    font-weight: 600;
    padding: 1rem;
}

#accordionChooseBootchamp .accordion-item .accordion-body {
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--ss-text-light-primary2);
    font-weight: 400;
    padding: 2.2rem;
    padding-top: 10px;
    background-color: var(--nse-purple);
    color: white;
}
.accordion-body h6{
    color: white !important;
}
#accordionChooseBootchamp .accordion-item .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    /* content: "\2b"; */
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    /* background-image: none; */
    transition: all 0.3s ease;
}

#accordionChooseBootchamp .accordion-item .accordion-button:not(.collapsed)::after {
    font-family: "Font Awesome 5 Free";
    /* content: "\f068"; */
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    /* background-image: none; */
    transform: none;
    transition: all 0.3s ease;
}

.checklistSubDiv{
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-left: 10px;
	
}


/* skill checlist starts from here -===========================================>>>>>>>>>>>>>>>>>>> */

.skill_checklist_inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}
.skill_checklist_inner_buttons{
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.skill_checklist_inner_cards{
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    /* flex-direction: column; */
    /* align-items: center; */
    gap: 3rem;
    width: 100%;
   }
   .skill_checklist_inner_card{
    flex-grow: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: #15002e31 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
   }

   .skill_checklist_inner_card_span{
    width: 0%;
    height: 100%;
    top: 0%;
    left: 0%;
    position: absolute;
    background-color: var(--nse-purple);
    transition: width 0.5s ease-in-out;
    z-index: -1;
   }

   .skill_checklist_inner_card:hover .skill_checklist_inner_card_span{
    color: white;
    width: 100%;
   }

   .skill_checklist_inner_card:hover{
    color:white;
   }

   .skill_checklist_inner_card:hover .text_size1 p {
    color:white;
   }

   .skill_checklist_inner_content{
    flex-grow: 1;
    max-width: 100%;
   }
    
   @media (max-width:991px) {
    .skill_checklist_inner_cards{
        flex-direction: column;
    }
   }

   .module_content{
    display: flex;
    font-size: 1.2rem;

    border-radius: 5px;
   }
   .module_one_cards{
    width: 100%;
    display: flex;
    /* justify-content: center; */
    gap: 1rem;
    flex-wrap: wrap;
   }
   .module_one_card {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 5px;
    padding: 1rem;
    max-width: 290px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
   .module_one_card ol li{
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    gap: 1rem;
   }
   .module_one_card ol li i{
    margin-top: 0.5rem;
   }

   .module_one_card ol li b{
    font-size: 1.4rem;
   }
   .module_links.active{
    background-color: var(--nse-purple);
   } 
   .active h4{
    color: white;
   }
   .active .text_size1 p {
    color:white;
   }
   


/* updated css code ============================ */
 .text_hilight{
    color: var(--nse-yellow);
    font-size: 2.5rem;
    /*padding-top: 10px;*/
 }
.afm_logo{
    max-width: 65px;
    height: 65px;
}
.img_circle{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--nse-yellow);
    overflow: hidden;
}
.fa-airbnb{
    font-size: 1.8rem;
    color: var(--nse-purple);
}
.ri-openai-line{
    font-size: 1.8rem;
    color: var(--nse-purple);
}
.fa-chart-line{
    font-size: 1.5rem;
    color: var(--nse-purple);
}
[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
    transition-duration: .3s !important;
}





   @media (max-width:991px) {
    .skill_checklist_inner{
        flex-direction: column;
    }
    .skill_checklist_inner_buttons{
        max-width:100%;
    }
    .skill_checklist_inner_content{
        max-width: 100%;
    }
    .module_content{
        justify-content: center;
    }
    .module_one_cards{
        justify-content: center;
        align-items: center;
    }
   .advannce_financial_modler_img {
     text-align: center;
   }
   .advannce_financial_modler_img img {
    width: 45%;
   }
   }
