@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;
    }

.book, .book img, .book::after, .book::before {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

     /* 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;
    }

#booklist ul {
    display: table-cell;
    vertical-align: middle;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
.list-inline > li {
    display: inline-block;
    margin-left: 2em;
}
.list-inline > li:first-child {
    margin-left: 0;
}
.book {
    cursor: pointer;
    display: block;
    width: 200px;
    height: 270px;
    position: relative;
    background: #fff;
    z-index: 1;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1), 0 9px 20px 0 rgba(0, 0, 0, .25);
    overflow: hidden;
    transition: box-shadow 0.3s linear;
}
.book img {
    width: inherit;
    height: inherit;
    transform-origin: 0 50%;
    transform: rotateY(0);
    transition: all 0.45s ease;
}
.book:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25), 0 9px 20px 0 rgba(0, 0, 0, .45);
}
.book:hover img {
    transform: rotateY(-25deg);
    box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, .2);
}
.book::after, .book::before {
    content: '';
    display: block;
    width: inherit;
    height: inherit;
    position: absolute;
    z-index: -1;
    top: 0;
    background: #fff;
    border: 1px solid #d9d9d9;
}
.book::before {
    left: -3px;
}
.book::after {
    left: -6px;
}
.course-warp {
    /* background-color: #f2dbe8; */
}
.course-item {
    width: 100%;
}

mix_padding_mobile {
    width: 100%;
    height: 100%;
}


.image_header .mobile_view_titledesign {
    display: none;
}



@media screen and (min-width:992px) and (max-width:1356px) {
    .book {
        width: 150px;
        height: 200px;
    }

    .about-text .heading_line img{
        width: 10% !important;
    }

}

@media screen and (min-width:600px) and (max-width:991px) {
    .book {
        width: 250px;
        height: 350px;
    }

    .about-text .heading_line img { 
        width: 15% !important;
    }

}

@media screen and (max-width:600px) {

    .image_header .mobile_view_titledesign {
        display: block !important;
    }
    .book {
        width: 200px;
        height: 270px;
    }

    .course-item {
        width: 98%;
        height: 80%;
    }
    .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_titledesign {
        display: none;
    }

  
    
}


@media screen and (max-width:320px) {

    .mix_padding_mobile {
        padding: 5px;
    }
    .course-item {
        width: 98%;
        height: 75%;
    }

}