/* width */
::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--bs-gray); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--light-gray-color); 
  }

.courses-section{
    /* width: 100%; */
    min-height: 50vh;
    /* background-color: #eee; */
    display: flex;
    align-items: flex-start !important;
    justify-content: space-between;
    gap: 5rem;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.side__search__box p,
.side__search__box button{
    font-size: 1.6rem ;
    color: var(--bs-dark);
}
.side__search__box .search-list .form-check{
    display: flex;
    /* align-items: center; */
    gap: 1rem;
}
.side__search__box .slidecontainer,
.side__search__box p{
    font-size: 1.3rem;
    color: var(--bs-gray);
}
.side__search__box .form-check-label{
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--bs-gray);
}
.side__search__box{
    /* min-height: 20vh; */
    width: 30%;
    /* padding: 1.2rem; */
    /* border-right: .1rem solid #dadada; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: .6rem;
}

.search-list{
    padding: .5rem ;
}

/*  */

.coursedata_banner_search{
    width: 25%;
    position: absolute;
    top: 50%;
    right: 5rem;
    transform: translate(0, -50%);
    background-color: var(--white-color);
    padding: 1.6rem;
    border-radius: .6rem;
}
.coursedata_banner_search_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.coursedata_banner_search_input{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.coursedata_banner_search_input label{
    font-size: 1.4rem;
    color: var(--bs-gray-dark);
}
.coursedata_banner_search_input select{
    font-size: 1.2rem;
    color: var(--bs-gray-dark);
    padding: 1rem;
    border-radius: 1rem;
    border-color: var(--gray-color);
}
.coursedata_banner_search_input select option{
    padding: .6rem .8rem;
    font-size: 1.2rem;
}

/*  */





.course_database_cards_main{
    width: 100%;
    max-height: 100%;
    /* overflow-y: auto; */
    /* scrollbar-width: thin; */
    padding: 0 .6rem;
}

.course_database_cards_main_inner{
    width: 100%;
      margin-top: 2rem;
}
.course_database_cards{
    width: 100%;
    display: flex;
    /* justify-content: space-between; */

    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 0 auto;
}
.course_database_card{
    width: 32%;
    background-color: #fff;
    border-radius: .6rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.2rem;
    /* height: fit-content; */
}
.course_database_card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/* .course_database_card a{
    width: 100%;
    text-decoration: none;
    color: #272c37;
} */
/* .course_database_card a:hover{
    text-decoration: none;
    color: #272c37;
} */
.course_database_card_img{
    width: 100%;
    height: 21rem;
    background: #ffcbcd;
    background-image: radial-gradient(circle, #fffcf3 18%, #FFCBCD 63%, #FFCBCD 100%);
    background-position: 4px -1px;
    background-size: 152% 130%;
    border-radius: .6rem 0 0 .6rem;
    object-fit: cover;
}
.course_database_card_img img{
    width: 100%;
    height: 100%;
}
.course_database_card_popup_txt{
    display: flex;
    padding: .6rem;
    border-radius: .6rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    gap: .6rem;
    align-items: center;
    position: absolute;
    top: .5rem;
    /* width: 25.5rem; */
}
.course_database_card_content{
    padding: 1.2rem;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: fit-content;
}
.course_database_card_popup_txt_logo{
    width: 8rem;
    min-width: 3.2rem;
    /* height: 3.2rem; */
    
}
.course_database_card_popup_txt_text h4{
    margin: 0;
    font-size: 1rem;
}
.course_database_card_popup_txt_logo img{
    width: 100%;
    height: 100%;
}
.course_database_card_content_inner{
    width: 100%;
}
.course_database_card_content_heading{
    font-size: 1.6rem;
    margin: 1rem 0;
    /* margin-top: 1.3rem; */
    color:var(--bs-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.course_database_card_content_list{
    list-style: none;
    padding: 0;
    width: 100%;
    line-height: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    height: 10rem;
    overflow-y: auto;
}
.course_database_card_content_list li{
    color: var(--bs-gray);
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    gap: .4rem;
    line-height: 1.6rem;
}
.course_database_card_content_list li i,
.course_database_card_content_btmTXT p i{
    color: var(--nse-orange);
    font-size: 1.4rem;
    margin-right: .8rem;
}

.course_database_card_content_btm{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.course_database_card_content_btmTXT{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.course_database_card_content_btmTXT p{
    font-size: 1.3rem;
    color: var(--bs-dark);
    margin: 0;
    display: flex;
    gap: .4rem;
}
.course_database_card_content_btmTXT p span{
    font-weight: 500;
}
.course_database_card_content_btm_duration{
    width: 65%;
}
.course_database_card_content_btm_duration h6{
    margin: 0;
    font-size: .8rem;
    color: #51565e;
    font-weight: 400;
}
.course_database_card_content_btmBTN{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.course_database_card_content_btm_btn{
    font-size: 1.4rem;
    font-weight: 600;
    width: 48.5%;
}
.course_database_card_content_btmBTN .custom_btn:first-child{
    border: .1rem solid var(--gray-color);
    background-color: transparent;
    color: var(--black-color);
}
.course_database_card_content_btmBTN .custom_btn:last-child{
    background-color: var(--nse-red);
}








 /* ============ navbar start ============  */

 header{
    width: 100%;
    background-color: var(--bs-white);
    position: fixed;
    z-index: 9999999999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .ss_navbar_inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
  }
  .ss_navbar_inner_logo{
    width: 130px;
    /* height: 5rem; */
  }
  .ss_navbar_inner_logo img{
    width: 100%;
    height: 100%;
  }
  .ss_navbar_inner_links{
    width: 60%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
  }
  .ss_navbar_inner_links ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .ss_navbar_inner_link a{
    text-decoration: none;
    font-size: 16px;
      font-weight: 600;
      color: #6c757d;
  }
  .ss_navbar_inner_link button{
    font-size: 16px;
    color: #fff;
    border: none;
    outline: none;
  }
  #dy_slide_banner{
    padding-top: 12.3vh;
    position: relative;
    /* top: 12vh; */
  }
   /* ============ navbar end ============  */
  /* ================================= community contact section start ============================ */
.community_contact_main{
    width: 100%;
    padding: 5rem 0;
}
.community_contact_main_inner{
    width: 92%;
    margin: 0 auto;
}
.community_contact_main_inner_cards{
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
.community_contact_main_inner_cards_bg{
    width: 100%;
    min-height: 100%;
    background-color: var(--nse-purple);
    position: absolute;
}
.community_contact_main_inner_cards_bg_btm_line{
    position: absolute;
    width: 100%;
    height: 1rem;
    background-color: var(--white-color);
    bottom: 1.2vh;
}
.community_contact_main_inner_card{
    width: 30rem;
    min-width: 30rem;
    min-height: 30vh;
    padding: 1.6rem;
    /* background-image: linear-gradient(to bottom, rgb(243, 200, 121), white); */
    background-color: white;
    z-index: 9;
    position: relative;
    top: 5rem;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 1;
    border-radius: .2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.community_contact_main_inner_card i{
    font-size: 2rem;
    color: var(--red-color);

}
.community_contact_main_inner_cardTXT{
    margin-bottom: 1rem;
}
.community_contact_main_inner_cardTXT h5{
    font-size: 1.6rem;
    text-transform: uppercase;
}
.community_contact_main_inner_cardTXT p{
    font-size: 1.4rem;
}
.community_contact_main_inner_cardBTN{
    position: absolute;
    bottom: 1.2rem;
}
.community_contact_main_inner_cardBTN a{
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: .8rem;
    text-transform: uppercase;
}
.community_contact_main_inner_cardBTN a i{
    font-size: 1rem;
    color: var(--black-color);
}
/* ================================= community contact section end ============================ */


/* ================================= footer section start ============================ */

.footer_main{
    width: 100%;
    padding: 5rem 0;
    background-color: #293031;
    margin-top: 5rem;

}
.footer_main_inner{
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer_main_inner_row{
    display: flex;
    justify-content: space-between;
}
.footer_main_inner1{
    width: 22%;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.footer_main_inner1 ul{
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer_main_inner1 ul a{
    font-size: 1.3rem;
    color: var(--bs-gray);
    text-decoration: none;
    font-weight: 500;
}
.footer_main_inner1 ul a:hover{
    color: var(--bs-white);
}
.footer_main_inner1_logo{
    width: 10rem;
    /* height: 5.2rem; */
}
.footer_main_inner1_logo img{
    width: 100%;
    height: 100%;
}
.footer_main_inner_row:first-child p{
    font-size: 1.4rem;
    color: var(--bs-gray);
    width: 80%;
}

.footer_heading{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white-color);
    margin: 0;
}
.footer_main_inner_terms{
    padding: 2rem;
    border-top: .1rem solid var(--bs-gray);
}
.footer_main_inner_terms ul{
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin: 0;
}
.footer_main_inner_terms ul a{
    font-size: 1.4rem;
    color: var(--bs-white);
    text-decoration: none;
}

.footer_main_inner_copyright{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_main_inner_copyright p{
    font-size: 1.4rem;
    color: var(--bs-gray);
    margin: 0;
}

.copyright__socialMedia{
    display: flex;
    gap: .5rem;
}
.copyright__socialMedia_icons{
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: .2rem solid var(--bs-gray);
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright__socialMedia_icons:hover{
    color: var(--bs-gray);
}


/* ================================= footer section end ============================ */


/* .course_database_main{
    position: relative;
    top: 2rem;
} */

#eligibility{
    position: relative;
    top: 2rem;
}



/*  ==== small device ======= */
@media (min-width: 299px) and (max-width: 499.98px){

.main_about_us{
    padding-top: 6rem !important;
}
.searchlabelhai{
    font-size: 1.3rem;
}

#eligibility .col-12{
    width: 85% !important;
}
.col-custom-search{
    margin-top: 0 !important;
}


.courses-section{
    width: 100%;
    padding: 1.2rem;
    display: flex;
}
.course_database_cards{
    justify-content: center;
    margin-top: 1.2rem;
}
    

}

/* hero section */


.hero_section_inner{
    border-radius: 4rem;
    position: relative;
    height: 55rem;
    margin-top: 2rem;
}
.hero_section_txt{
    width: 62%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 4rem;
    z-index: 9;
}
.hero_section_txt_inner{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hero_section_txt_heading{
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.nse_line_hero{
    width: 100%;
}
.hero_section_img{
    border-radius: 4rem;
    width: 45%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
}
.hero_section_img_inner{
    width: 100%;
    height: 100%;
}
.hero_section_txt_heading h1{
    font-size: 4rem;
    width: fit-content;
}
.hero_section_txt_heading h1 span:first-child{
    background: -webkit-linear-gradient(left, var(--nse-red), var(--nse-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero_section_txt_heading h1 span:last-child{
    color: var(--nse-yellow);
}
.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{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: 1rem 0;
}
.hero_section_txt_list:last-child{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: 1rem 0;
}
.hero_section_txt_list_cards{
    display: flex;
    width: 100%;
}
.hero_section_txt_list_card{
    width: 48%;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.hero_section_txt_list_cardImg{
    min-width: 5rem;
    width: 5rem;
    height: 5rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;;
    padding: .5rem;
    border-radius: 50%;
    overflow: hidden;
}

.hero_section_txt_list:last-child::before{
    display: none;
}
.hero_section_txt_list h5{
    font-size: 1.5rem;
}
.hero_section_txt_list h5 b{
    color: var(--nse-purple);
}
.hero_section_txt_btn{
    width: 80%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}
.hero_section_txt_btn .custom_btn{
    width: 49%;
    text-align: center;
}
.hero_section_txt_btn .custom_btn:first-child{
    background-color: transparent;
    color: var(--bs-gray-dark);
    box-shadow: none;
    border: .1rem solid #d4d3d3;
}
.hero_section_nseIcon{
    min-width: 12rem;
    width: 12rem;
}

/* hero section */

.backrang{
    border: 1px solid var(--gray-color);
    position: relative;
}
.backrangProgramName{
    width: 100%;
    background-color: var(--nse-purple);
    position: absolute;
    bottom: 0;
    left: 0;
/* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */

}
.leveldurationcpe{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.button-coursebtn{
    position: relative;
    overflow: hidden;
    border: 1px solid #18181a;
    color: #18181a;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 18px 18px 17px;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-align: center;
}

.button-coursebtn span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.button-coursebtn span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
    /* background: red; */
}

.button-coursebtn:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #392d83;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.button-coursebtn:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.button-coursebtn:hover span:last-child {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}


.rbt-title-style-3{
    font-size: 1.6rem;
}
.rbt-course-feature-inner p,
.listpositionhhai{
    font-size: 1.4rem;
    color: var(--bs-gray);
    font-weight: 400;
}
.listpositionhhai{
    display: flex;
    gap: .4rem;
}
.contactus{
    display: flex;
    gap: 2rem;
    padding: 1.2rem;
    /* align-items: center; */
    justify-content: center;
    background-color: var(--nse-purple);
    color: var(--white-color);
}
.rbt-course-feature-box-rightSide{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.rbt-shadow-box {
    border-radius: 6px;
    background: white;
    /* overflow: hidden; */
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    /* padding: 0 30px; */
}
.rbt-title-style-3 {
    margin-bottom: 24px;
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e6e3f14f;
}

.content-item-content {
    position: absolute;
    background: #e22027;
    max-width: 90%;
    padding: 0.5rem;
    margin-top: 1rem;
    color: white;
    z-index: 9;
	bottom: 16%;
}

/* -----------------------------cssss------------------------------------------------ */
 
@media (min-width: 299px) and (max-width: 499.98px) {
.course_database_card {
    width: 98%; }
 
    .courses-section{
        flex-direction: column;
    }
.side__search__box{
    width: 98%;
}
  .main_about_us {
         padding-top: 0 !important;
    }
/* .backrang{
        height: 190px !important;
} */
 
.content-item-content {
    max-width: 90%;
    padding: 0.2rem;
    bottom: 20%;
     margin-bottom: 10px;
}
.contactus{
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.course_database_card_img {
    width: 100%;
    height: 20rem;
}
}
 
@media screen and (min-width:499.98px) and (max-width:699px){
    .course_database_card {
    width: 85%;
    }
}
 
 
@media screen and (min-width:699px) and (max-width:999px){
    .course_database_card {
    width: 48%;
    }
}
 
 
 
 
.course_database_card_img {
    height: 20rem;
}