*{
    padding: 0;
    margin: 0;
}
main{
    margin-top: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heading{
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1%;
    padding-top: 0;
}
.qarea{
    display: flex;
    width: 100vw;
    height: auto;
    justify-content: center;
    font-family: "Mada", sans-serif;
    font-weight: 600;
}
.qtop{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.section{
    font-size: 1.3rem;
}
.ques{
    font-size: 1.2rem;
    padding: 1%;
    padding-left: 0;
    margin-bottom: 2%;
}
.opt{
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
}
.opt label{
    border: 1px solid black;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 1%;
}
.opt1{
    margin-left: 2%;
}
.subbtn{
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    width: 60vw;
    height: 6vh;
}
.sbt{
    width: 20%;
    height: 100%;
    border-radius: 20px;
    background-color: #14AE5C;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: 700;
    margin: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ipbar{
    height: 100%;
    width: 0%;
    background-color:#4049F0;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 10px 0 0 10px;
}
.progress-bar{
    height: 2vh;
    width: 80vw;
    border-radius: 25px;
    border: 1px solid black;
}
.progress-bar-cover{
    width: 100vw;
    display: flex;
    justify-content: center;
    margin-top: 0;
}
input[type="radio"]{
    transform: scale(1.3);
    margin-left: 1%;
}
.question{
    display: none;
}
.question.active{
    display: block;
}
.qbox{
    border: 1px solid black;
    padding: 2%;
    background-color: white;
    border-radius: 20px;
}
.pcal{
    display: flex;
    justify-content: space-between;
    margin-top: 1.4%;
    width: 80vw;
    font-weight: 700;
}
.ppp{
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1%;
}
@media screen and (min-width:700px) and (max-width:1000px)
{
    .heading
    {
        font-size: 4rem;
    }
}
@media screen and (max-width:700px)
{
    .heading
    {
        font-size: 4rem;
    }
    
}