*{
    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
    font-family: "Roboto", sans-serif;
}
.container{
    max-width: 1360px;
    padding: 0px 25px;
    margin: 0 auto;
}

/* faq section  */
body{
    background-color: #fbeeff;
}
.faq-section{
    width:100%;
    background-color: #fbeeff;
    height: 100vh;
    padding-bottom: 60px;
}
.pre-faq{
    width: 100%;
    height:300px;
    background-color: #3c0c55;
}
.faq-wrap{
    position: relative;
}
.faq {
    width: 50%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
    color: #3c0c55;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -130px);
}
.title{
    margin-bottom:20px;
}
.title h2{
    font-size:32px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}
.title h2 i{
    color: #a828ed;
    font-size:40px;
    padding-right:15px;
}
.acc-ques {
    font-size:18px;
    font-weight: 700;
    line-height: 25px;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.acc-ques i {
    background-color: #a828ed;
    color: #fff;
    padding: 3px 4px;
    border-radius: 50%;
    font-size: 12px;
    transition: 0.3s;
    margin-left: 20px;
}
.acc-ques:hover i {
    background-color: #3c0c55;
}
.acc-ans{
    display: none;
    text-align: justify;
}
.acc-ans-block{
    display: block;
}

