.courpage {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.bodycontent {
    width: 100%;
    height: 100vh;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    text-align: justify;
}
.introofpag {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.leftmenu {
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100vh;
    display: flex;
    background-color: #f3f3f3;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 0px 0px 30px;

}
.introchpterall {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    /* font-size: 100px; */
}
.introchpterall h6{
    font-size: 25px;
}
#leftmenu{
    transition: 0.6s ease-in-out;
}
#sidemenuopn {
    position: fixed;
    right: 0px;
    top: 10%;
    background: #eee;
    padding: 0 5px;
    transition: 0.2s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.493);
    transition: 1s ease-in-out;
    cursor: pointer;
}
#sidemenuopn h2{
    font-size: 22px;  
}

.leftmenubotom{
    height: 80vh;
    overflow-y: auto;
    -webkit-scrollbar-width: 2px;
    width: 100%;
    border-bottom: 1px solid rgb(212, 212, 212);
}
.leftmenutop {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(212, 212, 212);
    
}
.leftmenutop i{
    margin: 0px 5px;
    cursor: pointer;
}
.pagebutton {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    /* padding: 10px 0px; */
    padding-right: 20px;
    padding-top: 18px;
    cursor: pointer;
}
.twosele {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.twosele1 {
    height: 40vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.twosele2 {
    height: 40vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 400px){
    .leftmenu {
        position: fixed;
        right: -350px;
        top: 0;
        width: 300px;
        height: 100vh;
        display: flex;
        background-color: #f3f3f3;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 10px 0px 0px 30px;
    }
    .bodycontent {
        padding: 20px 0px;
    }
}