@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600&family=Nunito:wght@400;500;600;700;800;900&family=Poppins:wght@300;500;600;700;800;900&display=swap');


#all_course_container {
    margin: 40px auto;
    padding: 40px 0;
    max-width: 1100px;
}
.text_center {
    text-align: center;
}
.all_courses_header {
    font-size: 36px;
    font-weight: 700;
}
.all_courses_sub_header {
    font-size: 18px;
    width: 40%;
    margin: 0px auto;
    font-weight: 700;
    margin-bottom: 50px;
}
.course_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 10px auto;
    gap: 20px;
    margin-bottom: 30px;
}
.course_box .header {
    width: 100% !important;
    font-size: 28px;
}
@media (max-width: 1150px) {
    .course_box {
        width: calc(100% - 40px);
    }
}
@media (max-width: 550px) {
    .all_courses_sub_header {
        width: 80%;
        margin-bottom: 30px;
    }
}