@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;
}

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;
}


:root {
    /* nse primary color */
    --nse-purple: #392E7D;
    --nse-orange: #E96F24;
    --nse-red: #E41F28;
    --nse-yellow: #F1B519;
    --MIT-blue: #22438A;
    --MIT-yellow: #FCB71C;

    --nse-light-purple: #4c3ea7a6;
    --nse-light-orange: #fd7e14c4;
    --nse-light-red: #f33c44a8;
    --nse-light-yellow: #f9c53da8;

    --nse-ex-light-purple: #392e7d89;
    --nse-ex-light-orange: #fd7e1461;
    --nse-ex-light-red: #e41f284f;
    --nse-ex-light-yellow: #f1b51952;

    --btn-color: #585858;
    --main-bg-color: #fff;
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #dadada;
    --light-gray-color: #eee;
    --light-bg-color: #f7f8fc;

    --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;



}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.section_container {
    width: 91%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.customBTN {
    padding: .8rem 1.4rem;
    color: var(--white-color);
    background-color: var(--nse-red);
    font-size: 1.5rem;
}

.section_padding {
    padding: 2.5rem 0;
}

.section_flex_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
}

.paragraph_size {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
    margin: 0;
    color: var(--bs-gray);
    text-align: justify;
}

.text_size {
    font-size: 1.8rem;
    line-height: 2.2rem;
    color: var(--bs-dark);
}

/* section heading */
.section_heading {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.section_heading h5 {
    font-size: 2.4rem;
    color: var(--nse-purple);
    font-weight: 500;
    margin: 0;
    position: relative;
}

.section_heading h5::before {
    content: "";
    position: absolute;
    bottom: -1rem;
    width: 44%;
    height: .1rem;
    background-color: var(--nse-orange);
    left: 50%;
    transform: translate(-50%, 0%);
}

.section_heading h5::after {
    content: "";
    position: absolute;
    bottom: -1.2rem;
    width: 10%;
    height: .6rem;
    background-color: var(--nse-yellow);
    left: 50%;
    transform: translate(-50%, 0%);
}

.icon_color {
    color: var(--MIT-yellow);
}

/* logo dimension */
.main_logo {
    min-width: 20rem;
    max-width: 20rem;
    position: relative;
}

.main_logo img {
    width: 100%;
    height: 100%;
}

#mit_header {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    transition: all .3s ease;
    z-index: 999999999999999999;
}

#mit_header .nav-link {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--btn-color);
}

#mit_header .nav-link.active {
    color: var(--bs-gray);
}

#mit_header .section_container {
    width: 91%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
}

/* ========================== main inner start ========================== */

/* .main_inner{
    margin-top: 7.2rem;
} */



/* 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;
    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;
}

/* register form modal end */


/* hero section */
.hero_section {
    width: 100%;
    /* min-height: 90vh; */
    min-height: 85vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero_section::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000044;
}

.hero_section_inner .section_container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.custom-shape-divider-top-1714735566 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 100%;
}

