@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');



.course-page-head{
    background: no-repeat;
    background-image: url(images/backk-img.jpg);
    background-position: 100%;
    background-position-x: center;
    object-fit: cover;
    width: 100%;
    height: 50vh;

}

.course-page-head h2{
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding-right: 500px;

}

.course-page-head span{

    min-height: 50vh;
}

.course-page-service{
    background-color: aliceblue;
}

.course-page-service ul{
    background-color: aliceblue;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    /* margin: auto; */
    padding: 30px 0;

}

.course-page-service ul li{
    list-style-type: none;
    font-weight: bold;
    font-size: 50px;
}

@media (max-width: 1100px) {
    .course-page-head h2{
        padding-right: 0;
    }
}

@media (max-width: 800px){
    .course-page-service ul li img{
        display: inline-block;
    }

    .course-page-service ul li{
        display: flex;
        margin-bottom: 20px;
        align-items: start;
        justify-content: flex-start;
    }

    .course-page-service ul{
        flex-direction: column;
    }
} 

@media (max-width: 500px){

    .course-page-head{
        height: 20vh;
    }
    .course-page-head h2{
        font-size: 30px;
        min-height: 20vh !important;
        text-align: start;
    }
}