@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
    }

         /* About Section */

         .about-text .about_heading {
            color: #CB5499;
            font-size: 55px;
            font-weight: 700;
        }
    
        .about_subheading {
            color: #2E2E2E;
            font-size: 18px;
            font-weight: 600;
        }
    
        .about_para {
            color: #2E2E2E;
            font-size: 16px;
            font-weight: 500;
        }
        
.mobile_view_illustration {
    display: none;
}

.course-item .course-thumb {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.53) 0px 5px 15px;
    transition: all 0.5s ;
}

.course-item .course-thumb:hover {
    transform: scale(1.05);
}

@media screen and (max-width:500px) {

    .laptop_view_illustration {
        display: none;
    }
    .mobile_view_illustration {
        display: block;
    }

    .about-text .about_heading {
        font-size: 220% !important;
    }

    .about-text .about_subheading {
        font-size: 100%;
    }
    
    .about-text .about_para{
        font-size: 80% !important;
        text-align: justify;
    }

    .about-text .heading_line img{
        width: 30% !important;
    }
}
