/* google font */

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

body {
    font-family: "Quicksand", sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root {
    --heading-font: 62.2px;
    --subHeading-font: 37px;
    --heading2-font: 46px;
    --subHeading2-font: 28px;
    --heading-color: #275ca5;
}

/* privacy policy */


/* end privacy */

@media screen and (max-width: 1200px) {
    :root {
        --heading-font: 45px;
        --subHeading-font: 26px;
        --heading2-font: 43px;
        --subHeading2-font: 26px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --heading-font: 34px;
        --subHeading-font: 22px;
        --heading2-font: 34px;
        --subHeading2-font: 22px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --heading-font: 26px;
        --subHeading-font: 19px;
        --heading2-font: 26px;
        --subHeading2-font: 19px;
    }
}

@media screen and (max-width: 575px) {
    :root {
        --heading-font: 20px;
        --subHeading-font: 14px;
        --heading2-font: 19px;
        --subHeading2-font: 15px;
    }
}

@media screen and (max-width: 401px) {
    :root {
        --heading-font: 15px;
        --subHeading-font: 13px;
        --heading2-font: 15px;
        --subHeading2-font: 13px;
    }
}

@media screen and (max-width: 1370px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }
}

/* header */

header .navbar {
    height: 145px;
    display: flex;
    align-items: center;
    z-index: 11;
}

.navbar-brand img {
    width: 177px;
}

.navbar-nav {
    padding-right: 08px;
    margin-top: -7px;
}

.navbar-nav .nav-item {
    padding-right: 29px;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #c6fc44;
    transition: all 0.3s;
}

.navbar-nav .nav-link.active {
    color: #c6fc44;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link.downloadBtn {
    width: 178px;
    height: 47px;
    background: #c2ee57;
    box-shadow: 0px 2.92px 0px #6ec63d;
    border-radius: 33.5px;
    font-weight: 700;
    font-size: 20.2857px;
    text-align: center;
    color: #275ca5;
}


.mobile-wrapper {
    display: flex;
    width: 100%;
    justify-content: end;
}

.mobile-wrapper .downloadBtnMobile {
    width: 178px;
    height: 47px;
    background: #c2ee57;
    box-shadow: 0px 2.92px 0px #6ec63d;
    border-radius: 33.5px;
    font-weight: 700;
    font-size: 20.2857px;
    text-align: center;
    color: #275ca5;
    border: 0;
}

.downloadBtnMobile:focus {
    outline: none;
}

@media screen and (max-width:767px) {
    .mobile-header-wrapper {
        width: 100%;
    }

    .mobile-wrapper .downloadBtnMobile {
        display: block !important;
        width: 120px;
        height: 30px;
        font-size: .875rem;
    }
}



/* download pop */

