:root {
    --light-purple: #F2EAFC;
    --violet: #431C79;
    --white: #ffffff;
    --green: #69D915;
    --black: #000000;
    --bg-light-blue: #e5f5ff;
    --bg-text-blue: #528ae9;
    --button-bg-grey: #424242;
    --light-grey: #F8F8F8;
    --shadow-grey: #e1e0e0;
}

body {
    /* max-width: 1530px; */
    /* margin: auto; */
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
}

/* Top header */
.ribbon-header {
    background-color: var(--violet);
    color: var(--white);
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}

/* Banner section starts here */
.banner-section {
    /* background-image: url("./assets/banner-image.jpg"); */
    background: linear-gradient(0deg, rgba(55, 0, 255, 0.3), rgba(149, 148, 231, 0.3)), url(/static/image/student_course_images/banner-image.jpg);
    /* background: linear-gradient(0deg, rgba(255, 0, 150, 0.3), rgba(255, 0, 150, 0.3)), url(./assets/banner-image.jpg); */
    /* height: 500px; */
    width: 100%;
    background-size: cover;
    background-position: center;
}

.banner-content {
    display: flex;
    flex-direction: column;
    /* background-color: black; */
    height: 100%;
    /* position: relative; */

}

.banner-content .banner-texts {
    color: var(--white);
    padding: 20px 10px;
    /* position: absolute; */
}

