#Main_Home{
    max-width: 100%;
    width: 1000px;
    margin: auto;
    padding: 0 20px;
}

#Home_1{
    margin-top: 30px;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#Home_1 #Home_Title{
    max-width: 100%;
    width: 600px;
    margin-bottom: 20px;
}

#Home_1 #Home_Title h2{
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--Font-Color);
}

#Home_1 #Home_Title h2 span{
    color: var(--First-Color);
    font-size: 35px;
}

#Home_1 #Home_Title p{
    color: var(--Para-Color);
    font-size: 15px;
    text-align: justify;
    margin-bottom: 15px;
    font-weight: 400;
}

#Home_1 #Home_Title button{
    height: 40px;
    width: 200px;
    background: var(--First-Color);
    color: var(--White-Color);
    border: none;
    border-radius: 2px;
    font-size: 17px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

#Home_1 #Home_Title button:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, #8248ff44 0px 3px 7px -3px;
}

#Main_Home hr{
    height: 4px;
    border: none;
    background: var(--First-Color);
    margin-top: 60px;
}

/* Home_2 */
#Home_Sec{
    margin-top: 80px;
}

#Home_Sec h2{
    text-align: center;
    font-size: 33px;
    color: var(--Font-Color);
    font-weight: 500;
}

#All_Feature{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}

#All_Feature div{
    margin: 5px;
    padding: 15px 10px;
    border: 1px solid rgba(131, 72, 255, 0.5);
    background: rgba(131, 72, 255, 0.15);
    border-radius: 4px;
    cursor: default;
    transition: all 0.3s ease;
    width: 300px;
}

#All_Feature div:hover{
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    background: var(--First-Color);
}

#All_Feature div:hover p{
    color: white;
    font-weight: 300;
}

#All_Feature div img{
    height: 60px;
}

#All_Feature div p{
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    margin-top: 10px;
    color: var(--Para-Color);
}

/* Home_3 */
#HCourse_Main{
    margin-top: 80px;
}

#CourseTitle{
    text-align: center;
    font-weight: 400;
    font-size: 28px;
    background: var(--First-Color);
    color: var(--White-Color);
    padding: 5px 0;
    border-radius: 3px;
}

#All_Courses{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#All_Courses .Course{
    border: 1px solid rgba(131, 72, 255, 0.5);
    margin: 4px;
    background: #DAC9FF;
    width: 300px;
    padding: 10px 15px;
    border-radius: 3px;
    margin-top: 50px;
}

#All_Courses .Course img{
    width: 100%;
}

#All_Courses .Course h2{
    font-size: 18px;
    margin: 10px 0 5px;
    color: var(--Font-Color);
    font-weight: 400;
}

#All_Courses .Course .Ratings .material-icons{
    font-size: 28px;
    color: var(--First-Color);
}

#All_Courses .Course .Ratings .material-icons.Dactive{
    color: #9B9B9B;
}

#All_Courses .Course .Price-Per{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#All_Courses .Course .Price-Per span{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--Para-Color);

}

#All_Courses .Course .Price-Per span.material-icons{
    color: var(--First-Color);
    font-size: 30px;
    margin-right: 10px;
}

#All_Courses .Course .Price-Per span.HRupee{
    margin-right: 3px;
}

#All_Courses .Course .Price-Per span .HPrice{
    font-size: 30px;
    color: red;
}

#All_Courses .Course button{
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: var(--First-Color);
    color: var(--White-Color);
    border: none;
    font-size: 17px;
    font-weight: 300;
    border-radius: 3px;
    cursor: pointer;
}


/* Home_4 */
#Best_Students, #Best_Students1{
    margin-top: 80px;
}

#BestSTitle, #BestSTitle1{
    text-align: center;
    font-weight: 400;
    font-size: 28px;
    background: var(--First-Color);
    color: var(--White-Color);
    padding: 5px 0;
    border-radius: 3px;
}

#All_Students, #All_Students1{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


:is(#All_Students, #All_Students1) .Student{
    background: #DAC9FF;
    width: 280px;
    margin: 5px;
    border: 1px solid rgba(131, 72, 255, 0.5);
    padding: 15px 10px 13px;
    border-radius: 3px;
}

:is(#All_Students, #All_Students1) .Student img{
    width: 100%;
}

:is(#All_Students, #All_Students1) .Student div{
    margin-top: 5px;
    text-align: center;
}

:is(#All_Students, #All_Students1) .Student div p:last-child{
    font-size: 15px;
    margin-top: 2px;
}

:is(#All_Students, #All_Students1) .Student div p:first-child{
    color: var(--First-Color);
    font-size: 18px;
}

/* Home_6 */
#QA{    
    margin-top: 80px;
    margin-bottom: 200px;
}

#QATitle{
    text-align: center;
    font-weight: 400;
    font-size: 28px;
    background: var(--First-Color);
    color: var(--White-Color);
    padding: 5px 0;
    border-radius: 3px;   
}

#All_QA{
    margin-top: 50px;
}

#All_QA .QA{
    margin-bottom: 10px;
    border-radius: 3px;
    overflow: hidden;

}

#All_QA .QA:last-child{
    margin-bottom: 0;
}

#All_QA .QA .Quation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #DBCAFF;
    padding: 12px 30px;
}

#All_QA .QA .Quation h3{
    font-size: 20px;
    font-weight: 400;
    color: var(--Font-Color);

}

#All_QA .QA .Quation .material-icons{
    font-size: 30px;
    color: var(--First-Color);
    cursor: pointer;
    user-select: none;
    margin-left: 5px;
}

#All_QA .QA p{
    padding: 12px 30px;
    background: #e7dcff;
    color: var(--Para-Color);
    text-align: justify;
    font-size: 15px;
    height: 0;
    padding: 0 30px;
    transition: padding 0.3s cubic-bezier(0.93, 0.76, 0.83, 0.76);
}

#All_QA .QA p.Active{
    height: unset;
    padding: 12px 30px;
}

/* Make responsive */

@media (max-width: 780px) {

    #Home_1{
        flex-direction: column;
        align-items: unset;
    }

    #Home_Mainimg{
        text-align: center;
    }

    #Home_1 #Home_Title{
        margin: 70px 0 100px;
    }
    #Home_Mainimg img{
        max-width: 100%;
    }

    #Home_1 #Home_Title button{
        cursor: default;
        
    }
    
    #Home_1 #Home_Title button:hover{
        box-shadow: unset;
    }

    #All_Feature, #All_Courses, #All_Students, #All_Students1{
        flex-direction: column;
    }
    #All_Feature div, #All_Courses .Course, #All_Students .Student, #All_Students1 .Student{
        width: 400px;
        max-width: 100%;
    }
    #All_Feature div:hover{
        box-shadow: unset;
        background: rgba(131, 72, 255, 0.15);
    }
    
    #All_Feature div:hover p{
        color: var(--Para-Color);
        font-weight: 400;
    }
    #All_QA .QA .Quation .material-icons{
        cursor: default;
    }
}


@media (max-width: 650px){
    #Home_1 #Home_Title {
        margin: 18px 0 65px;
    }
    #BestSTitle, #CourseTitle, #QATitle, #BestSTitle1{
        font-size: 24px;
        padding: 10px 0;
    }
    #All_QA .QA .Quation h3{
        font-size: 18px;
    }
    #All_Courses .Course button{
        cursor: default;
    }
}