@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;
    }

    .course-item {
        padding-top: 30px;
    }

    .image_back {
        border-radius:12px;
        box-shadow:0px 0px 12px grey;
    }

    
    .mbottom {
        margin-bottom: 30px;
    }

    .image_header .mobile_view_lectures {
        display: none;
    }

    @media screen and (min-width:700px) and (max-width:900px) {
        iframe {
            height: 220px !important;
        }
    }

    @media screen and (max-width:500px) {
       
        .image_header .mobile_view_lectures {
            display: block !important;
        }

        .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;
        }
    
        .laptop_view_lectures {
            display: none;
        }
    
      
        
    }