.banner-texts p:first-of-type {
    color: var(--green);
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

.banner-texts h1 {
    font-size: 20px;
    padding-bottom: 10px;
}

.banner-texts p:last-of-type {
    font-size: 16px;
}

/* Get started today box starts here inside Banner */
.get-started-box {
    background-color: var(--white);
    margin: 20px;
    padding: 20px 10px;
}

.get-started-box h2 {
    font-size: 20px;
    padding-bottom: 10px;
}

.get-started-box p {
    padding-bottom: 25px;
    font-size: 17px;
}

.get-started-box a {
    display: block;
    text-decoration: none;
    padding: 20px;
    text-align: center;
}

.get-started-box a:first-of-type {
    border: 1px solid var(--violet);
    color: var(--violet);
    padding: 20px;
}

.get-started-box a:last-of-type {
    color: var(--white);
    background-color: var(--black);
    margin-top: 20px;
    font-weight: bold;
}

/* Get started today box ends here inside Banner */
/* Banner section ends here */

/* Tab view section starts here */
/* Tab titles starts here */
.tab_titles {
    border-bottom: 1px solid gray;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    overflow: auto;
    scrollbar-width: none;
    /* width: 100%; */
}

.tab_titles a {
    display: block;
    width: max-content;
    padding: 20px;
    text-decoration: none;
    color: grey;
    font-weight: 600;
    cursor: pointer;
}

.tab_titles .tab_active {
    border-bottom: 1.5px solid var(--bg-text-blue);
    color: var(--bg-text-blue);
}

.tab_content {
    display: none;
}

.tab_content.tab_active {
    display: block;
}


/* Overview section starts here */
.Overview-section {
    margin: 20px 10px;
}

.Overview-section h1 {
    font-size: 20px;
}

.Overview-section p.overview-description {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 30px;
}

.youtube-enrollment-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Youtube video */
.youtube-enrollment-info iframe {
    width: 100%;
    height: 340px;
}

/* Enrollment information card */
.enrollment-info-card {
    background-color: var(--bg-light-blue);
}

.enrollment-info {
    padding: 10px;
}

.enrollment-info h2 {
    /* font-size: 24px; */
}

.enrollment-info p {
    padding-top: 10px;
    padding-bottom: 15px;
}

.enrollment-info p span {
    color: var(--bg-text-blue);
}

.enrollment-info h3 {
    color: var(--violet);
}

.enrollment-info-card p.enroll-now {
    background-color: var(--button-bg-grey);
    color: var(--white);
    cursor: pointer;
    display: block;
    /* margin-top: 15px; */
    padding: 10px;
    text-align: center;
    text-decoration: none;
}

.course-all-detail {
    display: flex;
    gap: 20px;
    /* font-size: 14px; */
}

.course-all-detail p:first-of-type {
    min-width: 30%;
}

.course-all-detail .tution-fee {
    color: var(--bg-text-blue);
    font-weight: 600;
    font-size: 20px;
}

.course-all-detail .info-icon img {
    width: 15px;
}

/* Overview section ends here */

/* curriculum section starts here */
.curriculum-section {
    margin: 20px 10px;
}

.curriculum-section h1 {
    font-size: 20px;
}

.curriculum-section p.curriculum-desc {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 30px;
}

/* Modules and Instructor strats here */
.modules-instructor {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-module {
    /* margin: 30px auto; */
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid grey;
}

.faq-module .module-title {
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.faq-module .module-title h2 {
    font-size: 20px;
}

.module-title {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.faq-module img.module-dropdwn {
    width: 20px;
    margin-right: 10px;
}

.faq-module.module_active img.module-dropdwn {
    transform: rotate(180deg);
}

.faq-module .module-outcome {
    max-height: 0px;
    width: 100%;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.faq-module.module_active .module-outcome {
    max-height: max-content;
}

.faq-module .module-outcome ul {
    list-style: disc;
    /* padding-bottom: 20px; */
}

.faq-module ul.module-outcome-ul {
    padding-top: 20px;
}

.module-outcome ul li {
    font-size: 18px;
}

.module-outcome ul li::marker {
    color: #69D915;
    font-size: 30px;
}

/* Instructor card */
.instructor-card {
    background-color: var(--bg-light-blue);
    margin-top: 20px;
}

.instructors-card {
    padding: 30px 10px 0px;
}

.instructor-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.instructor-cardp:first-child {
    font-size: 18px;
}

.instructors-detail {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.instructors-detail img {
    width: 100px;
    border-radius: 50%;
}

.instructors-detail p.instructor-name {
    color: var(--violet);
    font-size: 20px;
    font-weight: 600;
}

.instructors-detail p.instructor-skills,
.instructors-detail p.instructor-skills {
    font-size: 16px;
}

.instructor-one {
    border-bottom: 1px solid grey;
    padding-bottom: 35px;
}

.instructor-enroll p {
    background-color: var(--button-bg-grey);
    color: var(--white);
    display: block;
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/* Modules and Instructor ends here */
/* curriculum section ends here */

/* Admissions Tab section starts here */
.admission-section {
    margin: 20px 10px;
}

.admission-section h1 {
    font-size: 20px;
}

.admission-section p.admission-desc {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 30px;
}

.enroll-process-card-section {
    background-color: var(--light-grey);
    padding: 30px 15px;
}

.enroll-process-card-section p.enroll-desc {
    font-size: 20px;
    font-weight: 600;
}

.enroll-process-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.enroll-process-cards .process-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;

}

.process-cards .process-card-num {
    color: var(--bg-text-blue);
    font-weight: 600;
    font-size: 40px;
}

.process-cards .card-details p {
    font-size: 18px;
}

.process-border {
    display: none;
}

.admission-section p.have-question {
    margin-top: 15px;
}

.admission-section p.have-question span {
    color: var(--bg-text-blue);
}

.admission-section p.have-question a {
    text-decoration: none;
    color: var(--black);
}

/* Admissions Tab section ends here */

/* Skills you will gain Tab section starts here */
.skills-you-will-gain-section {
    margin: 20px 10px;
}

.skills-you-will-gain-section h1 {
    font-size: 20px;
}

.skills-you-will-gain-section p.skills-gain-desc {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 30px;
}

p.skills-gain-desc br {
    display: none;
}

.skills-gain-list-resources {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skills-gain-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skills-gain-list-items {
    display: flex;
    gap: 15px;
    align-items: start;
}

.skills-gain-list-items img {
    width: 40px;
    align-content: start;
    /* font-weight: bold; */
}

.skills-gain-list-items h2 {
    font-weight: bold;
}

.skills-gain-list-items p {
    font-size: 18px;
}

.skill-gain-cards {
    margin: 30px auto;
    /* margin-bottom: 30px; */
}

.skill-gain-cards h3 {
    font-size: 20px;
}

.skill-gain-cards-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: 10px;
}

.skill-gain-cards-list p {
    background-color: var(--light-purple);
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 15px;
}

.skills-gain-resources {
    background-color: var(--bg-light-blue);
    padding: 40px 10px;
}

.skills-gain-resources h2 {
    font-size: 22px;
    padding-bottom: 25px;
    border-bottom: 1px solid grey;
}

.exclusive-resources {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.available-resources {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* .available-resources .resource-icon {} */

.available-resources .resource-icon img {
    width: 30px;
}

.resource-list p {
    font-size: 18px;
    margin-top: 10px;
}

/* Skills you will gain Tab section starts here */

/* Career Tab section starts here */
.career-section {
    margin: 20px 10px;
}

.career-section h1 {
    font-size: 20px;
}

/* Left column */
.career-flex .career-card-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-card-box {
    box-shadow: 1px 1px 3px 3px var(--shadow-grey);
    padding: 20px 10px;
    margin: 20px auto 40px;
}

.develope-demand-skills h2 {
    font-size: 20px;
    /* margin: 20px auto; */
}

.develope-demand-skills p.skill-desc {
    font-size: 20px;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
}

.demand-skill-list {
    margin: 20px auto;
}

.develope-demand-skills p.skills-lists {
    display: flex;
    gap: 10px;
    align-items: start;
    margin: 10px auto auto;
    font-size: 20px;
}

.develope-demand-skills p.skills-lists img {
    width: 35px;
    height: 50px;
}

.career-card-box .advance-career h2 {
    font-size: 20px;
    margin: 20px auto;
    padding-bottom: 25px;
    border-bottom: 1px solid gray;
}

.advance-career .expectated-salary {
    display: flex;
    gap: 15px;
    height: 100%;
}

.advance-career .expectated-salary:first-of-type {
    margin-bottom: 20px;
}

.expectated-salary .border-blue {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    border: 3px solid var(--bg-text-blue);
    height: 60px;
}

.expectated-salary p:first-of-type {
    font-size: 22px;
    font-weight: 600;
}

.expectated-salary p:last-of-type {
    font-size: 18px;
    margin-top: 5px;
    /* margin-bottom: 20px; */
}

/* Right column */
.in-demand-jobs-card {
    background-color: var(--bg-light-blue);
    padding: 20px 10px;
}

.in-demand-jobs-card h2 {
    font-size: 20px;
    margin: 20px auto;
    padding-bottom: 25px;
    border-bottom: 1px solid gray;
}

.in-demand-jobs-card p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Certificate */
.certificate-showcase {
    background-color: var(--light-purple);
    padding: 20px 10px;
    margin: 30px auto;
    width: 100%;
    /* position: relative; */
}

.certificate-showcase h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.certificate-details h3 br {
    display: none;
}

.certificate-showcase p {
    font-size: 18px;
    margin-bottom: 30px;
}

.certificate-details p br {
    display: none;
}

.certificate-showcase .certificate img {
    background-position: cover;
    width: 100%;
    height: 100%;
    /* position: absolute; */
}

.career-section .summer-session-enroll {
    padding: 30px 10px;
    box-shadow: 1px 1px 3px 3px var(--shadow-grey);
}

.career-section .summer-session-enroll h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.career-section .summer-session-enroll p {
    font-size: 18px;
}

.enroll-request-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    font-size: 20px;
}

.enroll-request-info .session-enroll {
    background-color: var(--black);
    color: var(--white);
    cursor: pointer;
    text-align: center;
    padding: 20px;
    width: 80%;
}

.enroll-request-info a.request-info {
    display: block;
    border: 1px solid var(--violet);
    color: var(--violet);
    cursor: pointer;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    width: 80%;
}

/* Career Tab section starts here */

/* Student Experience Tab section starts here */
.student-exp-section {
    margin: 20px 10px;
}

.student-exp-section h1 {
    font-size: 20px;
}

.student-exp-cards {
    display: grid;
    grid-template-columns: auto;
    gap: 40px;
    margin-top: 30px;
    /* grid-template-columns: auto auto; */
    /* padding: 0 !important; */
}

.individual-exp-card {
    /* border: 1px solid grey; */
    box-shadow: 1px 1px 3px 3px var(--shadow-grey);
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: 30px 10px;
}

.individual-exp-card img {
    width: 100px;
    border-radius: 50%;
}

.individual-exp-card h2 {
    font-weight: 600;
}

.individual-exp-card p.university-name,
.individual-exp-card p.student-city {
    color: var(--violet);
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
}

.individual-exp-card p.experience-desc {
    font-size: 22px;
}

.land-dream-jobs {
    background-color: var(--light-purple);
}

.land-dream-jobs {
    background-color: var(--light-purple);
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 10px;
    margin: 30px auto;
}

.land-dream-jobs h3 {
    font-size: 22px;
}

.land-dream-jobs p {
    margin-top: 15px;
    font-size: 18px;
}

.land-dream-jobs .land-job-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.land-dream-jobs .land-job-img img {
    width: 300px;
}

/* Student Experience Tab section ends here */

/* Tab view section ends here */


@media only screen and (min-width: 360px) {
    .ribbon-header {
        font-size: 14px;
    }

    /* Banner section starts here */
    /* Get started today box starts here inside Banner */
    .get-started-box a:first-of-type {
        font-weight: 600;
    }

    /* Get started today box ends here inside Banner */
    /* Banner section ends here */

    /* Tab view section starts here */
    /* Admissions Tab section starts here */
    .process-cards .process-card-num {
        font-size: 30px;
    }

    .process-cards .card-details h2 {
        font-size: 20px;
    }

    /* Admissions Tab section ends here */

    /* Student Experience Tab section starts here */
    .individual-exp-card p.experience-desc {
        font-size: 20px;
    }

    /* Student Experience Tab section ends here */
    /* Tab view section ends here */
}

@media only screen and (min-width: 500px) {

    /* Banner section starts here */
    /* Get started today box starts here inside Banner */
    .get-started-box {
        margin: 30px 50px;
        padding: 20px;
    }

    .get-started-box h2 {
        font-size: 22px;
    }

    /* Get started today box ends here inside Banner */
    /* Banner section ends here */

    /*  */
    /*  */
    .student-exp-section {
        margin: 20px 40px;
    }
}

@media only screen and (min-width: 700px) {
    .ribbon-header {
        font-size: 17px;
    }

    /* Banner section starts here */
    .banner-content {
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding: 30px 15px;
    }

    /* Get started today box starts here inside Banner */
    .get-started-box {
        margin: auto;
        padding: 20px;
    }

    /* Get started today box ends here inside Banner */
    /* Banner section ends here */

    /* Tab view section starts here */
    .tab_titles {
        margin: 40px 30px auto;
    }

    /* Overview section starts here */
    .Overview-section {
        margin: 20px 30px 50px;
    }

    .youtube-enrollment-info {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .youtube-enrollment-info iframe {
        height: auto;
    }

    .enrollment-info-card {
        width: 70%;
    }

    .enrollment-info h2 {
        font-size: 24px;
    }

    /* Overview section ends here */

    /* Curriculum Tab section starts here */
    .curriculum-section {
        margin: 20px 30px 50px;
    }

    .modules-instructor {
        flex-direction: row;
    }

    .faq-modules-list {
        width: 50%;
    }

    .instructor-card {
        width: 50%;
        height: fit-content;
    }

    /* Instructor card */
    .instructor-card {
        background-color: var(--bg-light-blue);
        margin-top: 20px;
    }

    .instructors-card {
        padding: 30px 10px 0px;
    }

    .instructor-card h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .instructor-card p:first-child {
        font-size: 18px;
    }

    .instructors-detail {
        display: flex;
        gap: 15px;
        margin-top: 50px;
    }

    .instructors-detail img {
        width: 100px;
        border-radius: 50%;
    }

    .instructors-detail p.instructor-name {
        color: var(--violet);
        font-size: 20px;
        font-weight: 600;
    }

    .instructors-detail p.instructor-skills,
    .instructors-detail p.instructor-skills {
        font-size: 16px;
    }

    .instructor-one {
        border-bottom: 1px solid grey;
        padding-bottom: 35px;
    }

    .instructor-enroll a {
        margin-top: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: center;
        text-decoration: none;
        width: 100%;
    }

    /* Curriculum Tab section ends here */

    /* Skill you will gaibn Tab section starts here */
    .skills-you-will-gain-section {
        margin: 20px 30px 50px;
    }

    .skills-gain-list-items h2 {
        font-size: 20px;
    }

    /* Skill you will gaibn Tab section ends here */

    /* Student Experience Tab section starts here */
    .admission-section {
        margin: 20px 30px 50px;
    }

    .student-exp-cards {
        grid-template-columns: auto auto;
    }

    .individual-exp-card {
        padding: 30px 15px;
    }

    .land-dream-jobs {
        flex-direction: row;
        justify-content: space-between;
        padding: 60px 30px;
    }

    .land-dream-jobs .land-job-desc {
        width: 50%;
    }

    .land-dream-jobs .land-job-img img {
        width: 100%;
    }

    .land-dream-jobs .land-job-img img {
        align-self: center;
        width: 250px;
    }

    /* Student Experience Tab section ends here */


    /* Tab view section ends here */
}

@media only screen and (min-width: 1024px) {

    /* Admissions Tab section starts here */
    .enroll-process-cards {
        display: flex;
        flex-direction: row;
        /* gap: 25px; */
        /* margin-top: 35px; */
    }

    .process-border {
        display: block;
        height: 90%;
        /* text-align: center; */
        /* align-items: center; */
        border-right: 1px solid grey;
    }

    /* .process-cards {
            border-right: 1px solid gray;
        } */

    /* Admissions Tab section ends here */

    /* Skill you will gaibn Tab section starts here */
    .skills-you-will-gain-section {
        margin: 20px 30px 50px;
    }

    /* .skills-you-will-gain-section .skills-gain-list-resources {
        display: flex;
        flex-direction: row;
    }

    .all-skills-lists {
        width: 60%;
    }

    .skills-gain-resources {
        width: 40%;
    } */

    /* Skill you will gaibn Tab section ends here */
}

@media only screen and (min-width: 1100px) {

    /* Banner section starts here */
    .banner-content {
        padding: 50px 50px 30px;
    }

    .banner-texts p:first-of-type {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 10px;
    }

    .banner-texts h1 {
        font-size: 28px;
        padding-bottom: 10px;
        line-height: inherit;
    }

    .banner-texts p:last-of-type {
        font-size: 16px;
    }

    .get-started-box {
        margin-top: 100px;
        padding: 10px 15px 30px 35px;
    }

    .get-started-box h2 {
        font-size: 18px;
    }

    .get-started-box p {
        font-size: 15px;
    }

    .get-started-box a {
        margin: auto 30px auto 10px;
    }

    .get-started-box a:first-of-type {
        padding: 15px;
    }

    .get-started-box a:last-of-type {
        padding: 15px;
    }

    /* Banner section ends here */

    /* Tab view section starts here */
    /* Overview section starts here */
    .Overview-section {
        margin: 20px 65px;
    }

    .tab_titles {
        margin: 70px 70px auto;
    }

    /* Overview section ends here */


    /* curriculum section starts here */
    .curriculum-section {
        margin: 20px 65px;
    }

    .curriculum-section p.curriculum-desc {
        font-size: 18px;
        padding-top: 15px;
        padding-bottom: 0px;
    }

    .modules-instructor {
        flex-direction: row;
        gap: 15px;
    }

    .faq-module {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .faq-module .module-title h2 {
        font-size: 18px;
    }

    .module-outcome ul li::marker {
        font-size: 25px;
    }

    /* curriculum section ends here */


    /* Admissions Tab section starts here */
    .admission-section {
        margin: 20px 65px;
    }

    /* Admissions Tab section ends here */

    /* Skill you will gaibn Tab section starts here */
    .skills-you-will-gain-section {
        margin: 20px 65px 80px;
    }

    .skills-you-will-gain-section .skills-gain-list-resources {
        display: flex;
        flex-direction: row;
    }

    .all-skills-lists {
        width: 60%;
    }

    .skills-gain-list {
        gap: 2px;
    }

    .skills-gain-resources {
        width: 40%;
    }

    .exclusive-resources {
        gap: 90px;
        padding: 20px 15px;
    }

    .available-resources .resource-icon img {
        width: 50px;
    }

    /* Skill you will gaibn Tab section ends here */
    /* Tab view section ends here */
}

@media only screen and (min-width: 1100px) {

    /* Banner section starts here */
    .banner-content {
        padding: 50px 50px 30px;
    }

    .banner-texts p:first-of-type {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 10px;
    }

    .banner-texts h1 {
        font-size: 28px;
        padding-bottom: 10px;
        line-height: inherit;
    }

    .banner-texts p:last-of-type {
        font-size: 16px;
    }

    .get-started-box {
        /* width: 50%; */
        margin-top: 100px;
        padding: 10px 15px 30px 35px;
    }

    .get-started-box h2 {
        font-size: 18px;
    }

    .get-started-box p {
        font-size: 15px;
    }

    .get-started-box a {
        margin: auto 30px auto 10px;
    }

    .get-started-box a:first-of-type {
        padding: 15px;
    }

    .get-started-box a:last-of-type {
        padding: 15px;
        font-weight: 600;
    }

    /* Banner section ends here */

    /* Tab view section starts here */
    .tab_titles {
        margin: 60px 70px auto;
    }

    /* Overview section starts here */
    .Overview-section {
        margin: 20px 65px 80px;
    }

    .Overview-section h1 {
        font-size: 22px;
    }

    .Overview-section p.overview-description {
        font-size: 16px;
        padding-top: 20px;
        /* padding-bottom: 30px; */
    }

    /* Overview section ends here */

    /* Curriculum Tab section starts here */
    .module-outcome ul li {
        font-size: 16px;
    }

    .modules-instructor {
        margin-top: 30px;
    }

    .faq-modules-list {
        width: 60%;
    }

    .faq-module img.module-dropdwn {
        margin-right: 20px;
    }

    .instructor-card {
        width: 40%;
        background-color: var(--bg-light-blue);
    }

    .instructors-card {
        padding: 30px 30px 0px;
    }

    .instructors-detail img {
        object-fit: cover;
    }

    /* Curriculum Tab section ends here */

    /* Career Tab section starts ehre */
    .career-section {
        margin: 20px 65px 80px;
    }

    .career-flex {
        display: flex;
        gap: 25px;
        margin-top: 40px;
    }

    .career-flex .career-card-box {
        display: flex;
        flex-direction: row;
        gap: 0px;
        width: 100%;
    }

    .career-flex .career-card-box {
        width: 65%;
        padding: 30px 20px;
    }

    .develope-demand-skills {
        width: 70%;
    }

    .career-card-box {
        margin: 0px;
    }

    .develope-demand-skills p.skill-desc {
        font-size: 18px;
        margin-top: 20px;
    }

    .career-card-box .advance-career h2 {
        margin-top: 0px;
        padding-bottom: 20px;
    }

    .develope-demand-skills p.skills-lists img {
        width: 30px;
        height: 40px;
    }

    .develope-demand-skills p.skills-lists {
        font-size: 15px;
    }

    .develope-demand-skills p.skills-lists {
        align-items: center;
        margin: 0px;
    }

    .advance-career .expectated-salary {
        height: auto;
    }

    .expectated-salary .border-blue {
        border: 2.5px solid var(--bg-text-blue);
        height: 40px;
    }

    .expectated-salary p:first-of-type {
        font-size: 23px;
    }

    .expectated-salary p:last-of-type {
        font-size: 16.5px;
        margin-top: 1px;
    }

    .career-flex .in-demand-jobs-card {
        width: 35%;
    }

    .in-demand-jobs-card {
        padding: 20px 55px 0px 25px;
    }

    .in-demand-jobs-card p {
        margin-bottom: 25px;
    }

    .certificate-showcase {
        display: flex;
        margin: 60px auto;
        padding-left: 60px;
        padding-right: 60px;
    }

    .certificate-showcase .certificate-details {
        width: 60%;
        display: flex;
        flex-direction: column;
        /* gap: 3px; */
        justify-content: center;
        /* align-items: center; */
    }

    .certificate-details h3 br {
        display: block;
    }

    .certificate-showcase h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .certificate-showcase p {
        margin-bottom: 0px;
    }

    .certificate-details p br {
        display: block;
    }

    .certificate-showcase .certificate {
        width: 40%;
    }

    .certificate-showcase .certificate img {
        width: 100%;
        height: 127%;
        margin-top: -30px;
        object-fit: cover;
        box-shadow: 1px 1px 3px 3px var(--shadow-grey);
        /* position: absolute; */
    }

    .career-section .summer-session-enroll {
        display: flex;
        flex-direction: row;
        padding: 40px 50px;
    }

    .summer-session-enroll div.enroll-description {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .summer-session-enroll .enroll-request-info {
        width: 50%;
        /* display: flex; */
        flex-direction: row;
    }

    .enroll-request-info {
        justify-content: flex-end;
    }

    .career-section .summer-session-enroll h3 {
        margin-bottom: 10px;
    }

    .enroll-request-info .session-enroll {
        /* background-color: var(--black);
            color: var(--white);
            cursor: pointer;
            text-align: center;*/
        padding: 15px 40px;
        width: fit-content;
    }

    .enroll-request-info a.request-info {
        padding: 15px 40px;
        width: fit-content;
    }

    /* Career Tab section ends ehre */

    /* Student */
    .student-exp-section {
        margin: 20px 65px 80px;
    }

    .student-exp-cards {
        grid-template-columns: auto auto auto;
        margin-top: 50px;
    }

    .individual-exp-card {
        padding: 30px 20px;
    }

    .individual-exp-card h2 {
        font-size: 22px;
    }

    .individual-exp-card p.university-name,
    .individual-exp-card p.student-city {
        font-size: 16px;
    }

    .individual-exp-card p.experience-desc {
        font-size: 16px;
    }

    .land-dream-jobs {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 60px 40px;
        padding-left: 70px;
    }

    .land-dream-jobs .land-job-desc {
        width: 60%;
    }

    .land-dream-jobs .land-job-img {
        width: 40%;
    }

    .land-dream-jobs .land-job-img img {
        width: 100%;
        height: 150px;
        object-fit: contain;
    }

    /* Tab view section ends here */
}

@media only screen and (min-width: 1340px) {

    /* Banner section starts here */
    .banner-content {
        padding: 50px 60px 30px;
    }

    .banner-texts p:first-of-type {
        font-size: 18px;
    }

    .banner-texts h1 {
        font-size: 34px;
        padding-left: 5px;
    }

    .banner-texts p:last-of-type {
        font-size: 18px;
        padding-left: 5px;
    }

    .get-started-box {
        /* width: 50%; */
        width: 65%;
        margin-top: 110px;
        padding: 10px 15px 40px 40px;
    }

    .get-started-box h2 {
        font-size: 22px;
    }

    .get-started-box p {
        font-size: 17px;
    }

    .get-started-box a {
        margin: auto 30px auto 10px;
    }

    .get-started-box a:first-of-type {
        font-size: 18px;
    }

    .get-started-box a:last-of-type {
        font-size: 18px;
    }

    /* Banner section ends here */

    /* Tab view section starts here */
    .tab_titles {
        font-size: 17px;
        /* margin: 70px 70px auto; */
    }

    .tab_titles a {
        padding: 20px 40px 15px;
    }

    .all-tab-views h1 {
        font-size: 28px;
    }

    /* Overview section starts here */
    /* .Overview-section h1 {
        font-size: 28px; 
    }*/

    .Overview-section p.overview-description {
        font-size: 17px;
        padding-top: 20px;
        /* padding-bottom: 30px; */
    }

    /* Youtube video */
    .youtube-enrollment-info {
        gap: 25px;
    }

    .youtube-enrollment-info iframe {
        width: 65%;
    }

    /* Enrollment information card */
    .enrollment-info-card {
        width: 35%;
        background-color: var(--bg-light-blue);
    }

    .enrollment-info h2 {
        font-size: 22px;
    }

    /* Overview section ends here */

    /* Curriculum Tab section starts ehre */
    .curriculum-section {
        margin: 20px 65px 80px;
    }

    .curriculum-section p.curriculum-desc {
        font-size: 17px;
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .faq-module {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .module-outcome ul li::marker {
        font-size: 25px;
    }

    /* Curriculum Tab section ends ehre */

    /* Admission Tab section starts here */
    .admission-section p.admission-desc {
        font-size: 17px;
        padding-top: 25px;
    }

    .process-cards .process-card-num {
        font-size: 45px;
    }

    .admission-section p.have-question {
        font-size: 14px;
    }

    /* Admission Tab section ends here */

    /* Skill you will gaibn Tab section starts here */
    .skills-you-will-gain-section {
        margin: 20px 65px 80px;
    }

    .skills-you-will-gain-section .skills-gain-list-resources {
        gap: 25px;
    }

    .all-skills-lists {
        width: 65%;
    }

    .skills-gain-list {
        gap: 2px;
    }

    .skills-you-will-gain-section p.skills-gain-desc {
        font-size: 17px;
    }

    p.skills-gain-desc br {
        display: block;
    }

    .skills-gain-list-items h2 {
        font-size: 18px;
    }

    .skills-gain-list-items p {
        font-size: 17px;
        padding-bottom: 5px;
    }

    .skills-gain-list-items img {
        width: 30px;
        height: 40px;
    }

    .skills-gain-resources {
        width: 35%;
    }

    .skills-gain-resources h2 {
        font-size: 22px;
        padding-bottom: 20px;
        margin-left: 15px;
        margin-right: 30px;
    }

    .exclusive-resources {
        gap: 60px;
    }

    .skill-gain-cards {
        margin: 10px auto;
        margin-bottom: 0px;
    }

    .skill-gain-cards-list {
        /* display: flex;
        gap: 20px;
        flex-wrap: wrap; */
        margin-top: 20px;
    }

    .skill-gain-cards-list p {
        font-size: 16px;
        padding: 10px;
        /* background-color: var(--light-purple);
        border-radius: 10px;
        font-weight: 600;
        padding: 10px 15px; */
    }

    .available-resources {
        gap: 30px;
    }

    .available-resources .resource-icon img {
        width: 35px;
    }

    .available-resources h3 {
        font-size: 17px;
        font-weight: 700;
    }

    .resource-list p {
        font-size: 17px;
        margin-top: 3px;
    }

    /* Skill you will gaibn Tab section ends here */


    /* Career Tab section starts ehre */
    .career-section {
        margin: 20px 65px 80px;
    }

    .career-flex {
        display: flex;
        gap: 25px;
        margin-top: 40px;
    }

    .career-flex .career-card-box {
        display: flex;
        flex-direction: row;
        gap: 0px;
        width: 100%;
    }

    .career-flex .career-card-box {
        width: 65%;
        padding: 30px 20px;
    }

    .develope-demand-skills {
        width: 70%;
    }

    .career-card-box {
        margin: 0px;
    }

    .develope-demand-skills p.skill-desc {
        font-size: 18px;
        margin-top: 20px;
    }

    .career-card-box .advance-career h2 {
        margin-top: 0px;
        padding-bottom: 20px;
    }

    .develope-demand-skills p.skills-lists img {
        width: 30px;
        height: 40px;
    }

    .develope-demand-skills p.skills-lists {
        font-size: 15px;
    }

    .develope-demand-skills p.skills-lists {
        align-items: center;
        margin: 0px;
    }

    .advance-career .expectated-salary {
        height: auto;
    }

    .expectated-salary .border-blue {
        border: 2.5px solid var(--bg-text-blue);
        height: 40px;
    }

    .expectated-salary p:first-of-type {
        font-size: 23px;
    }

    .expectated-salary p:last-of-type {
        font-size: 16.5px;
        margin-top: 1px;
    }

    .career-flex .in-demand-jobs-card {
        width: 35%;
    }

    .in-demand-jobs-card {
        padding: 20px 55px 0px 25px;
    }

    .in-demand-jobs-card p {
        margin-bottom: 25px;
    }

    .certificate-showcase {
        display: flex;
        margin: 60px auto;
        padding-left: 60px;
        padding-right: 60px;
    }

    .certificate-showcase .certificate-details {
        width: 60%;
        display: flex;
        flex-direction: column;
        /* gap: 3px; */
        justify-content: center;
        /* align-items: center; */
    }

    .certificate-details h3 br {
        display: block;
    }

    .certificate-showcase h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .certificate-showcase p {
        margin-bottom: 0px;
    }

    .certificate-details p br {
        display: block;
    }

    .certificate-showcase .certificate {
        width: 40%;
    }

    .certificate-showcase .certificate img {
        width: 100%;
        height: 127%;
        margin-top: -30px;
        object-fit: cover;
        box-shadow: 1px 1px 3px 3px var(--shadow-grey);
        /* position: absolute; */
    }

    .career-section .summer-session-enroll {
        display: flex;
        flex-direction: row;
        padding: 40px 50px;
    }

    .summer-session-enroll div.enroll-description {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .summer-session-enroll .enroll-request-info {
        width: 50%;
        /* display: flex; */
        flex-direction: row;
    }

    .enroll-request-info {
        justify-content: flex-end;
    }

    .career-section .summer-session-enroll h3 {
        margin-bottom: 10px;
    }

    .enroll-request-info .session-enroll {
        /* background-color: var(--black);
        color: var(--white);
        cursor: pointer;
        text-align: center;*/
        padding: 15px 40px;
        width: fit-content;
    }

    .enroll-request-info a.request-info {
        padding: 15px 40px;
        width: fit-content;
    }

    /* Career Tab section ends ehre */
    /* Tab view section ends here */
}


.enroll-now {
    cursor: pointer;
}