.custom-shape-divider-top-1714735566 svg {
    position: relative;
    display: block;
    width: calc(201% + 1.3px);
    height: 112%;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1714735566 .shape-fill {
    fill: #FFFFFF;
}

.powerd_by_label {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.powerd_by_labelIMG {
    position: relative;
    width: 18rem;
    right: 0;
}

.powerd_by_labelIMG img {
    width: 100%;
}

.powerd_by_labelTXT {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.powerd_by_labelTXT h4 {
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 600;
}

.hero_sec_content {
    position: relative;
    width: 62%;
    height: 100%;
    /* top: 10rem; */
    z-index: 9;
    /* background-color: #0000007d; */
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero_sec_content p {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--nse-yellow);
}

.hero_sec_content img {
    width: 90%;
    height: .6rem;
}

.hero_sec_content h5 {
    font-size: 4.5rem;
    color: var(--nse-purple);
    position: relative;
}

.hero_sec_content h5 img {
    min-width: 6rem;
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: -3rem;
    left: -3rem;
}

.hero_sec_content_nse {
    display: flex;
    /* justify-content: flex-end; */
    flex-direction: column;
    /* gap: 1.2rem; */
    /* align-items: flex-end; */
    margin-bottom: .4rem;
}

.hero_sec_content_nse p {
    color: var(--nse-orange);
    font-size: 2rem;
    text-align: right;
    /* margin-bottom: 1rem; */
    position: relative;
    display: flex;

}

.hero_sec_content_nse img {
    width: 14rem;
    height: 100%;
}

.hero_sec_content_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.hero_sec_content_list1 {
    width: 100%;
    padding: .8rem .5rem;
    border-radius: .4rem;
    /* background: linear-gradient(-90deg, #F1B519 0%, #E96F24 49%, #F1B519 100%); */
    /* #E96F24;
    --nse-red: #E41F28;
    --nse-yellow: #F1B519; */
    display: flex;
    /* justify-content: center; */
    gap: 2rem;
    /* box-shadow: rgba(198, 198, 205, 0.664) 0px 2px 5px -1px, rgba(179, 175, 175, 0.573) 0px 1px 3px -1px; */
    /* border: .01rem solid var(--white-color); */
}

.hero_sec_content_list1 span {
    position: relative;
    font-size: 1.8rem;
    color: var(--nse-purple);
    /* font-weight: 400; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 1rem;
}

.hero_sec_content_list1 span i {
    color: var(--nse-orange);
}

/* .hero_sec_content_list1:first-child span:first-child::before{
    height: 75%;
    width: .18rem;
    background-color: var(--nse-red);
    content: "";
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translate(-50%, -50%);
} */

.hero_sec_content_programTag {
    display: flex;
    gap:
        1.2rem;
}

.hero_sec_content_programTag1 {
    padding: .8rem 1.2rem;
    border-radius: .4rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.3rem;
    color: var(--MIT-blue);
    box-shadow: #22438A 0px 2px 5px -1px, #22438A 0px 1px 3px -1px;
    width: 200px;


}

.hero_sec_content_programTag1 span {
    width: 3.5rem;
}

.hero_sec_content_programTag1 span img {
    width: 100%;
    height: 100%;
}

.mit_logo {
    width: 40px;
    height: 40px;
}

.mit_logo img {
    height: 100%;
    width: 100%;
}

.nyif_logo {
    width: 170px;
    height: 40px;
}

.nyif_logo img {
    width: 100%;
    height: 100%;

}

/* ========================== about section mit start ========================== */

.about_sec_content_top {
    width: 100%;
    background-color: var(--light-gray-color);
    padding: 1.5rem;
    margin-bottom: .6rem;
}

.about_sec_content_BTM {
    background-color: var(--nse-purple);
    padding: .4rem 1.2rem;
}

.about_sec_content_BTM .paragraph_size {
    color: var(--nse-yellow);
}

.about_sec_content_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_sec_content_ct_left {
    width: 58%;
}

.about_sec_content_ct_right {
    width: 40%;
}

.about_sec_content_ct_rightIMG {
    width: 100%;
    /* height: 100%; */
    background-color: var(--nse-purple);
}

.about_sec_content_ct_rightIMG img {
    width: 100%;
    height: 100%;
    border: 1.2rem solid white;
    border-radius: 0 3rem 0 3rem;
}

.about_sec_content_count {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 1.2rem;
    border-radius: 1rem;
    justify-content: space-between;
    gap: 1.2rem;
    position: relative;
}

.about_sec_content_countCENTER {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--nse-red);
    font-size: 2.2rem;
}

.about_sec_content_count_card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 2rem;
}

.about_sec_content_count_card:nth-child(1) {
    background-color: var(--nse-yellow);
    border-bottom-right-radius: 3rem;
}

.about_sec_content_count_card:nth-child(2) {
    background-color: var(--nse-purple);
    border-bottom-left-radius: 3rem;
}

.about_sec_content_count_card:nth-child(3) {
    background-color: var(--nse-red);
    border-top-right-radius: 3rem;
}

.about_sec_content_count_card:nth-child(4) {
    background-color: var(--nse-orange);
    border-top-left-radius: 3rem;
}

.about_sec_content_count_card h1 {
    font-size: 3rem;
    color: var(--white-color);
    font-weight: 700;
}

.about_sec_content_count_card p {
    color: var(--white-color);
}


/* ========================== about section mit end ========================== */
/* ========================== dean msg start ========================== */

.dean_thought {
    background-color: #E5F1F7;
    display: flex;
    flex-direction: column;
}

.dean_thought .section_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.dean_thought_inner {
    width: 80%;
    display: flex;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    border-radius: 1rem;
    background-color: var(--white-color);
}

.dean_thought_innerMSG h5 {
    text-align: justify;
    color: var(--bs-gray);
    font-weight: 400;
}

.dean_thought_inner::after {
    font-size: 3rem;
    color: var(--nse-ex-light-orange);
    font-family: FontAwesome;
    content: "\f10d";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    position: absolute;
    top: -1rem;
    left: .6rem;
}

.dean_thought_inner::before {
    font-size: 3rem;
    color: var(--nse-ex-light-orange);
    font-family: FontAwesome;
    content: "\f10e";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    position: absolute;
    right: .6rem;
    bottom: -1rem;
}

.dean_thought_innerTXT {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dean_thought_innerPost .text_size {
    color: var(--nse-purple);
}

.dean_thought_innerIMG {
    width: 35%;
}

.dean_thought_innerIMG_inner {
    width: 80%;
    height: 100%;
    position: relative;
    position: relative;
    top: -3rem;
    margin: 0 auto;
}

.dean_thought_innerIMG_inner img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    position: relative;
    background-color: var(--white-color);
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.dean_thought_innerIMG_inner::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: -2rem;
    border-radius: 1rem;
    background-color: var(--nse-purple);
    width: 100%;
    height: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* ========================== dean msg end ========================== */
/* ========================== about BBA start ========================== */
/* .about_bba .section_container{
    align-items: center;
} */
.about_bba_inner {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about_bba_inner .text_size {
    padding: 1.2rem;
    background-color: var(--light-gray-color);
}

/* accordion */
.about_bba_inner_accordion {
    width: 85%;
    margin: 0 auto;
    margin-top: 2rem;
}

#accordionAboutBBA .accordion-button,
#accordionAboutBBA1 .accordion-button {
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--bs-gray-dark);
    padding: 2.2rem 2rem;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    box-shadow: rgba(60, 72, 82, 0.1) 0px 0px 16px;
}

#accordionAboutBBA .accordion-button:focus,
#accordionAboutBBA1 .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

#accordionAboutBBA,
#accordionAboutBBA1 {
    display: flex;
    /* flex-direction: column; */
    gap: 1.2rem;
}

.program_highlight_inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about_bba_inner_accordion_body {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    gap: 1.2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    /* padding: 1.2rem; */

}

/* .accordion-body{
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
} */
.about_bba_inner_accordion_body .about_bba_inner_accordion_card {
    width: 49%;
    background-color: var(--white-color);
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    padding: 1.5rem 1.2rem;
}

.about_bba_inner_quotes_main {
    width: 100%;
    /* background-color: var(--nse-red); */
    background-color: #E5F1F7;
    padding: 4rem 0;
}

.about_bba_inner_accordion_card .paragraph_size {
    display: flex;
    gap: 1rem;
    font-weight: 500;
    color: var(--MIT-blue);
    text-align: left;
}

.about_bba_inner_accordion_card i {
    color: var(--MIT-yellow);
    margin-top: .2rem;
}

.about_bba_inner_quotes {
    width: 92%;
    padding: 3rem 2rem;
    border: .3rem solid var(--MIT-yellow);
    position: relative;
    margin: 1.2rem auto;
    background-color: var(--white-color);
}

.about_bba_inner_quotes::after {
    font-family: "Font Awesome 5 Free";
    content: "\f10d";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    top: -2.6rem;
    left: 1rem;
    font-size: 4rem;
    /* border: 1rem solid var(--white-color); */
    /* background-color: var(--nse-red); */
    color: var(--MIT-yellow);
}

.about_bba_inner_quotes::before {
    font-family: "Font Awesome 5 Free";
    content: "\f10e";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    bottom: -2.6rem;
    right: 1rem;
    font-size: 4rem;
    /* border: 1rem solid var(--white-color); */
    /* background-color: var(--nse-red); */
    color: var(--MIT-yellow);
}

/* .about_bba_inner_quotes .paragraph_size{
    color: var(--white-color);
} */
.about_bba_inner_quotes p {
    font-size: 1.3rem;
    /* color: var(--white-color); */
}

.about_bba_inner_quotes div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.about_bba_inner_tab {
    width: 100%;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* padding: 1.2rem; */
    margin-top: 1.2rem;
}

.about_bba_inner_tab1:first-child {
    width: 70%;
}

.about_bba_inner_tab1:last-child {
    width: 30%;
}

.about_bba_inner_tab1_heading {
    padding: 1.2rem;
    background-color: var(--MIT-yellow);
}

.about_bba_inner_tab1_heading .paragraph_size {
    color: var(--white-color);
}

.about_bba_inner_tab1:first-child {
    border-right: .18rem solid rgba(0, 0, 0, 0.05);
}

.about_bba_inner_accordion_card {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    width: 100%;
}

.about_bba_inner_tab1 .paragraph_size {
    text-align: left;
}

.about_bba_inner_accordion_body .paragraph_size.my-3 {
    width: 100%;
}


/* ========================== about BBA end ========================== */
/* ========================== nal advantage start ========================== */
.nal_advantage {
    background-color: #ECF4F7;
}

.nal_advantage_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.nal_advantage_inner_card {
    width: 49%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nal_advantage_inner_card img {
    width: 4.5rem;
}

.nal_advantage_inner_card .paragraph_size {
    font-weight: 500;
    text-align: left;
}

/* ========================== nal advantage end ========================== */
/* ========================== why choose section start ========================== */

.why_choose_program h4 {
    text-align: left;
    width: 100%;
}

.why_choose_program_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.why_choose_program_inner_pic {
    width: 40%;
    display: flex;
    align-items: center;
}

.why_choose_program_inner_picIMG {
    width: 100%;
}

.why_choose_program_inner_picIMG img {
    width: 100%;
}

.why_choose_program_inner_lists {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why_choose_program_inner_list {
    width: 100%;
    display: flex;
    gap: 8rem;
    position: relative;
}

/* .why_choose_program_inner_list::after{
    width: .18rem;
    height: 1rem;
    content: "";
    position: absolute;
    left: 4rem;
    bottom: -1.2rem;
    border-left: dotted .2rem var(--bs-gray);
} */

.why_choose_program_inner_list_cricle {
    min-width: 8rem;
    max-width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--nse-purple);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
}

.why_choose_program_inner_list:nth-child(2) .why_choose_program_inner_list_cricle {
    color: var(--nse-red);
}

.why_choose_program_inner_list:nth-child(3) .why_choose_program_inner_list_cricle {
    color: var(--nse-yellow);
}

.why_choose_program_inner_list:nth-child(4) .why_choose_program_inner_list_cricle {
    color: var(--nse-orange);
}

.why_choose_program_inner_list:nth-child(5) .why_choose_program_inner_list_cricle {
    color: var(--bs-cyan);
}

.why_choose_program_inner_list_txt {
    width: 80%;
    display: flex;
    align-items: center;
}

.why_choose_program_inner_list_cricle::before {
    content: "";
    position: absolute;
    width: 6rem;
    /* height: .1rem; */
    /* background-color: var(--bs-gray); */
    border-top: dotted .2rem var(--bs-gray);
    right: -7rem;
    top: 50%;
    transform: translate(0%, -50%);
}


/*  */
.why_choose_tablets {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.8rem;
    justify-content: center;
}

.why_choose_tablet {
    width: 19%;
    padding: .8rem 1.2rem;
    border-radius: 2rem;
    border: .08rem solid var(--MIT-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.why_choose_tablet .paragraph_size {
    text-align: center;
    color: var(--MIT-blue);
}

.why_choose_tabletICON {
    /* min-width: 5rem;
    width: 5rem;
    height: 100%; */
    /* border-radius: 1rem; */
    background-color: var(--white-color);
    color: var(--MIT-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    top: -3rem;
    padding: 1.2rem;

}

.why_choose_tablet .paragraph_size {
    padding: .8rem 1rem;
}

/* ========================== why choose section end ========================== */
/* ========================== program strucure start ========================== */
.program_structure_inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about_section_body_left_list_cards {
    width: 100%;
    background-color: #E2F5F3;
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about_section_body_left_list_card {
    width: 40%;
    background-color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-radius: .4rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.about_section_body_left_list_cardIMG {
    width: 6rem;
    height: 6rem;
    /* background-color: #dad; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_section_body_left_list_cardIMG i {
    font-size: 4rem;
    color: #0FAB9E;
}

.about_section_body_left_list_cardIMG img {
    width: 100%;
    height: 100%;
}

.about_section_body_left_list_cardTXT h4 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #0FAB9E;
    text-align: center;
}


/* ========================== program strucure end ========================== */
/* ========================== specialized start ========================== */
.specialized_section .specialized_section_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.specialized_section_inner_cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.specialized_section_inner_card {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    width: 32.5%;
    padding: 1.2rem;
}

.specialized_section_inner_card .paragraph_size {
    display: flex;
    gap: 1.2rem;
}

.specialized_section_tab_content_inner {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.career_section_inner .tabcontent_card {
    /* justify-content: center; */
}

.career_section_inner {
    width: 45%;
    padding: 2rem 0;
}

.career_section_inner .paragraph_size {
    width: fit-content;
    display: flex;
    gap: 1.2rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 1.2rem;
    border-radius: .4rem;
    color: var(--MIT-blue);
    font-weight: 500;
}

.career_section_inner .paragraph_size i {
    color: var(--MIT-yellow);
    font-size: 1.6rem;
}

.career_section_innerIMG {
    width: 100%;
    height: fit-content;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    display: flex;
    justify-content: flex-end;
}

/* topic tab */

.topic_tab_pannel {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.topic_tab_pannel button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: var(--bs-gray);
    font-weight: 500;
    font-size: 1.6rem;
}

.topic_tab_pannel button:hover {
    background-color: #ddd;
}

.topic_tab_pannel button.active {
    background-color: #ccc;
}

/* tab */
.specialized_section_tabs {
    width: 100%;
}

.specialized_section_tab_pannel {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.specialized_section_tab_pannel button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: var(--bs-gray);
    font-weight: 500;
    font-size: 1.6rem;
}

.specialized_section_tab_pannel button:hover {
    background-color: #ddd;
}

.specialized_section_tab_pannel button.active {
    /* background-color: #ccc; */
    background-color: var(--MIT-yellow);
    color: var(--white-color);
}

.tabcontenttopic {
    display: none;
    padding: 2rem;
    border: 1px solid #ccc;
    border-top: none;
}

.tabcontenttopic:first-child {
    display: block;
}


/* Style the tab content */
.tabcontent {
    display: none;
    padding: 2rem;
    border: 1px solid #ccc;
}

.tabcontent:first-child {
    display: block;
}

.tabcontent_card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.specialized_section_tabs .tabcontent_card p {
    width: 30%;
    display: flex;
    gap: 1.2rem;
}

/* ========================== specialized end ========================== */
/* ===================
======= program curriculum start ========================== */
.program_curriculum {
    background-color: #F6F9FE;
}

.program_curriculum_inner {
    width: 100%;
}

.program_curriculum_inner .accordion-item {
    background-color: #fff;
    color: var(--MIT-blue);
    border: .1rem solid #eee;
}

.program_curriculum_inner .accordion-item .accordion-body {
    border: .18rem solid var(--MIT-blue);
}

.program_curriculum_inner .accordion-item .accordion-header .accordion-button {
    background-color: var(--white-color);
    color: var(--MIT-blue);
    font-weight: 500;
    font-size: 1.4rem;
    padding: 1.4rem 1.2rem;
}

.program_curriculum_inner .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    /*background-color: var(--MIT-blue);
    color: var(--white-color);*/
    color: var(--MIT-blue);
    font-weight: 500;
    font-size: 1.4rem;
    padding: 1.4rem 1.2rem;
}

.creditsSpan {
    display: none;
}

.program_curriculum_inner .accordion-item .accordion-header .accordion-button:not(.collapsed) .creditsSpan {
    display: block;
    margin-left: .8rem;
}

.program_curriculum_accordian {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.program_curriculum_cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0;
}

.program_curriculum_card_topic,
.program_curriculum_cardPractical {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.program_curriculum_cardName,
.program_curriculum_cardPractical1 {
    width: 49%;
    padding: 1.2rem;
    border-radius: .4rem;
    border: .18rem solid var(--light-gray-color);
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    position: relative;
}

.program_curriculum_cardName span,
.program_curriculum_cardPractical1 span {
    padding: .2rem .4rem;
    background-color: var(--MIT-blue);
    color: var(--white-color);
    font-size: 1.2rem;
    position: absolute;
    top: -.8rem;
    right: .4rem;
    border-radius: .4rem;
}

.program_curriculum_cardTotal {
    width: 100%;
    padding: 1.2rem;
    display: flex;
    justify-content: flex-end;
    background-color: #ECF4F7;
    display: none;
}

.program_curriculum_cardPractical {
    background-color: #ECF4F7;
    padding: 1.2rem 0;
}

.program_curriculum_cardPractical1 {
    background-color: var(--white-color);
}

/* ========================== program curriculum end ========================== */
/* ========================== faculty section start ========================== */

.faculty_section {
    background-color: var(--light-gray-color);
}

.faculty_section .section_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.faculty_section_inner {
    width: 100%;
    display: flex;
    gap: 2rem;
}

.faculty_section_card {
    width: 48%;
    height: fit-content;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 1rem;
    padding: 2rem;
}

.faculty_section_card_intro {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-bottom: 3.4rem;
    justify-content: space-between;
}

.faculty_section_cardTXT {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faculty_section_cardIMG {
    min-width: 13rem;
    width: 13rem;
    height: 13rem;
    background-size: cover;
}

.faculty_section_cardIMG img {
    width: 100%;
    height: 100%;
    margin-top: 1.4rem;
    margin-left: 1.4rem;
}

.faculty_section_cardTXT h5 {
    color: var(--nse-purple);
}

.faculty_section_card_line {
    width: 100%;
    height: .5rem;
    border-radius: 50%;
    background-color: var(--nse-orange);
    margin: 1rem 0;
    position: relative;
}

.faculty_section_card_line::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: .5rem;
    height: .5rem;
    background-color: var(--light-gray-color);
    border: .5rem solid var(--light-gray-color);
    border-radius: 50%;
}

.faculty_section_card_msg {
    max-height: 20rem;
    overflow: hidden;
    position: relative;
}

.faculty_section_card_msg_moreBTN {
    position: absolute;
    bottom: 0;
    right: 0;
    outline: none;
    border: none;
    background-color: var(--MIT-blue);
    color: var(--white-color);
    font-size: 1.2rem;
    padding: .2rem .5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.faculty_section_card_msg_moreBTN:hover {
    background-color: var(--white-color);
    color: var(--MIT-blue);
}

/* ========================== faculty section end ========================== */
/* ========================== Infrastructure section start ========================== */

.infrastructure_section_inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.infrastructure_section_innerTXT {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.infrastructure_section_innerIMG {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    /* align-items: center; */
    justify-content: center;
    box-pack: center;
    -moz-box-pack: center;
    -webkit-box-pack: center;
    gap: 1.2rem;
}

.infrastructure_section_IMG {
    min-width: 10rem;
    max-width: 27.8rem;
    border: .5rem solid var(--nse-purple);
    position: relative;
    cursor: pointer;
}

.infrastructure_section_IMG img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.small-image:hover {
    opacity: .5;
}


/* ========================== Infrastructure section end ========================== */
/* ========================== facalities section start ========================== */
.facalities_section .section_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.facalities_section_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* justify-content: space-between; */
}

.facalities_section_inner_card {
    width: 18.6%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: .4rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* .facalities_section_inner_card:hover{

} */
.facalities_section_inner_cardIMG {
    width: 100%;
    height: 10rem;
}

.facalities_section_inner_cardIMG img {
    width: 100%;
    height: 100%;
}

/* ========================== facalities section end ========================== */
/* ========================== eligibility section start ========================== */
.eligibility_section {
    background-color: var(--MIT-blue);
}

.eligibility_section .section_heading h5 {
    color: var(--white-color);
}

.eligibility_section_inner_process .section_heading h5 {

    color: var(--nse-purple);
}

.eligibility_section .section_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.eligibility_section_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: .15rem solid var(--light-gray-color);
    padding: 2rem;
    border-radius: .6rem;
}


.eligibility_section_inner_process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--light-gray-color);
    padding: 2rem;
    align-items: center;
}

.eligibility_section_innerStar {
    padding: 1.2rem;
    background-color: var(--MIT-blue);
    color: var(--white-color);
}

.eligibility_section_inner_process_inner1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eligibility_section_inner_process_inner1 .text_size {
    color: var(--MIT-yellow);
}

.eligibility_section_inner_process_inner1 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.eligibility_section_inner_process_inner1 ul li {
    font-size: 1.5rem;
    color: var(--white-color);
    display: flex;
    gap: 1.2rem;
    font-weight: 400;
    margin: 1rem 0;
    width: 48%;
}

.eligibility_section_inner_process_inner1 .icon_color {
    color: var(--white-color);
}

.eligibility_section_inner_process_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.eligibility_section_inner_process_inner::before {
    content: "";
    background-color: var(--bs-gray);
    position: absolute;
    height: .18rem;
    width: 80%;
    left: 50%;
    top: 24%;
    transform: translate(-50%, 0%);
}

.eligibility_section_inner_process_card {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem;
}

.eligibility_section_inner_process_card_icon {
    min-width: 5rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    z-index: 9;
    background-color: var(--white-color);
}

.eligibility_section_inner_process_card:nth-child(2) .eligibility_section_inner_process_card_icon {
    border: .16rem solid var(--nse-red);
    color: var(--nse-red);
}

.eligibility_section_inner_process_card:nth-child(1) .eligibility_section_inner_process_card_icon {
    border: .16rem solid var(--nse-purple);
    color: var(--nse-purple);
}

.eligibility_section_inner_process_card:nth-child(3) .eligibility_section_inner_process_card_icon {
    border: .16rem solid var(--nse-orange);
    color: var(--nse-orange);
}

.eligibility_section_inner_process_card:nth-child(4) .eligibility_section_inner_process_card_icon {
    border: .16rem solid var(--nse-yellow);
    color: var(--nse-yellow);
}

.eligibility_section_inner_process_card .paragraph_size {
    color: var(--nse-purple);
    font-size: 1.6rem;
    text-align: center;
}

.eligibility_section_inner_process .text_size {
    color: var(--nse-red);
}

/* ========================== eligibility section end ========================== */
/* ========================== competition section start ========================== */
.competition_section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.competition_section_inner {
    display: flex;
}

.competition_tab_pannel_links {
    width: 25%;
    min-width: 25%;
    background-color: #d8e3ed;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.competition_tab_pannel_links ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
}

.competition_tab_pannel_tablink {
    background-color: var(--bs-white);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 1.2rem;
    width: 100%;
    transition: 0.3s;
    font-size: 1.4rem;
    color: var(--bs-gray);
    border-radius: .8rem;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.competition_tab_pannel_tablink:hover {
    background-color: var(--nse-orange);
    transition: all 0.3s ease;
    color: var(--bs-white);
}

.competition_tab_pannel_tablink.active {
    background-color: var(--nse-orange);
    color: var(--bs-white);
}

.competition_tab_pannel_tablink i {
    transform: rotate(45deg);
}

.competition_tab_content {
    width: 100%;
    height: 100%;
}

.competition_tab_content_inner {
    width: 100%;
    height: 100%;
}

.competition_tab_content_inner_main {
    display: none;
    padding: 2rem;
    border: 1px solid #ccc;
    border-top: none;
    width: 100%;
}

.competition_tab_content_inner_main:first-child {
    display: block;
}

.competition_tab_content_inner_main ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.competition_tab_content_inner_main ul li {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--bs-gray);
    padding: 1.2rem;
    border-radius: 0.3rem;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    animation: delaylist 1s forwards;
}

@keyframes delaylist {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.competition_tab_content_inner_main ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\e4bb";
    /* display: inline-block; */
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    background: linear-gradient(45deg, transparent, rgba(47, 85, 212, .15));
    color: #2f55d4;
    margin-right: 1rem;
    border-radius: 50%;
    padding: .8rem;


}

.competition_tab_content_inner_main ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ========================== competition section end ========================== */
/* ========================== fees structure section start ========================== */
.fee_structure {
    background-color: #E3F5F4;
    width: 100%;
}

.fee_structure .section_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.fee_structure_inner {
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.fee_structure_inner_card {
    width: 40%;
    padding: 3rem 2rem;
    border-radius: .4rem;
    color: var(--bs-dark);
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* align-items: center; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.fee_structure_inner_card:first-child {
    /* background-color: var(--nse-purple); */
    background-color: transparent;
    /* color: var(--white-color); */
    justify-content: center;
    align-items: center;
}

.fee_structure_inner_card:last-child {
    width: 58%;
}

.fee_structure_inner_card h1 {
    font-size: 3rem;
    font-weight: 600;
}

.fee_structure_inner_card h4 {
    font-size: 1.8rem;
}

table {
    border-radius: 1rem;
    width: 100%;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 1rem;
    font-size: 1.4rem;
    color: var(--bs-gray-dark);
}

.tr_boldText {
    font-weight: 700;
    font-size: 2rem;
}

/* ========================== fees structure section end ========================== */
/* ========================== universities placement section start ========================== */

.story {
    background: white;
    padding: 10px 5px;
    overflow: hidden;
}

.story .story-item {
    max-height: 10rem;
    border-radius: 5px;
    /* background: #3e7fff; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    position: relative;
    font-size: 13px;
}

.story .story-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    border-radius: 5px;
}

.story .story-item span {
    position: absolute;
    bottom: 0;
    padding: 10px 5px;
    font-family: sans-serif;
}

.story .owl-stage {
    right: 15px;
}

.placement_carousel_inner {
    width: 100%;
    overflow: hidden;
}

.owl-carousel .owl-stage-outer {
    position: relative;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    margin-top: -.7rem;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 3.2rem;
}

.owl-carousel .owl-nav button.owl-next {
    right: 3.2rem;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* ========================== universities placement section end ========================== */
/* ========================== faq's section start ========================== */

.faq_section_inner {
    width: 100%;
}

.faq_section_inner #accordionFaqs {
    width: 80%;
    margin: 0 auto;
}

#accordionFaqs {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#accordionFaqs .accordion-header {
    width: 80%;
    margin: 0 auto;
    box-shadow: rgba(187, 187, 255, 0.25) 0px 6px 12px -2px, rgba(194, 194, 194, 0.3) 0px 3px 7px -3px;
    width: 100%;
}

#accordionFaqs .accordion-button {
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--bs-gray-dark);
    padding: 2.2rem 2rem;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    box-shadow: rgba(60, 72, 82, 0.1) 0px 0px 16px;
}

#accordionFaqs .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

#accordionFaqs .accordion-body {
    background-color: #E5F1F7;
}

/* ========================== faq's section end ========================== */
/* ========================== about NSE section start ========================== */

.about_sectionNSE .about_sec_content_ct_left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}


/* ========================== about NSE section end ========================== */
/* ========================== article section start ========================== */

.article_section {
    width: 100%;
    background-color: var(--light-gray-color);
    position: relative;
}

.article_section::before {
    font-family: FontAwesome;
    content: "\f10e";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--gray-color);
    opacity: .8;
}

.article_section_inner {
    display: flex;
    gap: 2rem;
    justify-content: center;
    z-index: 9;
}

.article_section_card {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.article_section_card h1 {
    font-size: 5rem;
    color: var(--gray-color);
    text-align: right;
}

.article_section_card a {
    text-decoration: none;
    color: var(--bs-blue);
    font-size: 1.4rem;
}

.article_section_card:nth-child(2) h1 {
    text-align: left;
}

/* ========================== article section end ========================== */
/* ========================== about fintech section start ========================== */

.about_fintech {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 34rem;
    position: relative;
    background-attachment: fixed;
}

.about_fintech::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000077;
}

.about_fintech .section_container {
    position: relative;
}

.about_fintech .section_heading h5 {
    color: var(--white-color);
}

.about_fintech_inner_main {
    position: absolute;
    right: 0;
    top: 5rem;
    width: 45%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.about_fintech_inner h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--MIT-yellow);
}

.about_fintech_inner .text_size {
    color: var(--white-color);
    font-weight: 400;
    font-size: 1.5rem;
}

.about_fintech_inner ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.about_fintech_inner ul li {
    font-size: 1.4rem;
    color: var(--bg-secondary-theme);
    padding: .4rem 1rem;
    box-shadow: rgba(187, 187, 255, 0.25) 0px 6px 12px -2px, rgba(194, 194, 194, 0.3) 0px 3px 7px -3px;
    background-color: transparent;
    z-index: 9;
    display: flex;
    gap: 1rem;
}

.about_fintech_inner ul li i {
    font-size: 2rem;
    color: var(--nse-orange);
}

.about_fintech_inner_main_btm {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--bs-white);
}

.about_fintech_inner_main_btm .paragraph_size {
    color: var(--MIT-blue);
}

/* ========================== about fintech section end ========================== */
/* ========================== contact_us_inner section start ========================== */
.contact_us_inner {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.contact_us_inner_card {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 1.2rem;
    border-radius: .4rem;
}

.contact_us_inner_cardICON i {
    font-size: 3rem;
    /* color: var(--bs-gray); */
    font-weight: 200;
}

.contact_us_inner_card:nth-child(1) .contact_us_inner_cardICON i {
    color: var(--MIT-blue);
}

.contact_us_inner_card:nth-child(2) .contact_us_inner_cardICON i {
    color: var(--MIT-yellow);
}

.contact_us_inner_card:nth-child(3) .contact_us_inner_cardICON i {
    color: var(--nse-red);
}

.contact_us_inner_card a.paragraph_size:hover {
    color: var(--MIT-yellow);
}

.contact_us_inner_cardTXT {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}

.contact_us_inner_cardTXT h2 {
    font-weight: 600;
    font-size: 1.6rem;
}

.contact_us_inner_cardTXT i {
    color: var(--MIT-yellow);
}

/* ========================== contact_us_inner section end ========================== */
/* ========================== disclaimer section start ========================== */

.disclaimer_section_inner {
    padding: 2rem;
    border-radius: .4rem;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.disclaimer_section_inner ul li {
    list-style: number;
    font-size: 1.4rem;
    color: var(--bs-gray);
    margin-left: 2rem;
}

.disclaimer_section_inner ul li.active {
    color: var(--MIT-yellow);
}

/* ========================== disclaimer section end ========================== */
/* ========================== footer section start ========================== */

.footer_section {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    width: 100%;
    position: relative;
    padding: 1.6rem 0;
}

.footer_section .paragraph_size {
    font-size: 1.3rem;
}

.footer_section_nseLINe {
    width: 100%;
    height: .6rem;
    position: absolute;
    top: -.3rem;
    left: 0;
    padding: 0 1rem;
}

.footer_section_nseLINe img {
    height: 100%;
    width: 100%;
}

/* ========================== footer section end ========================== */


#show_image_popup {
    width: 650px;
    max-height: fit-content;
    border: 1px solid #333;
    box-sizing: border-box;
    padding: 1.2rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e5e5e5;
    /*    */
    display: none;
    z-index: 9999;
}

#show_image_popup img {
    max-width: 100%;
    max-height: 100%;
}

#image-show-area {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

#image-show-area img {
    width: 100%;
    height: 100%;
}

#all-images .active {
    filter: blur(5px);
}

