.main-body .section{
    padding:60px 40px;
}

.faq-inner-container h1{
    font-size:var(--h1-font-size);
    font-weight:var(--h1-font-weight);
    font-family:var(--font-quicksand);
    line-height:var(--h1-line-height);
    color:var(--black);
    text-align:center;
}

.faq-wrapper{
    margin-top:30px;
    padding:50px;
    border-radius:35px;
    background-color:var(--dark-bg);
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-gap:30px;
}

.faq-item:not(:last-child){
    margin-bottom:15px;
}

.faq-item{
    background-color:var(--white);
    border-radius:10px;
    overflow:hidden;
}

.faq-title span{
    padding:20px 70px 20px 30px;
    font-size:var(--h4-font-size);
    font-weight:var(--h4-font-weight);
    font-family:var(--font-quicksand);
    line-height:var(--h4-line-height);
    color:var(--black);
    display:block;
    position:relative;
    cursor:pointer;
}

.faq-title span:after{
    content:"\2b";
    font-family:"Font Awesome 6 Free";
    font-weight:600;
    color:var(--white);
    background-color:var(--purple);
    border-radius:100%;
    width:30px;
    height:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    line-height:1;
    font-size:0.8em;
    position:absolute;
    right:30px;
    top:15px;
}

.faq-title.active span:after{
    content:"\f068";
}

.faq-content-wrapper{
    transition:all 0.3s ease-out;
    height:0px;
}

.faq-content{
    padding:0 30px 30px 30px;
    transition:all 0.3s ease-out;
}

.faq-content p{
    font-size:var(--p1-font-size);
    font-weight:var(--p1-font-weight);
    font-family:var(--font-quicksand);
    line-height:var(--p1-line-height);
    color:var(--black);
}

.faq-content a{
    color:var(--dark-orange);
}

.faq-content a:hover{
    color:var(--green);
}

.faq-content ul{
    margin: 15px 0 0 0;
    padding:0 0 0 1em;
}

.faq-content li{
    font-size:var(--p1-font-size);
    font-weight:var(--p1-font-weight);
    font-family:var(--font-quicksand);
    line-height:var(--p1-line-height);
    color:var(--black);
    position:relative;
}


@media (max-width:767px){
    .faq-wrapper{
        grid-template-columns:repeat(1,1fr);
        grid-gap:20px;
        margin-top:20px;
        padding:25px;
        border-radius:15px;
    }
    
    .main-body .section{
        padding:40px 20px;
    }
    
    .faq-title span{
        padding:20px 50px 20px 20px;
    }
    
    .faq-title span:after{
        right:20px;
        width:25px;
        height:25px;
        font-size:12px;
        top:20px;
    }
    
    .faq-content{
        padding:0 20px 20px 20px;
    }
}

