.popupForDownload {
    position: fixed;
    background:
        linear-gradient(180deg, #BAD6F9 0%, #A0C6F7 100%);
    bottom: 0%;
    width: fit-content;
    transition: all 1s ease;
    opacity: 0;
    left: 0%;
    z-index: 99;
    padding: 10px;
    height: auto;
    display: none;
}



.popupForDownload .close-popupDownload {
    width: fit-content;
    position: absolute;
    right: 10px;
    top: -15px;
    background: #fff;
    border-radius: 100px;
}

.popupForDownload .close-popupDownload button {
    border: 0;
    background-color: transparent;
}

.popupForDownload .content-downloadMobile {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.popupForDownload .content-downloadMobile img {
    width: 40%;
    max-width: 100px;
}


.popupForDownload .content-downloadMobile p {
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    color: #335DA0;
    margin-bottom: 0;


}

.popupForDownload .content-downloadMobile .downloadBtnMobile {
    width: 178px;
    height: 47px;
    background: #c2ee57;
    box-shadow: 0px 2.92px 0px #6ec63d;
    border-radius: 33.5px;
    font-weight: 700;
    font-size: 20.2857px;
    color: #275ca5;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popupForDownload .content-downloadMobile .dynamic-button {
    width: 100%;
    max-width: 170px;
    text-align: center;
    display: flex;
    justify-content: end;
}

.popupForDownload .content-downloadMobile a {
    width: fit-content;
    display: block;
}

.popupForDownload .content-downloadMobile a img {
    max-width: 170px;
    width: 100%;
}




.popupForDownload.active {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        transform: translate(0px, 100px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0);
        opacity: 1;
    }
}


@media screen and (max-width:767px) {
    .popupForDownload {
        bottom: 0%;
        width: 100%;
        left: 0%;
        display: block;
    }

    .popupForDownload .content-downloadMobile p {
        font-size: .875rem;

    }
}

@media screen and (max-width:425px) {
    .popupForDownload {
        bottom: 0%;
        width: 100%;
        left: 0%;
        display: block;
    }

    .popupForDownload .content-downloadMobile p {
        font-size: .75rem;

    }

    .popupForDownload .content-downloadMobile .dynamic-button {
        max-width: 120px;

    }

    .popupForDownload .content-downloadMobile a img {
        max-width: 120px;
    }
}

/* end */

/* main  */

/* section 1 */

.home {
    height: auto;
    padding: 3.25rem 0;
}

.home::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 570px;
    background: linear-gradient(#99c1e7, #bcdaf6, #cae4fc);
    z-index: -1;
}

.heroSection_heading {
    width: 100%;
    position: relative;
}

.heroSection_heading h6 {
    font-weight: 600;
    line-height: 100%;
    font-size: var(--subHeading-font);
    text-align: center;
    color: #4591f6;
    margin-top: 3px;
    margin-bottom: 0px;
}

.heroSection_heading h1 {
    font-weight: 700;
    font-size: var(--heading-font);
    line-height: 100%;
    text-align: center;
    color: var(--heading-color);
}

.heroSection_heading .sloge {
    font-size: calc(var(--heading-font) + .25rem);

}

.heroSection_heading img {
    position: absolute;
    right: 0px;
    top: -10px;
    width: 160px;
}

.heroSection_mokup {
    text-align: center;
    margin-top: 50px;
    position: relative;
    display: flex;
    justify-content: center;
}

.heroSection_mokup .mobileFrame {
    width: 67%;
}

.heroSection_mokup .layerFrame {
    width: 150px;
    position: absolute;
    left: 0px;
    bottom: 30px;
}

.heroSection_mokup .gradHatFrame {
    width: 160px;
    position: absolute;
    right: 0px;
    bottom: 20px;
}

.herSection_subHeading {
    margin: 8rem 0 5rem 0;
    position: relative;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.herSection_subHeading h6 {
    font-weight: 600;
    font-size: var(--subHeading-font);
    line-height: 100%;
    color: var(--heading-color);
    margin-top: 3px;
    margin: 0px;
}

.herSection_subHeading h1 {
    font-weight: 700;
    font-size: var(--heading-font);
    line-height: 100%;
    color: var(--heading-color);
}

.herSection_subHeading img {
    position: absolute;
}

.TopLeft_heroImg {
    left: 130px;
    top: 0px;
    width: 45px;
}

.bottomLeft_heroImg {
    left: 65px;
    bottom: 45px;
    width: 65px;
}

.TopRight_heroImg {
    right: 130px;
    top: 0px;
    width: 65px;
}

.bottomRight_heroImg {
    right: 65px;
    bottom: 45px;
    width: 45px;
}

/* critical_thinking section 2 */

.critical_thinking {
    width: 100%;
    height: 400px;
    background-color: #fcde29;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.critical_heading {
    padding-left: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.critical_heading h6 {
    font-weight: 600;
    font-size: var(--subHeading2-font);
    line-height: 100%;
    color: var(--heading-color);
    margin: 0px;
}

.critical_heading h1 {
    font-weight: 700;
    font-size: var(--heading2-font);
    line-height: 100%;
    color: var(--heading-color);
}

.critical_heading p {
    width: 350px;
    font-weight: 500;
    font-size: 21px;
    line-height: 127.5%;
    color: #185898;
    margin-top: 25px;
}

.critical_thinking img {
    width: 100%;
}

/* ============ */

.critical_thinking_row {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
}

.column {
    /* width: 40%; */
}

.column_2 {
    /* width: 60%; */
}

/* =============== */

/* section 3 imagesSection */

.imagesSection {
    height: auto;
    width: 100%;
    padding: 6rem 0;
}

.imagesSection .smallLogo_images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.imagesSection .smallLogo_images img:nth-child(1) {
    width: 17%;
    height: auto;
}

.imagesSection .smallLogo_images img:nth-child(2) {
    width: 17%;
    height: auto;
}

.imagesSection .smallLogo_images img:nth-child(3) {
    width: 17%;
    height: auto;
}

.imagesSection .smallLogo_images img:nth-child(4) {
    width: 11%;
    height: auto;
}

.imagesSection .smallLogo_images img:nth-child(5) {
    width: 11%;
    height: auto;
}

.sectionMain_images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 5rem;
}

.sectionMain_images img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

/* section 4 learningPlan */

.learningPlan {
    width: 100%;
    height: auto;
    padding: 4rem 0 1rem 0;
    background-color: #c6fc44;
}

.learningPlan__heading {
    margin-bottom: 10px;
}

.learningPlan__heading h6 {
    font-weight: 700;
    font-size: var(--subHeading-font);
    line-height: 100%;
    text-align: center;
    color: #2da771;
}

.learningPlan__heading h1 {
    font-weight: 700;
    font-size: var(--heading-font);
    line-height: 100%;
    text-align: center;
    color: #0d5cab;
}

.learningPlan_images {
    margin-top: 4rem !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1700px;
    margin: auto;
}

.learningPlan_images div img {
    width: 100%;
    margin-bottom: 10px;
}

/* section 5 carouselSection */

.carouselSection {
    width: 100%;
    height: auto;
    padding: 3rem 0;
    background-color: #e7f2ff;
}

.carouselSection_heading h1 {
    font-weight: 700;
    font-size: var(--heading2-font);
    line-height: 120%;
    text-align: center;
    color: #0d5cab;
    margin: 0px;
}

.carouselSection_heading h6 {
    font-weight: 700;
    font-size: var(--subHeading2-font);
    line-height: 120%;
    text-align: center;
    color: #0d5cab;
}

.main-carousel {
    margin-top: 3rem !important;
    max-width: 1700px;
    margin: auto;
}

.card.technological_card {
    width: auto;
    border: 0;
    border-radius: 15px;
    background-color: #fff;
    padding: 2rem;
}

.carousel-cell {
    margin-right: 20%;
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_header h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 127.5%;
    color: #185898;
    margin-right: 10px;
    margin: 0px;
}

.card_header img {
    width: auto;
    height: 26.15px;
}

.card.technological_card .card-body {
    padding: 0px;
    margin-top: 10px;
}

.card.technological_card .card-body p {
    font-weight: 500;
    font-size: 16px;
    line-height: 127.5%;
    color: #185898;
    width: 330px;
    margin: 0px;
}

/* section 6 academicSection */

.academicSection {
    width: 100%;
    height: auto;
    padding: 4rem 0;
}

.academicSection_heading h6 {
    font-weight: 600;
    font-size: var(--subHeading-font);
    line-height: 100%;
    text-align: center;
    color: var(--heading-color);
    margin: 0px;
}

.academicSection_heading h1 {
    font-weight: 700;
    font-size: var(--heading-font);
    line-height: 100%;
    text-align: center;
    color: var(--heading-color);
}

.academicSection_heading a {
    width: 178px;
    height: 47px;
    background: #c2ee57;
    box-shadow: 0px 2.92px 0px #6ec63d;
    border-radius: 33px;
    font-weight: 700;
    font-size: 20px;
    color: var(--heading-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 40px;
}

.academic_Bg {
    margin-top: 6rem;
}

.academic_Bg img {
    width: 100%;
}

/* section 7 formSection */

.formSection {
    width: 100%;
    height: auto;
    padding-top: 1rem;
    position: relative;
    /* margin-bottom: 21.45rem; */
}

.form_Bg {
    width: 100%;
    background: url("./images/form_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 630px;
    margin-top: 8rem;
    overflow: hidden;
}

.form_Bg form {
    width: 550px;
    margin: auto;
    background: url("./images/phone-2_new.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 825px;
    margin-top: 0px;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    padding: 0 65px;
    padding-top: 100px;
}

.form_Bg form .mainLabel {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.form_Bg form input {
    background: #ffffff;
    box-shadow: inset 1px 1px 4px 3px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    height: 60px !important;
    border: 0;
    padding-left: 20px;
}

.form_Bg form textarea:focus,
.form_Bg form input:focus {
    box-shadow: none;
    box-shadow: inset 1px 1px 4px 3px rgba(0, 0, 0, 0.1);
    border: 0;
}

.form_Bg form textarea {
    background: #ffffff;
    box-shadow: inset 1px 1px 4px 3px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    height: 160px !important;
    border: 0;
    resize: none;
    margin-top: 15px;
    padding: 20px;
}

.form_Bg form textarea::placeholder,
.form_Bg form input::placeholder {
    color: #c1c1c1;
}

.form_Bg form button {
    width: 178px;
    height: 47px;
    background: #c2ee57;
    box-shadow: 0px 2.92px 0px #6ec63d;
    border-radius: 33px;
    font-weight: 700;
    font-size: 20px;
    color: var(--heading-color);
    text-decoration: none;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    border: 0;
}

.g-recaptcha {
    margin: 10px 0;
}

.rc-anchor-pt {
    position: absolute;
    right: -30px !important;
    width: 100px;
}

#error-message,
#success-message {
    margin: 0px;
    font-size: 14px;
}

/* footer */

footer {
    width: 100%;
    height: auto;
    background-color: var(--heading-color);
    margin-top: -1px;
    /* display: flex;
  align-items: center; */
    position: relative;
    padding-top: 3rem;

    /* position: fixed; */
    /* bottom: 0; */
}



.footer-row {
    display: grid;
    grid-template-columns: 1.9fr 1.1fr 0.7fr 1.1fr;
}

.footerLogo {
    padding-left: 50px;
}

.footerLogo img {
    width: 155px;
}

.footerLogo p {
    font-weight: 400;
    font-size: .8rem;
    line-height: 18px;
    color: #ffffff;
    margin-top: 25px;
    width: 280px;
}

.menuItem {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 30px;
}

.footerLinks,
.footerAppLink {
    margin-top: 20px;
}

.footerLinks ul {
    margin: 0;
    padding: 0;
}

.footerLinks ul li {
    list-style: none;
    margin-bottom: 3px;
}

.footerLinks ul li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.footerLinks ul li a:hover {
    color: #c6fc44;
    transition: all 0.3s;
}

.footerAppLink img {
    width: 200px;
    margin-bottom: 20px;
}

.copyright {
    margin-top: 1rem;
    background-color: #18427C;
    padding: 10px 0;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 62px;
    padding-right: 92px;
}


.copyright p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;

}

.copyright .container div {
    display: flex;
    gap: 20px;
}

.copyright .container div a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;

}

@media screen and (min-width:1370px) {
    .copyright .container {
        padding-right: 112px;
    }
}

/* ===== modal */

.popupModel {
    background-color: rgba(0, 0, 0, 0.7);
}

.popupModel.show .modal-dialog {
    display: block;
}


.popupModel .modal-dialog {
    display: none;
    margin: auto;
    height: 100vh;
    width: 100%;
}

.popupModel .modal-content {
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 14px;

}

.popupModel .modal-body {
    padding: 0px;
    border-radius: 14px;

}

.popupModel .app-aos-modal {
    background: linear-gradient(180deg, #BAD6F9 0%, #A0C6F7 100%);
    margin: 0;

}

.popupModel .app-aos-modal .app-aos-text {
    background: linear-gradient(180deg, #BAD6F9 0%, #A0C6F7 100%);
    padding: 3rem 1.5rem 3rem 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.app-aos-text .aso-text-img {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-aos-text .aso-text-img img {
    width: 12px;
}

.app-aos-text .aso-text-img p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #1B3153;
    margin-top: 3px;
}

.app-aos-text h4 {
    font-weight: 700;
    font-size: 32px;
    color: #335DA0;
    margin: 6px 0 20px 0;

}

.app-aos-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #545454;
}

.popupModel .close_btn {
    border: 0px solid #2a2a2a;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 11;
    background-color: #fff;
    opacity: 1;
}

.app-aos-text form input {

    width: 100%;
    height: 50px;
    background: #FFFFFF;
    box-shadow: inset 0px 0px 4px 4px rgba(0, 0, 0, 0.09);
    border-radius: 16px;
    font-weight: 500;
    font-size: 13px;
    color: #C1C1C1;
}

.app-aos-text form input:focus {
    box-shadow: inset 0px 0px 4px 4px rgba(0, 0, 0, 0.09);
    border: 0;
}

.app-aos-text form button {
    margin-top: 10px;
    width: 160px;
    height: 45px;
    background: #CBEB6F;
    border: 0;
    border-bottom: 3px solid #84C353;
    border-radius: 40px;
    font-weight: 700;
    font-size: 19px;
    color: #335DA0;

}

.popupModel .app-aos-modal .app-aos-sideImage {
    background: linear-gradient(180deg, #335DA0 0%, #12223A 100%);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    clip-path: circle(102% at 100% 49%);

}

.popupModel .app-aos-modal .app-aos-sideImage img {
    width: 100%;
}



@media screen and (max-width:991px) {

    .popupModel .app-aos-modal .app-aos-text {
        padding: 1rem 1.25rem 1rem 1.6rem;
    }

    .app-aos-text .aso-text-img img {
        width: 10px;
    }

    .app-aos-text .aso-text-img p {
        font-size: .75rem;
    }

    .app-aos-text h4 {
        font-size: 1.1875rem;
        margin: 6px 0 14px 0;

    }

    .app-aos-text p {
        font-size: .675rem;
        line-height: 1.5;
    }

    .popupModel .close_btn {
        width: 18px;
        height: 18px;
        padding: 10px;
    }

    .popupModel .modal-body form {
        margin-top: 5px;
    }

    .app-aos-text form input {
        height: 40px;
        font-size: .675rem;
        border-radius: 10px;
    }

    .app-aos-text form button {
        width: 130px;
        height: 35px;
        font-size: .875rem;

    }

    .popupModel .app-aos-modal .app-aos-sideImage {
        padding: 0 1rem;
        clip-path: circle(96% at 100% 49%);

    }


}

@media screen and (max-width:767px) {
    .popupModel .modal-dialog {
        max-width: 350px;
    }

    .popupModel .app-aos-modal {
        background: linear-gradient(180deg, #BAD6F9 0%, #A0C6F7 100%);

    }

    .popupModel .app-aos-modal .app-aos-text {
        padding: 1rem 1.25rem 1rem 1.6rem;
        margin-top: 3rem;
        text-align: center;
        background: transparent;
    }

    .app-aos-text .aso-text-img {
        justify-content: center;
    }

    .app-aos-text .aso-text-img img {
        width: 12px;
    }

    .app-aos-text .aso-text-img p {
        font-size: .9rem;
    }

    .app-aos-text h4 {
        font-size: 1.6rem;
        margin: 6px 0 20px 0;

    }

    .app-aos-text p {
        font-size: .8rem;
        line-height: 1.5;
    }

    .popupModel .close_btn {
        width: 12px;
        height: 12px;
        padding: 10px;
    }

    .popupModel .modal-body form {
        margin-top: 5px;
    }

    .app-aos-text form input {
        height: 45px;
        font-size: .75rem;
        border-radius: 14px;
    }

    .app-aos-text form button {
        width: 100%;
        height: 40px;
        font-size: 1.125rem;

    }

    .popupModel .app-aos-modal .app-aos-sideImage {
        padding: 3rem 1rem 1rem 1rem;
        clip-path: polygon(100% 100%, 100% 100%, 100% 16%, 73.9% 9.5%, 51% 6.8%, 19% 10%, 0% 14.3%, 0% 100%, 54.7% 100%);
    }
}

@media screen and (max-width:375px) {
    .popupModel .modal-dialog {
        max-width: 300px;
    }


    .app-aos-text .aso-text-img img {
        width: 11px;
    }

    .app-aos-text .aso-text-img p {
        font-size: .875rem;
    }

    .app-aos-text h4 {
        font-size: 1.5rem;
        margin: 6px 0 16px 0;

    }

    .app-aos-text p {
        font-size: .75rem;
        line-height: 1.5;
    }

    .app-aos-text form input {
        height: 40px;
        font-size: .7rem;
        border-radius: 11px;
    }

    .app-aos-text form button {
        width: 100%;
        height: 37px;
        font-size: 1rem;

    }

}

.modal-dialog {
    width: 50%;
    margin: 0px;
    margin-left: 0px !important;
}

.modal-content {
    border-radius: 0px;
    height: 100vh;
}

.modal-body {
    padding: 0px;
    height: 100%;
    overflow: auto;
    padding-bottom: 1rem;
}

.navbar-toggler .fa {
    color: #fff;
    font-size: 1.5rem;
}

.navbar-toggler {
    border: 0;
    padding: 0 !important;
    margin-right: 10px !important;

    span {
        width: 1.875rem;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
}

.modal_btn {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 1rem;
}

.btn-close {
    width: 7px;
    height: 7px;
}

.btn-close:focus {
    box-shadow: none;
}

.btn_closed {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_link {
    margin: 0px 1rem;
}

.modal_link .nav-link {
    color: #131d29;
    text-transform: capitalize;
    padding: 0px;
    font-size: 0.875rem;
    font-weight: 600;
}

.modal_link .nav-link:hover,
.modal_link .nav-link.active {
    color: #c6fc44;
}

.modal_link .nav-item {
    height: 3.5rem;
    border-bottom: 0.5px solid #b0b0b0;
    display: flex;
    align-items: center;
}

.modal_logo {
    width: 100px;
}

.download_btn_2 {
    background-color: #c2ee57;
    border-radius: 50px;
    width: 8.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
}

.download_btn_2:hover {
    background-color: #275ca5;
}

.download_btn_2:hover a {
    color: #fff;
}

.download_btn_2 a {
    text-decoration: none;
    color: #131d29;
    font-weight: 600;
    text-transform: capitalize;
    width: 8.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.download_btn_2 a:hover {
    color: #fff;
}

/* ==== */

@media screen and (max-width: 1200px) {
    .navbar-brand img {
        width: 130px;
    }

    header .navbar {
        height: 110px;
    }

    /* section 1 */

    .home {
        padding: 2rem 0 1rem 0;
    }

    .home::after {
        height: 380px;
    }

    .heroSection_heading img {
        right: 40px;
        width: 80px;
    }

    .heroSection_mokup {
        margin-top: 30px;
    }

    .heroSection_mokup .mobileFrame {
        width: 62%;
    }

    .heroSection_mokup .layerFrame {
        width: 110px;
        left: 10px;
    }

    .heroSection_mokup .gradHatFrame {
        width: 120px;
        right: 10px;
    }

    .herSection_subHeading {
        margin: 1.5rem 0 2rem 0;
        height: 240px;
    }

    .critical_thinking {
        height: 360px;
    }

    /* section 3 imagesSection */

    .sectionMain_images img {
        height: 270px;
        object-fit: fill;
    }

    .footerLogo p {
        font-size: 14px;
    }

    .copyright .container {
        padding-right: 6%;
    }
}

@media screen and (max-width: 991px) {
    .navbar-brand img {
        width: 110px;
    }

    header .navbar {
        height: 90px;
    }

    .navbar-nav .nav-item {
        padding-right: 20px;
    }

    .navbar-nav {
        padding-right: 0px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 12px;
    }

    .navbar-nav .nav-item .nav-link.downloadBtn {
        width: 140px;
        font-size: 16px;
        height: 40px;
    }

    /* section 1 */

    .home {
        padding: 1rem 0 1rem 0;
    }

    .home::after {
        height: 320px;
    }

    .heroSection_heading img {
        right: 40px;
        width: 80px;
    }

    .heroSection_mokup {
        margin-top: 30px;
    }

    .heroSection_mokup .mobileFrame {
        width: 62%;
    }

    .heroSection_mokup .layerFrame {
        width: 80px;
        left: 20px;
        bottom: 25px;
    }

    .heroSection_mokup .gradHatFrame {
        width: 85px;
        right: 20px;
        bottom: 10px;
    }

    .herSection_subHeading {
        margin: 1.5rem 0 2rem 0;
        height: 150px;
    }

    .TopLeft_heroImg {
        left: 80px;
        top: 20px;
        width: 25px;
    }

    .bottomLeft_heroImg {
        left: 40px;
        bottom: 40px;
        width: 33px;
    }

    .TopRight_heroImg {
        right: 80px;
        top: 20px;
        width: 33px;
    }

    .bottomRight_heroImg {
        right: 40px;
        bottom: 40px;
        width: 25px;
    }

    /* critical_thinking section 2 */

    .critical_thinking {
        height: 290px;
    }

    .critical_heading {
        padding-left: 20px;
        margin-top: 10px;
    }

    .critical_heading p {
        width: 300px;
        font-size: 15px;
    }

    .sectionMain_images img {
        height: 200px;
        object-fit: fill;
    }

    .carousel-cell {
        margin-right: 15%;
    }

    .form_Bg {
        height: 450px;
        margin-top: 3rem;
    }

    #error-message,
    #success-message {
        font-size: 13px;
    }

    .rc-anchor-light.rc-anchor-normal,
    .rc-anchor-light.rc-anchor-compact {
        margin: auto;
    }

    .form_Bg form {
        width: 350px;
        background: url("./images/phone-2_new.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 530px;
        padding: 0 40px;
        padding-top: 60px;
    }

    .form_Bg form .mainLabel {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .form_Bg form input {
        height: 40px !important;
        font-size: 14px;
    }

    .form_Bg form textarea {
        height: 100px !important;
        margin-top: 10px;
        font-size: 14px;
    }

    .form_Bg form button {
        width: 60%;
        height: 40px;
        background: #c2ee57;
        margin-top: 20px;
        font-size: 17px;
    }

    .footerLogo {
        padding-left: 0px;
    }

    .footerLogo img {
        width: 120px;
    }

    .footerLogo p {
        font-size: 13px;
        width: 90%;
    }

    .menuItem {
        font-size: 18px;
        line-height: 10px;
    }

    .footerLinks ul li a {
        font-size: 13px;
    }

    .footerAppLink button {
        width: 90%;
    }

    .footerAppLink button img {
        width: 100%;
    }

    .footerAppLink img {
        width: 90%;
        margin-bottom: 10px;
    }

    .copyright .container {
        padding-right: 4%;
        padding-left: 1%;
    }

    .copyright p {
        font-size: 13px;

    }

    .copyright .container div a {
        font-size: 13px;

    }
}

@media screen and (max-width: 767px) {
    header .navbar {
        height: 70px;
    }

    .navbar-brand img {
        width: 90px;
    }

    .navbar-toggler {
        border: 0px solid transparent;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        width: 1.25rem;
        height: 1.25rem;
    }

    /* section 1 */
    .home {
        padding: 0.5rem 0 1rem 0;
    }

    .home::after {
        height: 250px;
    }

    .heroSection_heading img {
        right: 20px;
        width: 70px;
    }

    .heroSection_mokup {
        margin-top: 20px;
    }

    .heroSection_mokup .mobileFrame {
        width: 65%;
    }

    .heroSection_mokup .layerFrame {
        width: 55px;
        left: 10px;
        bottom: 25px;
    }

    .heroSection_mokup .gradHatFrame {
        width: 60px;
        right: 10px;
        bottom: 10px;
    }

    .herSection_subHeading {
        margin: 1rem 0 1rem 0;
        height: 150px;
    }

    .TopLeft_heroImg {
        left: 80px;
        top: 20px;
        width: 25px;
    }

    .bottomLeft_heroImg {
        left: 40px;
        bottom: 40px;
        width: 33px;
    }

    .TopRight_heroImg {
        right: 80px;
        top: 20px;
        width: 33px;
    }

    .bottomRight_heroImg {
        right: 40px;
        bottom: 40px;
        width: 25px;
    }

    /* critical_thinking section 2 */

    .critical_thinking {
        height: 230px;
    }

    .critical_heading {
        padding-left: 20px;
        margin-top: 10px;
    }

    .critical_heading p {
        width: 200px;
        font-size: 12px;
        margin-top: 10px;
    }

    .critical_heading h6 {
        font-size: 14px;
    }

    .critical_heading h1 {
        font-size: 20px;
    }

    /* section 3 imagesSection */

    .imagesSection {
        padding: 2rem 0;
    }

    .imagesSection .smallLogo_images {
        width: 80%;
        margin: auto;
    }

    .sectionMain_images {
        margin-top: 2rem;
    }

    .sectionMain_images {
        gap: 5px;
    }

    .sectionMain_images img {
        height: 150px;
        object-fit: fill;
    }

    .learningPlan {
        padding: 1rem 0;
    }

    .learningPlan__heading h6 {
        margin: 0px;
    }

    .learningPlan_images {
        margin-top: 1.5rem !important;
        gap: 5px;
    }

    .learningPlan_images div img {
        margin-bottom: 05px;
    }

    .learningPlan_images div:nth-child(2) img {
        width: 100%;
        height: 97%;
    }

    .carouselSection {
        padding: 1.5rem 0;
    }

    .main-carousel {
        margin-top: 1.5rem !important;
    }

    .card.technological_card {
        padding: 1.25rem;
    }

    .card_header h5 {
        font-size: 16px;
    }

    .card_header img {
        height: 14px;
    }

    .card.technological_card .card-body p {
        font-size: 12px;
        width: 230px;
    }

    .carousel-cell {
        margin-right: 15%;
    }

    .academicSection {
        padding: 2.5rem 0;
    }

    .academic_Bg {
        margin-top: 2rem;
    }

    .academicSection_heading a {
        width: 90px;
        height: 25px;
        font-size: 13px;
        margin-top: 15px;
    }

    .form_Bg {
        height: 460px;
        margin-top: 3rem;
    }

    #error-message,
    #success-message {
        font-size: 12px;
        text-align: center;
    }

    .form_Bg form {
        width: 310px;
        background: url("./images/phone-2.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 460px;
        padding: 0 40px;
        padding-top: 60px;
    }

    .form_Bg form .mainLabel {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .form_Bg form input {
        height: 40px !important;
        font-size: 14px;
    }

    .form_Bg form textarea {
        height: 100px !important;
        margin-top: 10px;
        font-size: 14px;
    }

    footer {
        height: auto;
        /* padding: 3rem 0; */
    }

    .footer-row {
        grid-template-rows: 2;
    }

    .footer__col:first-child {
        grid-column: span 5;
    }

    .footer__col:last-child {
        grid-column: span 2;
    }

    .footerLogo {
        padding-left: 0px;
    }

    .footerLogo img {
        width: 80px;
    }

    .footerLogo p {
        font-size: 13px;
        width: 90%;
        margin-top: 10px;
    }

    .menuItem {
        font-size: 18px;
        line-height: 10px;
    }

    .footerLinks ul li a {
        font-size: 13px;
    }

    .footerAppLink button {
        width: 60%;
    }

    .footerAppLink button img {
        width: 100%;
    }

    .footerAppLink img {
        width: 60%;
        margin-bottom: 10px;
    }

    .copyright .container {
        padding-right: 1%;
        padding-left: 1%;
    }

    .copyright .container div {
        gap: 15px;
    }

    .copyright p {
        font-size: 12px;

    }

    .copyright .container div a {
        font-size: 12px;

    }
}

@media screen and (max-width: 575px) {

    header {
        position: sticky;
        top: 0;
        z-index: 90;

    }

    header.active {
        background: linear-gradient(#99c1e7, #bcdaf6, #cae4fc);
    }

    .modal-dialog {
        width: 70%;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .btn-close:focus {
        box-shadow: none;
    }

    .btn_closed {
        width: 2rem;
        height: 2rem;
    }

    .modal_logo {
        width: 80px;
    }

    header .navbar {
        height: 70px;
    }

    .navbar-brand img {
        width: 90px;
    }

    .navbar-toggler {
        border: 0px solid transparent;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        width: 1.25rem;
        height: 1.25rem;
    }

    /* section 1 */
    .home {
        padding: 0.5rem 0 1rem 0;
    }

    .home::after {
        height: 210px;
    }

    .heroSection_heading img {
        right: 20px;
        width: 50px;
    }

    .heroSection_mokup {
        margin-top: 20px;
    }

    .heroSection_mokup .layerFrame {
        width: 45px;
        left: 5px;
        bottom: 20px;
    }

    .heroSection_mokup .gradHatFrame {
        width: 50px;
        right: 0px;
        bottom: 10px;
    }

    .herSection_subHeading {
        margin: 1rem 0 0 0;
        height: 100px;
    }

    .TopLeft_heroImg {
        left: 40px;
        top: 10px;
        width: 20px;
    }

    .bottomLeft_heroImg {
        left: 20px;
        bottom: 20px;
        width: 25px;
    }

    .TopRight_heroImg {
        right: 40px;
        top: 10px;
        width: 25px;
    }

    .bottomRight_heroImg {
        right: 20px;
        bottom: 20px;
        width: 20px;
    }

    /* critical_thinking section 2 */

    .critical_thinking {
        height: 160px;
    }

    .critical_heading {
        padding-left: 0px;
        margin-top: 10px;
    }

    .critical_heading p {
        width: 160px;
        font-size: 11px;
        margin-top: 10px;
    }

    .critical_heading h6 {
        font-size: 12px;
    }

    .critical_heading h1 {
        font-size: 18px;
    }

    /* section 3 imagesSection */

    .imagesSection {
        padding: 2rem 0;
    }

    .imagesSection .smallLogo_images {
        width: 80%;
        margin: auto;
    }

    .sectionMain_images {
        margin-top: 2rem;
    }

    .sectionMain_images {
        gap: 5px;
    }

    .sectionMain_images img {
        height: 100px;
        object-fit: fill;
    }

    .learningPlan {
        padding: 1rem 0;
    }

    .learningPlan__heading h6 {
        margin: 0px;
    }

    .learningPlan_images {
        margin-top: 1.5rem !important;
        gap: 5px;
    }

    .learningPlan_images div img {
        margin-bottom: 05px;
    }

    .learningPlan_images div:nth-child(2) img {
        width: 100%;
        height: 97%;
    }

    .carouselSection {
        padding: 1.5rem 0;
    }

    .main-carousel {
        margin-top: 1.5rem !important;
    }

    .card.technological_card {
        padding: 1.25rem;
    }

    .card_header h5 {
        font-size: 15px;
    }

    .card_header img {
        height: 13px;
    }

    .card.technological_card .card-body p {
        font-size: 11px;
        width: 220px;
    }

    .carousel-cell {
        margin-right: 10%;
    }

    .academicSection {
        padding: 2.5rem 0;
    }

    .academic_Bg {
        margin-top: 2rem;
    }

    .academicSection_heading a {
        width: 90px;
        height: 25px;
        font-size: 13px;
        margin-top: 15px;
    }

    .form_Bg {
        height: 460px;
    }

    #error-message,
    #success-message {
        font-size: 12px;
        text-align: center;
    }

    .form_Bg form {
        padding: 0 40px;
        padding-top: 60px;
    }

    .form_Bg form .mainLabel {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .form_Bg form button {
        font-size: 15px;
    }

    footer {
        height: auto;
        /* padding: 3rem 0; */
    }

    .footer-row {
        grid-template-rows: 2;
    }

    .footer__col:first-child {
        grid-column: span 5;
    }

    .footer__col:nth-child(2) {
        grid-column: span 2;
    }

    .footer__col:last-child {
        grid-column: span 4;
    }

    .footerLogo {
        padding-left: 0px;
    }

    .footerLogo img {
        width: 80px;
    }

    .footerLogo p {
        font-size: 13px;
        width: 90%;
        margin-top: 10px;
    }

    .menuItem {
        font-size: 18px;
        line-height: 10px;
    }

    .footerLinks ul li a {
        font-size: 13px;
    }

    .footerAppLink div {
        display: flex;
        gap: 10px;
        width: 100%;

    }

    .footerAppLink img {
        width: 140px;
    }

    .footerAppLink button img {
        width: 100%;
    }

    .footerAppLink img {
        width: 100%;
        margin-bottom: 10px;
    }

    .copyright .container {
        padding-right: 1%;
        padding-left: 1%;
        flex-direction: column-reverse;
    }

    .copyright .container div {
        gap: 20px;
    }

    .copyright p {
        font-size: 12px;
        text-align: center;
        margin-top: 5px;
    }

    .copyright .container div a {
        font-size: 12px;

    }
}

@media screen and (max-width: 401px) {
    .modal_btn {
        height: 4rem;
    }

    header .navbar {
        height: 60px;
    }

    .navbar-brand img {
        width: 80px;
    }

    .navbar-toggler {
        border: 0px solid transparent;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        width: 1.25rem;
        height: 1.25rem;
    }

    /* section 1 */
    .home {
        padding: 0.5rem 0 1rem 0;
    }

    .home::after {
        height: 180px;
    }

    .heroSection_heading img {
        right: 10px;
        width: 40px;
    }

    .heroSection_mokup {
        margin-top: 20px;
    }

    .heroSection_mokup .layerFrame {
        width: 35px;
        left: 0px;
        bottom: 10px;
    }

    .heroSection_mokup .gradHatFrame {
        width: 50px;
        right: -5px;
        bottom: -05px;
    }

    .herSection_subHeading {
        margin: 1rem 0 0 0;
        height: 80px;
    }

    .TopLeft_heroImg {
        left: 40px;
        top: 10px;
        width: 12px;
    }

    .bottomLeft_heroImg {
        left: 20px;
        bottom: 20px;
        width: 17px;
    }

    .TopRight_heroImg {
        right: 40px;
        top: 10px;
        width: 17px;
    }

    .bottomRight_heroImg {
        right: 20px;
        bottom: 20px;
        width: 12px;
    }

    /* critical_thinking section 2 */

    .critical_thinking {
        height: 140px;
    }

    .critical_heading {
        padding-left: 0px;
        margin-top: 10px;
    }

    .critical_heading p {
        width: 120px;
        font-size: 9px;
        margin-top: 10px;
    }

    .critical_heading h6 {
        font-size: 10px;
    }

    .critical_heading h1 {
        font-size: 15px;
    }

    /* section 3 imagesSection */

    .imagesSection {
        padding: 2rem 0;
    }

    .imagesSection .smallLogo_images {
        width: 80%;
        margin: auto;
    }

    .sectionMain_images {
        margin-top: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .sectionMain_images {
        gap: 4px;
    }

    .sectionMain_images img {
        height: 120px;
        object-fit: cover;
    }

    .learningPlan {
        padding: 1rem 0;
    }

    .learningPlan__heading h6 {
        margin: 0px;
    }

    .learningPlan_images {
        margin-top: 1.5rem !important;
        column-gap: 7px;
        row-gap: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .learningPlan_images div img {
        margin-bottom: 07px;
    }

    .learningPlan_images div:nth-child(2) img {
        width: 100%;
        height: 97%;
    }

    .carouselSection {
        padding: 1.5rem 0;
    }

    .main-carousel {
        margin-top: 1.5rem !important;
    }

    .card.technological_card {
        padding: 1rem;
    }

    .card_header h5 {
        font-size: 12px;
    }

    .card_header img {
        height: 13px;
    }

    .card.technological_card .card-body p {
        font-size: 10px;
        width: 200px;
    }

    .carousel-cell {
        margin-right: 8%;
    }

    .academicSection {
        padding: 2rem 0;
    }

    .academic_Bg {
        margin-top: 1rem;
    }

    .academicSection_heading a {
        width: 80px;
        height: 20px;
        font-size: 11px;
        margin-top: 15px;
    }

    /* .academic_Bg img {
    height: 150px;
    object-fit: cover;
    object-position: center;
  } */
    #error-message,
    #success-message {
        font-size: 12px;
        text-align: center;
    }

    .form_Bg form .mainLabel {
        font-size: 20px;
    }

    .form_Bg form button {
        font-size: 15px;
    }

    footer {
        height: auto;
        padding: 3rem 0 0 0;
    }

    .footer-col-1 {
        width: 90%;
    }

    .footer-col-2 {
        width: 55%;
    }

    .footer-col-3 {
        width: 40%;
    }

    .footer-col-4 {
        width: 70%;
    }

    .footerLogo {
        padding-left: 0px;
    }

    .footerLogo img {
        width: 80px;
    }

    .footerLogo p {
        font-size: 11px;
        width: 90%;
        margin-top: 10px;
    }

    .menuItem {
        font-size: 18px;
        line-height: 10px;
    }

    .footerLinks ul li a {
        font-size: 12px;
    }

    .footerAppLink div {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .footerAppLink img {
        width: 100% !important;
    }

    .footerAppLink button img {
        width: 100%;
    }

    .footerAppLink img {
        width: 110px;
        margin-bottom: 10px;
    }
}







/* downlaod page css */




.download-zape {
    width: 100%;
    height: 100vh;
    background: url('./images/download-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 640px;
    position: relative;
}

.back-link {
    position: absolute;
    top: 5%;
    left: 5%;
}

.back-link a {
    font-weight: 500;
    font-size: 18px;
    color: #335DA0;
    text-decoration: none;

}

.back-link a i {
    margin: 0 5px;
}

.download-zape-content {
    max-width: 600px;
    text-align: center;
}

.download-logo img {
    width: 130px;
    margin-bottom: 20px;
}

.download-zape-content h3 {
    font-weight: 700;
    font-size: 3rem;
    color: #335DA0;

}

.qr-scanner {
    background-color: #fff;
    width: 210px;
    height: 210px;
    padding: 5px;
    margin: 2rem auto;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
}

.qr-scanner img {
    width: 100%;
    height: 100%;
}

.download-zape-content p {
    font-weight: 500;
    font-size: 18px;
    color: #333333;

}

.store-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 1.5rem;
}

.store-links a {
    width: 25%;
}

.store-links a img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 575px) {

    .download-zape {
        min-height: 100vh;
        height: 42rem;
    }

    .download-logo img {
        width: 110px;
    }

    .download-zape-content h3 {
        font-size: 2rem;
    }


    .download-zape-content p {
        font-size: .875rem;
        padding: 0 .5rem;
    }

    .store-links a {
        width: 35%;
    }
}


/* tabs.css */

.custom-tab-section {
    /* background-color: #cce4fc;
    padding: 3rem 0; */
}

.tabs-container {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.nav-pills .nav-link {
    background-color: #e6f0fa;
    color: #000;
    border-radius: 0.5rem;
    margin-bottom: 5px;
    text-align: left;
}

.nav-pills .nav-link.active {
    background-color: #ffffff;
    color: #000;
    font-weight: bold;
    border-radius: 0.5rem;
}

.subject-box {
    background-color: #f7faff;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    height: 100%;
}

.subject-box h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.subject-box ul {
    padding-left: 1.2rem;
}

.subject-box ul li {
    margin-bottom: 0.4rem;
}

.tab-headings {
    background-color: #D6E7F3;
    padding: 0px !important;
}

.curriculum-container .tabs-container {
    padding: 0px !important;
}

.curriculum-container .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: black !important;
    background-color: white !important;
    border-top-left-radius: 1.45rem;
    border-bottom-left-radius: 1.45rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.curriculum-container .nav-pills .nav-link {
    border-top-left-radius: 1.45rem;
    border-bottom-left-radius: 1.45rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.curriculum-container .nav-link {
    color: #0D5CAB !important;
    font-weight: 500 !important;
}

.curriculum-container .list-unstyled {
    color: #0D5CAB !important;
}

.curriculum-container .tab-headings .nav-pills{
padding-left: 10px;
padding-top: 20px;
padding-bottom: 20px;
}
.curriculum-container .tab-headings{
     
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    }


    .curriculum-container .subject-box ul {
        padding-left: 0px;
    }

    .curriculum-container .tab-pane {
        padding: 13px;
    }

    .curriculum-container {
        background: linear-gradient(#99c1e7, #bcdaf6, #cae4fc) !important;
        /* height: 100vh !important; */
        padding: 3.25rem 0;
    }
    
    /* .curriculum-container::after {
        height: 100vh !important;
    } */

    .curriculum-container .curriculum-heading{
        color: #0D5CAB ;
    }
    .curriculum-container .curriculum-para{
        color: #0D5CAB;
        /* font-weight: 500; */
    }

    .responsive-padding {
        /* padding-left: 10px;
        padding-right: 10px; */
      }
      
      @media (min-width: 768px) {
        /* md and up */
        .responsive-padding {
          padding-left: 10rem;
          padding-right: 10rem;
        }
      }
      




.topic-list {
    max-height: 445px; /* Adjust so you see ~10 topics */
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

/* Optional: make scrollbar look nicer */
.topic-list::-webkit-scrollbar {
    width: 6px;
}
.topic-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

