.OtherCoursesSection {
    padding: 7.5rem 6rem;
    z-index: 2;
    background-color: white;
    width: 100vw;
    position: relative;
}

/* .OtherCoursesSection_Txt {
    color: var(--Neutral-Black, #1A1A1A);
    text-align: center;
    font-family: var(--Font-Family-Display-style---Web, Inter);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 1.35rem */
/* text-transform: uppercase; */
/* } */

.OtherCoursesSection_Heading {
    color: var(--Neutral-Black, #1A1A1A);
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.0625rem;

    text-align: center;

}



.OtherCoursesSection_CardsArea {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;

    margin-top: 6rem;

}


.OtherCoursesSection_Card {
    width: 100%;
    height: 100%;
    height: 24rem;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--icon-size, 1.5rem);

    padding: 2rem;

    color: white;

    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;



}

.OtherCoursesSection_Card_1 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url("../../img/courses/othercourses/physics.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.OtherCoursesSection_Card_2 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url("../../img/courses/othercourses/chemistry.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.OtherCoursesSection_Card_3 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url("../../img/courses/othercourses/biology.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.OtherCoursesSection_Card_4 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url("../../img/courses/othercourses/mathai.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.OtherCoursesSection_Card_5 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url("../../img/courses/othercourses/math.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.OtherCoursesSection_Card_5 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url("../../img/courses/othercourses/math.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}


.OtherCoursesSection_Card_Heading {
    color: var(--Neutral-White, #FFF);
    font-family: Inter;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}

.OtherCoursesSection_Card_UnitTime {
    color: var(--Neutral-White, #FFF);
    font-family: var(--Font-Family-Display-style---Web, Inter);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 1.5rem */

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: .75rem;

    margin-top: .75rem;
}




@media screen and (width<=1024px) {
    .OtherCoursesSection_CardsArea {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;

    }

}


@media screen and (width <=700px) {

    .OtherCoursesSection {
        padding: 5rem 1.5rem;
        margin-bottom: 1rem;
    }

    .OtherCoursesSection_CardsArea {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;

        margin-bottom: 1rem;
    }


    .OtherCoursesSection_Heading {
        text-align: left;
        font-size: 1.5rem;
        font-weight: 700;


    }

    /* 
    .OtherCoursesSection_Txt {
        text-align: left;
        font-size: 1rem;

    } */

    .OtherCoursesSection_Card {
        max-height: 13rem;
    }

    .OtherCoursesSection_Card_Heading {
        font-size: 1.75rem;

    }

    .OtherCoursesSection_Card_UnitTime {
        font-size: 0.875rem;

    }


}