.headingSmall {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 12px !important;
    font-family: "go-semibold" !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey10) !important;
    margin-bottom: 8px;

    img {
        width: 14px;
    }
}

.mb40 {
    margin-bottom: 40px;
}

.w-35 {
    width: 35%;
}

.go-bold {
    font-family: "go-bold" !important;
}

.center {
    text-align: center !important;
}

.mt45 {
    margin-top: 45px;
}

.mb10 {
    margin-bottom: 10px;
}

.mt20 {
    margin-top: 20px;
}

.gradientButton button {
    position: relative;
    border: none;
    background: var(--black);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: 0.4s ease-in;
    width: 100%;
}

.gradientButton.active button,
.gradientButton:hover button {
    color: var(--black);
    transition: 0.4s ease-in;
}

.gradientButton.active button::after,
.gradientButton:hover button::after {
    width: calc(100% + 20px);
    scale: 2;
    /* height: calc(100% + 100%); */
    left: -10px;
    border-radius: 40px;
    transition: 0.4s ease-in;
    opacity: 1;
}

.gradientButton button::after {
    content: '';
    position: absolute;
    left: 33%;
    bottom: -50px;
    width: 40%;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    transition: 0.4s ease-in;
    z-index: -1;
    opacity: 0;
}

.iconButton {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 1rem;
    padding: 12px 20px;
}

.button {
    color: var(--white);
    text-align: center;
    font-family: 'go-semibold';
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 16px 24px;
    border: 1px solid var(--white);
    background: transparent;
    border-radius: 54px;
    cursor: pointer;
}

.gradientButton {
    cursor: pointer;
    padding: 1px;
    position: relative;
    max-width: max-content;
    display: inline-block;
    z-index: 1;
}