.close-btn-area {
    width: 100%;
    text-align: right;
    margin-bottom: 5px;

}

.close-btn-area button {
    cursor: pointer;
    color: var(--nse-red);
    font-size: 1.2rem;
    padding: .2rem;
    width: 2rem;
    border: none;
    outline: none;
    background-color: none;
    font-weight: 900;
}

.response {
    font-size: 1.4rem;
}

.thankYou_msg_main {
    width: 100%;
    min-height: 46rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
}

.thankYou_msg_main h1 {
    font-size: 3.5rem;
    color: var(--nse-purple);
}

.thankYou_msg_main h3 {
    font-size: 2.2rem;
    color: var(--bs-gray-dark);
}

.thankYou_msg_main h6 {
    font-size: 1.6rem;
    color: var(--bs-gray-dark);
}

/* ========================== main inner end ========================== */
/* ========================== responsive part start ========================== */

/* small device */
@media (min-width:299px) and (max-width: 499px) {
    #show_image_popup {
        display: none !important;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        display: none;
    }

    /* register form modal */
    #registerModal {
        padding-right: 0 !important;
    }

    .get_in_touch_innerForm form {
        width: 100%;
        min-width: 100%;
        padding: 1rem;
    }

    .get_in_touch_innerForm_input select {
        padding: 1rem 1rem;
        font-size: 1.2rem;
    }

    /* .main_inner {
        margin-top: 5.5rem;
    } */
    .section_heading h5 {
        font-size: 1.8rem;
        text-align: center;
    }

    .paragraph_size {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }

    .text_size {
        font-size: 1.6rem;
    }

    /* ======== navbar ======== */
    .main_logo {
        min-width: 12rem;
        max-width: 12rem;
        position: relative;
    }

    #mit_header .nav-link {
        font-size: 1.4rem;
    }

    /* .main_logo:first-child{
        order: 1;
    }
    .main_logo:last-child{
        order: 2;
    }
    .navbar-toggler{
        order: 3;
    } */
    .nav-item:last-child {
        margin-top: 1rem;
    }

    /* ==== hero section ========= */
    .hero_sec_content p {
        color: var(--nse-orange);
    }

    .hero_sec_content {
        background-color: #ffffffc2;
    }

    .custom-shape-divider-top-1714735566 {
        display: none;
    }

    .hero_section {
        min-height: 50vh;
    }

    .hero_sec_content {
        width: 100%;
        /* top: 3rem; */
        margin: 2rem 0;
    }

    .hero_sec_content h5 {
        font-size: 2.3rem;
    }

    .hero_sec_content h5 p {
        font-size: 1.5rem;
    }

    .hero_sec_content p {
        font-size: 1.3rem;
    }

    .hero_sec_content_nse img {
        width: 5rem;
    }

    .hero_sec_content_nse {
        align-items: flex-end;
    }

    .powerd_by_labelIMG {
        width: 14rem;
    }

    .powerd_by_labelTXT h4 {
        font-size: .8rem;
    }

    .hero_sec_content h5 img {
        position: absolute;
        top: -24px;
        left: -33px;
        width: 5rem;
        height: fit-content;
        z-index: 9;
    }

    .hero_sec_content_list1 {
        flex-direction: column;
        gap: 1rem;
    }

    .hero_sec_content_list1:first-child span:first-child::before {
        display: none;
    }

    .hero_sec_content_list1 span {
        font-size: 1.4rem;
    }

    .hero_sec_content_programTag {
        flex-direction: column;
    }

    /* ===== about section ====== */
    .about_sec_content_center {
        flex-direction: column;
        gap: 1.6rem;
    }

    .about_sec_content_top {
        margin-bottom: 1.2rem;
    }

    .about_sec_content_ct_left,
    .about_sec_content_ct_right {
        width: 100%;
    }

    .about_sec_content_count_card {
        width: 47%;
    }

    .about_sec_content_count_card h1 {
        font-size: 2.5rem;
    }

    .about_fintech_inner .text_size {
        text-align: justify;
    }

    /* .about_fintech {
        min-height: 87vh;
    } */
    /* ========= dean msg ======== */
    .dean_thought_inner {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .dean_thought_innerTXT {
        width: 100%;
    }

    .dean_thought_innerIMG {
        width: 70%;
        margin-top: 6rem;
    }

    /* ====== about bba ======= */
    .about_bba {
        padding-top: 0;
    }

    .about_bba_inner_accordion {
        width: 100%;
    }

    #accordionAboutBBA .accordion-button,
    #accordionAboutBBA1 .accordion-button {
        font-size: 1.5rem;
    }

    .about_bba_inner_accordion_body {
        gap: .4rem;
    }

    .about_bba_inner_tab {
        flex-direction: column;
    }

    .about_bba_inner_tab1:first-child,
    .about_bba_inner_tab1:last-child {
        width: 100%;
    }

    .about_bba_inner_accordion_body .about_bba_inner_accordion_card {
        /* padding: .4rem; */
        width: 100%;
    }

    .about_bba_inner_quotes_main {
        padding: 1.6rem 0;
    }

    .why_choose_tablet {
        width: 100%;
    }

    .nal_advantage_inner_card {
        width: 100%;
    }

    .why_choose_tablet .paragraph_size {
        margin-top: -3rem;
    }

    .program_highlight,
    .program_structure,
    .career_section,
    .facalities_section,
    .faq_section,
    .about_sectionNSE,
    .contact_us,
    .disclaimer_section {
        padding-top: 0;
    }

    .program_highlight .about_sec_content_top {
        margin-top: .6rem;
        margin-bottom: 0;
    }

    .program_structure {
        padding-top: 2.5rem;
        padding-bottom: 0;
    }

    /* ========== career section ========== */
    .career_section_inner .paragraph_size {
        width: 100%;
        background-color: #ffffff96;
    }

    .career_section_inner {
        width: 100%;
        padding: 1.2rem;
    }

    /* ===== program structure ====== */
    .about_section_body_left_list_cards {
        padding: 2rem 1.2rem;
    }

    .about_section_body_left_list_card {
        width: 48%;
    }

    .about_section_body_left_list_card:last-child {
        width: 100%;
    }

    .about_section_body_left_list_cardTXT h4 {
        font-size: 1.3rem;
    }

    /* ====== specialized fintech */

    .topic_tab_pannel button,
    .specialized_section_tab_pannel button {
        font-size: 1.4rem;
        width: 50%;
        padding: 1rem;
    }

    .tabcontenttopic,
    .tabcontent {
        padding: 1.2rem;
    }

    .specialized_section_inner_card,
    .specialized_section_tabs .tabcontent_card p {
        width: 100%;
        text-align: left;
    }

    .specialized_section_tab_pannel {
        display: none;
    }

    .program_curriculum_cardName,
    .program_curriculum_cardPractical1 {
        width: 100%;
    }

    /* ========= faculty section ====== */
    .faculty_section_inner {
        flex-direction: column;
    }

    .faculty_section_card {
        width: 100%;
        padding: 1.2rem;
    }

    .faculty_section_cardIMG {
        min-width: 12rem;
        width: 12rem;
        height: 12rem;
        background-size: cover;
        margin-bottom: 1.4rem;
    }

    .faculty_section_cardTXT {
        gap: .8rem;
    }

    .faculty_section_cardTXT .text_size {
        font-size: 1.2rem;
    }

    .faculty_section_cardTXT .paragraph_size {
        font-size: 1rem;
        text-align: left;
    }

    .faculty_section_card_intro {
        padding-bottom: 1.2rem;
    }

    .infrastructure_section_IMG {
        width: 100%;
        min-width: 100%;
    }

    /* ============ facilities ======= */
    .facalities_section_inner {
        align-items: center;
        gap: 1.2rem;
    }

    .facalities_section_inner_card {
        width: 47%;
    }

    .facalities_section_inner_card .paragraph_size {
        text-align: center;
    }

    .facalities_section_inner_cardIMG {
        height: 5rem;
    }

    /* ======= eligibility =========== */
    .eligibility_section_inner_process_inner {
        flex-direction: column;
        align-items: center;
    }

    .eligibility_section_inner_process_inner1 ul {
        align-items: center;
    }

    .eligibility_section_inner_process_inner::before {
        display: none;
    }

    .eligibility_section_inner_process_inner1 ul li {
        width: 100%;
    }

    .eligibility_section_inner_process_card {
        width: 100%;
    }

    .eligibility_section_inner_process_inner1 {
        gap: 1.2rem;
    }

    /* ========= contact us ========== */
    .contact_us_inner {
        flex-direction: column;
    }

    .contact_us_inner_card {
        width: 100%;
    }

    /* ======== competition =======*/
    .competition_section_inner {
        flex-direction: column;
    }

    .competition_tab_pannel_links {
        width: 100%;
    }

    .competition_tab_content_inner_main ul li {
        font-size: 1.3rem;
    }

    /* fee structure */
    .fee_structure_inner_card {
        /* align-items: center; */
        padding: 1.2rem;
    }

    .fee_structure_inner_card h4 {
        font-size: 1.4rem;
    }

    .fee_structure_inner_card h1 {
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
    }

    .fee_structure_inner {
        flex-direction: column;
    }

    .fee_structure_inner_card:first-child,
    .fee_structure_inner_card:last-child {
        width: 100%;
    }

    .fee_structure_inner_card:last-child {
        /* overflow-x: auto; */
        padding: 1.2rem;
    }

    .fee_structure_inner_card_table {
        width: 100%;
        overflow-x: auto;
    }

    /* ======== article ============  */
    .article_section_inner {
        flex-direction: column;
    }

    .article_section_card {
        width: 100%;
    }

    /* ========== about fintech ======== */

    .about_fintech_inner_main {
        position: relative;
        top: 0;
        width: 100%;
    }

    /* ================= faq ============ */
    .faq_section_inner #accordionFaqs {
        width: 92%;
    }

    #accordionFaqs .accordion-button {
        font-size: 1.4rem;
    }

    /* ======== footer ========= */
    .footer_section {
        padding: 1.2rem;
    }
}

/*
@media (min-width:1300px){
    .about_fintech{
        min-height: 112vh;
    }
}*/


@media (min-width:1299px) {
    .hero_section {
        min-height: 52rem;
    }

    .hero_sec_content {
        width: 55%;
    }
}

/* ========================== responsive part end ========================== */




/* .nyifLogo {
    height: auto;
    width: auto;
} */