.gradientButton::before {
    content: "";
    background: linear-gradient(102deg, #39B6D8 0%, #F7D344 50%, #E38330 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 35px;
}

.line-clamp {
    display: -webkit-box !important;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.highlightsec {
    background: var(--black);
    padding: 80px 0;

    .programmeHeading {
        color: var(--white);
        font-size: 2.625rem;
        font-family: "go-extrabold";
        line-height: 130%;
        text-transform: capitalize;
        /* margin-top: 40px; */
    }

    .gradientUnderline::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        background: url("https://files.mastersunion.link/resources/svg/degreeSection.svg");
        background-repeat: no-repeat;
        height: 100%;
        z-index: -1;
    }

    .gradientUnderline {
        position: relative;
        z-index: 11;
    }

    .heroWrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .left {
        width: 50%;
    }

    .right {
        width: 45%;
    }

    .subText {
        font-size: 0.813rem;
        font-family: "go-regular";
        color: var(--grey10);
        line-height: 160%;
        margin-top: 10px;
    }

    .afterCareerWrap {
        display: flex;
        margin-top: 40px;

        .afterCareerBox {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-right: 1px solid var(--grey3);
            margin-right: 40px;
            padding-right: 50px;
            width: 60%;
        }

        .counting {
            font: 2.25rem "go-medium";
            line-height: 120%;
            color: white;
        }

        .counting span {
            background: linear-gradient(114deg,
                    #39b6d8 17.86%,
                    #f7d344 80.86%,
                    #e38330 93.85%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .afterCareerBox p {
            font: 0.875rem "go-regular";
            line-height: 24px;
            color: var(--grey18);
        }

        .afterCareerBox:last-child {
            border: none;
            padding: 0;
            margin: 0;
        }


    }

    .heroRightButtons {
        display: flex;
        gap: 10px;
        margin-top: 40px;
    }
}

.stickymenu {
    padding: 0;
    border-block: 1px solid var(--black5);
    background: var(--black);
    position: sticky;
    top: 50px;
    z-index: 9990;

    .seondtabs {
        overflow: auto;
        list-style-type: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        text-transform: uppercase;
        padding: 20px 0;
    }

    .seondtabs .list.active {
        background: linear-gradient(92deg,
                #39b6d8 7.6%,
                #f7d344 53.43%,
                #e38330 99.26%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
    }

    .seondtabs .list.active img {
        opacity: 1;
    }

    .seondtabs .list img {
        opacity: 0;
        transition: 0.4s ease-in-out;
        max-width: 18px;
    }

    .seondtabs .list {
        display: flex;
        gap: 8px;
        align-items: center;
        position: relative;
        font-size: 0.875rem;
        text-transform: capitalize;
        font-family: "go-medium";
        color: var(--grey10);
        min-width: max-content;
    }

}

.careerplacement {
    background: linear-gradient(90deg, #f5f5f5 50.5%, #fff 50.5%);
    padding: 80px 0;

    .careerImageWrapper {
        display: flex;
        justify-content: space-between;
        gap: 100px;
        width: 100%;

        .left,
        .right {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            max-width: 50%;

            img {
                margin-top: 60px;
            }
        }

    }


    .placementRateWrapper {
        display: flex;
        align-items: center;
    }

    .rateBox:first-child {
        padding-left: 0;
    }

    .rateBox {
        display: flex;
        gap: 10px;
        flex-direction: column;
        border-right: 1px solid var(--grey19);
        padding: 0px 48px;
    }

    .rateBox .group {
        width: 100%;
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .rateBox h5 {
        font: 3.75rem "go-medium";
        line-height: 120%;
        color: var(--black);
    }

    .rateBox h5 span {
        background: linear-gradient(101deg,
                #39b6d8 -9.06%,
                #f7d344 42.57%,
                #e38330 94.19%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 1.875rem;
        line-height: 36px;
        font-weight: 500;
    }

    .rateBox .group p {
        font: 0.875rem "go-medium";
        line-height: 24px;
    }

    .boxWrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .headingWrap {
        display: flex;
        flex-direction: column;
        /* gap: 10px; */

        .sectionHeading {
            font-size: 30px;
            line-height: 130%;
            font-family: 'go-bold';
            font-weight: 700;
        }

        .lightMuVectorThin,
        .lightMuVector {
            position: relative;
            z-index: 1;
        }
    }
}

.careerteam {
    padding: 80px 0;
    background: var(--grey7);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-position: center;

    .headingWrap {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }


    .opportunityWrapper {
        flex-wrap: wrap;
        display: flex;
        gap: 20px;
        row-gap: 30px;
        justify-content: flex-start;
        margin-top: 30px;
    }

    .opprDesignation {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        font: 12px 'go-regular';
        color: var(--black);
    }

    .opportunityWrapper .masterBox {
        display: block;
        position: relative;
        max-width: 232px;
        width: 100%;
    }

    .opportunityWrapper .masterBox>img {
        border-radius: 12px;
        width: 100%;
    }

    .opprName {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font: 12px "go-medium";
        line-height: 120%;
        color: var(--grey2);
    }

    .lightmastername {
        font: 0.75rem "go-semibold";
        margin-top: 10px;
    }

    .opportunityWrapper .lineSpace {
        margin-top: 8px;
        margin-bottom: 6px;
        /* border-top: 1px solid var(--grey4); */
        width: 100%;
        height: 1px;
        background: var(--grey4);
        border: none;
    }


    .lightMuVector {
        position: relative;
        z-index: 1;
    }

    .lightMuVector::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 75%;
        background: url(https://files.mastersunion.link/resources/svg/lightmuvector.svg);
        background-repeat: no-repeat;
        left: 0;
        bottom: -25%;
        z-index: -1;
        filter: brightness(3.7);
    }


}

.cohort {
    background: url("https://files.mastersunion.link/resources/svg/blacksvgMu.svg") var(--black);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 50px 0;

    .bgBlackFlexWrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        width: 90%;
    }

    .headingBgblackWrap {
        h2 {
            font-size: 3.875rem;
            font-weight: 400;
            line-height: 72px;
            font-family: "go-medium";
            color: var(--white);
        }

        p {
            color: var(--white);
            font: 1.125rem "go-regular";
        }
    }

    .flexbox {
        display: flex;
        justify-content: inherit;
        gap: 80px;
        align-items: center;
        width: 90%;
    }

    .reportWrapper {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .report {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .box2col {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
    }

    .report p {
        font: 0.813rem "go-medium";
        line-height: 140%;
        text-decoration: underline;
        color: var(--white3);
    }

    .box2col img {
        max-width: 17px;

    }

    .box {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 55%;
    }

    .box p {
        font: 0.875rem "go-regular";
        line-height: 180%;
        color: var(--grey18);
    }


    .headingBgblackWrap .gradient {
        background: var(--masters-union-gradients-1, linear-gradient(162deg, #39b6d8 0%, #f7d344 50%, #e38330 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3.2rem;
        margin-left: 5px;
    }
}


.caution {
    padding: 6px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid transparent;
    background: linear-gradient(#ffff 0 0) padding-box, var(--gradient) border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 15px;
}

.caution.black {
    border: 1px solid transparent;
    background: linear-gradient(var(--grey17) 0 0) padding-box,
        var(--gradient) border-box;
}

.caution.black p {
    color: var(--white);
}

.caution p {
    font: 13px "go-medium";
    color: var(--black);
    line-height: 120%;
}

.gradientBold {
    background: linear-gradient(93deg,
            #39b6d8 3.94%,
            #f7d344 49.4%,
            #e38330 94.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "go-medium";
}

.collaboration {
    background: url(https://files.mastersunion.link/resources/img/Collaborationbg.webp) var(--white3);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 80px 0;

    .headingWrap {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }

    .lightMuVector {
        position: relative;
        z-index: 1;
    }

    .lightMuVector::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 75%;
        background: url(https://files.mastersunion.link/resources/svg/lightmuvector.svg);
        background-repeat: no-repeat;
        left: 0;
        bottom: -25%;
        z-index: -1;
        filter: brightness(3.7);
    }

    .navigationWrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 20px;
        height: fit-content;
    }

    .navigationWrapper ul {
        padding: 16px 30px;
        width: 100%;
        background: var(--black);
        display: flex;
        align-items: center;
        gap: 60px;
        justify-content: space-around;
    }

    .navigationWrapper li.active {
        background: linear-gradient(102deg, #39b6d8 0%, #f7d344 50%, #e38330 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        outline: none;
        border: none;
        position: relative;
        font-family: "go-semibold";
    }

    .navigationWrapper li:hover {
        background: linear-gradient(102deg, #39b6d8 0%, #f7d344 50%, #e38330 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        outline: none;
        border: none;
        position: relative;
        font-family: "go-semibold";
    }

    .navigationWrapper li {
        font: 0.875rem "go-medium";
        color: var(--grey6);
        display: block;
        cursor: pointer;
        transition: 0.5s ease-in-out;
        text-transform: capitalize;
    }
}

.ctcsection {
    background: var(--black);
    padding-bottom: 0px;
    padding-top: 80px;
    position: relative;
    overflow: hidden;

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }

    .gradientUnderline {
        position: relative;
        z-index: 11;
    }

    .gradientUnderline::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        background: url(https://files.mastersunion.link/resources/svg/degreeSection.svg);
        background-repeat: no-repeat;
        height: 100%;
        z-index: -1;
    }

    .cohortCareerTable {
        width: 100%;
        margin-left: -20px;
    }

    .cohortCareerHeading,
    .cohortTableRow {
        position: relative;
    }

    .cohortCareerHeading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 113px;
        width: 100%;
        height: 1px;
        background-color: var(--grey3);
        max-width: 88%;
    }

    .cohortCareerHeading td {
        font-size: 13px;
        font-style: var(--go-regular);
        line-height: 19.5px;
        color: var(--grey10);
        padding: 20px;
    }

    .cohortTableRow .cohortYear {
        font-size: 16px;
        font-style: var(--go-regular);
        line-height: 24px;
        color: var(--grey10);
    }

    .cohortTableRow td {
        font-size: 16px;
        font-style: var(--go-regular);
        line-height: 22.4px;
        color: var(--white);
        padding: 20px;
    }

    .cohortTableRow::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 113px;
        width: 100%;
        height: 1px;
        background-color: var(--grey3);
        max-width: 88%;
    }

    .cohortCareerPara {
        font-size: 13px;
        line-height: 20px;
        font-family: var(--go-regular);
        color: var(--grey10);
    }

    /* .cohortTableRow.afterBorderHide{
        position: unset;
        background-color: none;
    }

    .cohortTableRow:last-child{
        
    } */

}

.ctcCompontentWrap {
    background: var(--black);
    display: flex;
    flex-wrap: wrap;
    align-self: normal;
    width: 100%;

    .ctcCompLeftSide {
        width: 100%;
        max-width: calc(100% - 50%);
        padding: 80px 35px 80px 165px;
        background: var(--black);
        position: relative;
    }

    .textChohort {
        position: absolute;
        right: -9%;
        bottom: 4%;
        color: var(--white);
        font: 0.875rem "go-bold";
    }

    .contentHeadingCtc {
        padding-bottom: 50px;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
        color: var(--white);
    }

    .ctcCompRightSide {
        background: var(--black);
        max-width: 50%;
        padding: 80px 0 80px 40px;
    }

    .gradientUnderline {
        position: relative;
        z-index: 11;
    }

    .gradientUnderline::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        background: url(https://files.mastersunion.link/resources/svg/degreeSection.svg);
        background-repeat: no-repeat;
        height: 100%;
        z-index: -1;
    }
}

.homeAlumni {
    background: var(--black);
    padding: 80px 0;
    overflow: hidden;
    position: relative;

    .headingWrapperButton {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        line-height: 0;
    }

    .headingsLeft {
        width: 50%;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
        color: var(--white);
    }

    .lightMuVector {
        position: relative;
        z-index: 1;
    }

    .lightMuVector::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 75%;
        background: url(https://files.mastersunion.link/resources/svg/lightmuvector.svg);
        background-repeat: no-repeat;
        left: 0;
        bottom: -25%;
        z-index: -1;
    }

    .homeAlumni .swiper-slide {
        padding: 10px;
        background: var(--black2);
        border-radius: 12px;
        box-shadow: unset;
    }

    .masterImage>img {
        width: 100%;
        transition: 0.4s ease-in-out;
    }

    .alumniName {
        margin-top: 15px;
        margin-bottom: 6px;
        font: 1rem "go-regular";
        color: var(--white);
    }

    .alumniDesgination {
        display: flex;
        gap: 6px;
        line-height: 16px;
        color: var(--grey10);
        font: 13px "go-medium";

    }
}

.stories {
    background: var(--grey7);
    overflow: hidden;
    padding: 80px 0;

    .headingWrapperButton {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        line-height: 0;
        width: 100%;
    }

    .headingsLeft {
        width: 50%;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }

    .gradientUnderline {
        position: relative;
        z-index: 11;
    }

    .gradientUnderline::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        background: url(https://files.mastersunion.link/resources/svg/degreeSection.svg);
        background-repeat: no-repeat;
        height: 100%;
        z-index: -1;
    }

    .headingRight {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        gap: 10px;
        width: 50%;
    }

    .masterBox {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .masterinner {
        padding: 0 10px 5px;
    }

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

    .storiesTag {
        color: var(--grey);
        margin-top: 3px;
        font: 0.75rem "go-regular";
        line-height: 16px;
        display: flex;
        align-items: center;
    }

    .masterinner .name {
        font: 1rem "go-semibold";
        line-height: 130%;
        color: var(--black);
    }

    .lineSpace {
        margin-top: 8px;
        margin-bottom: 6px;
        /* border-top: 1px solid var(--grey4); */
        width: 100%;
        height: 1px;
        background: var(--grey4);
        border: none;
    }


    .subText {
        color: var(--grey);
        margin-top: 6px;
        font-size: 0.813rem;
        font-family: "go-regular";
        line-height: 160%;
    }
}


.careertransition {
    background: var(--white3);
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;

    .headingWrap {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

    .headingsLeft {
        width: 50%;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }

    .gradientUnderline {
        position: relative;
        z-index: 11;
    }

    .gradientUnderline::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        background: url(https://files.mastersunion.link/resources/svg/degreeSection.svg);
        background-repeat: no-repeat;
        height: 100%;
        z-index: -1;
    }

    .flexbox {
        display: flex;
        align-items: inherit;
        justify-content: inherit;
    }

    .transinner {
        width: 50%;
        border-right: 1px solid var(--grey4);
    }

    .aligncenter {
        border-bottom: 1px solid var(--grey4);
        padding: 10px 0 25px;
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: inherit;
    }

    .transinner p {
        font: 0.875rem "go-medium";
        line-height: 24px;
        color: var(--black);
    }

    .transbox {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        width: 94%;
        padding: 40px 0;
    }

    .box2col {
        align-self: flex-start;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .box2col p:first-child {
        max-width: 35%;
        width: 100%;
        color: var(--grey15);
        font: 14px "go-regular";
    }

    .box2col div:nth-child(2) {
        max-width: 25%;
        width: 100%;
    }

    .arrowright::after {
        content: "";
        position: absolute;
        top: -12px;
        right: -12px;
        background: url(https://files.mastersunion.link/resources/img/carretright.webp);
        background-repeat: no-repeat;
        width: 24px;
        height: 24px;
    }

    .arrowright {
        border: 1px dashed var(--grey10);
        /* width: 130px; */
        position: relative;
    }

    .box2col p:nth-child(3) {
        max-width: 35%;
        width: 100%;
        margin-left: auto;
    }

    .transbox p,
    .transinner p {
        font: 0.875rem "go-medium";
        line-height: 24px;
    }

    .transinner:last-child {
        border: none;
    }

    .transinner:last-child .flexbox,
    .transbox {
        padding-left: 25px;
    }

    .transbox .box2col p:first-child {
        max-width: 35%;
        width: 100%;
        color: var(--grey15);
        font: 14px "go-regular";
    }

    .gradientButton.whiteHover button {
        background: var(--white);
        color: var(--black);
    }


}

.knowledgeHub {
    background: var(--white3) !important;
    padding: 80px 0;
    position: relative;

    .headintWithBtn {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }

    .lightMuVector {
        position: relative;
        z-index: 1;
    }

    .lightMuVector::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 75%;
        background: url(https://files.mastersunion.link/resources/svg/lightmuvector.svg);
        background-repeat: no-repeat;
        left: 0;
        bottom: -25%;
        z-index: -1;
        filter: brightness(3.7);
    }

    .learningWrap {
        justify-content: flex-start;
        margin-top: 20px;
        gap: 35px;
        display: flex;
        align-items: inherit;
    }

    .learningLeft {
        max-width: 200px;
        width: 100%;
    }

    .navigationBox {
        display: block;
    }

    .courseName {
        padding: 15px 0;
        position: relative;
        display: block;
        transition: 0.4s ease-in;
        cursor: pointer;
        font-size: 0.875rem;
        font-family: "go-regular";
        color: var(--grey2);
        line-height: 160%;
    }

    .courseName.active {
        transition: 0.4s ease-in;
        padding-left: 35px;
        font-family: "go-bold";
        color: var(--black);
    }

    .courseName:not(:last-child) {
        border-bottom: 1px solid var(--grey4);
    }

    .learningRight {
        width: 84%;
        position: relative;
        z-index: 9;
    }

    .courseName.active img {
        opacity: 1;
        transition: 0.4s ease-in;
    }

    .courseName img {
        position: absolute;
        top: 32%;
        left: 0;
        opacity: 0;
        transition: 0.4s ease-in;
    }

    .swiper-slide {
        padding: 10px;
        background: var(--white);
        border-radius: 12px;
    }

    .masterImage>img {
        width: 100%;
        transition: 0.4s ease-in-out;
    }

    .alumniName {
        margin-top: 15px;
        margin-bottom: 6px;
        color: var(--black);
        font: 14px "go-regular";
    }

    .alumniName span {
        font: 14px "go-semibold";
    }
}

.careerjourney {
    background: url(https://files.mastersunion.link/resources/svg/meetMasterbg.svg) var(--black);
    background-repeat: no-repeat;
    background-position: top;
    background-position-x: left;
    position: relative;
    padding: 80px 0;

    .headingWrap {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }


    .lightMuVector {
        position: relative;
        z-index: 1;
    }

    .lightMuVector::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 75%;
        background: url(https://files.mastersunion.link/resources/svg/lightmuvector.svg);
        background-repeat: no-repeat;
        left: 0;
        bottom: -25%;
        z-index: -1;
    }

    .navigationWrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 20px;
        height: fit-content;
    }

    .navigationWrapper ul {
        background: var(--black2);
        padding: 16px 66px;
        gap: 100px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .navigationWrapper li.active {
        background: linear-gradient(102deg, #39b6d8 0%, #f7d344 50%, #e38330 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        outline: none;
        border: none;
        position: relative;
        font-family: "go-semibold";
    }

    .navigationWrapper ul li {
        font: 0.875rem "go-medium";
        color: var(--grey10);
        line-height: 130%;
        cursor: pointer;
        transition: 0.5s ease-in-out;
        text-transform: capitalize;
    }

    .navigationWrapper li:hover {
        background: linear-gradient(102deg, #39b6d8 0%, #f7d344 50%, #e38330 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        outline: none;
        border: none;
        position: relative;
        /* font-family: "go-semibold"; */
    }

    .content-section {
        max-height: 285px;
        overflow: hidden;
    }

    .careerJourneyWrapper {
        display: flex;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .careerBox {
        padding: 25px;
        border-radius: 8px;
        border-bottom: 2px solid var(--grey3);
        background: var(--grey17);
        max-width: 670px;
        min-height: 225px;
        width: 100%;
    }

    .careerBox ul {
        display: flex;
        gap: 15px 35px;
        flex-wrap: wrap;
    }

    .careerBox ul li {
        width: 46%;
        display: flex;
        gap: 8px;
        font: 0.75rem "go-regular";
        align-items: flex-start;
        color: var(--grey16);
    }

    .careerBox ul li img {
        position: relative;
        top: 4px;
    }

    .careerImgBox {
        max-width: 545px;
        width: 100%;
        min-height: 225px;
    }

    .careerImgBox>img {
        border-radius: 8px;
    }
}

.investinFuture {
    background: var(--black3);
    position: relative;
    padding: 80px 0;

    .headingWrap {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .sectionHeading {
        font-size: 30px;
        line-height: 130%;
        font-family: 'go-bold';
        font-weight: 700;
    }

    .gradientUnderline {
        position: relative;
        z-index: 11;
    }

    .gradientUnderline::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        background: url(https://files.mastersunion.link/resources/svg/degreeSection.svg);
        background-repeat: no-repeat;
        height: 100%;
        z-index: -1;
    }

    .subText {
        font-size: 0.813rem;
        font-family: "go-regular";
        color: var(--grey10);
        line-height: 160%;
        margin-top: 10px;
    }

    .learningWrap {
        display: flex;
        gap: 100px;
        justify-content: space-between;
        margin-top: 60px;
        align-items: inherit;
    }

    .learningLeft {
        width: 100%;
        max-width: 334px;
    }

    .navigationBox {
        width: 100%;
        max-width: 334px;
    }

    .courseName:first-child {
        padding-top: 0;
    }

    .investinFuture .courseName.active {
        color: var(--white);
        padding-left: 40px;
    }

    .courseName:not(:last-child) {
        border-bottom: 1px solid var(--black5);
    }

    .courseName {
        padding: 15px 0;
        position: relative;
        display: block;
        transition: 0.4s ease-in;
        cursor: pointer;
        font-size: 0.875rem;
        font-family: "go-regular";
        color: var(--grey2);
        line-height: 160%;
    }

    .courseName.active img {
        opacity: 1;
        transition: 0.4s ease-in;
    }

    .courseName img {
        position: absolute;
        top: 32%;
        left: 0;
        opacity: 0;
        transition: 0.4s ease-in;
    }

    .learningRight {
        width: 75%;
        position: relative;
        z-index: 9;
        min-height: 335px;
    }

    .box {
        width: 85%;
    }

    .learningRight h3 {
        font: 1.25rem "go-semibold";
        line-height: 150%;
        color: var(--white);
    }

    .subText {
        font-size: 0.813rem;
        font-family: "go-regular";
        color: var(--grey10);
        line-height: 160%;
        margin-top: 10px;
    }

    .masterImage>img {
        width: 100%;
        transition: 0.4s ease-in-out;
        margin-top: 20px;
    }

    .courseName.active {
        color: var(--white);
        padding-left: 40px;
    }

    .courseName:first-child img {
        top: 0;
    }

    .courseName:hover {
        color: var(--white);
    }
}