


/*===========================
       23.FAQ css 
===========================*/


.faq-area {}


.faq-accordion{
    & .accordion{
        & .card{
            margin-top: 20px;
            padding: 0;
            border-radius: 0;
            border: 0;
            
            
            & .card-header{
                padding: 15px 20px;
                border: 1px solid rgba($heading-color, 0.1);
                margin-bottom: 0;
                background: none;
                
                & a{
                    font-size: 18px;
                    font-family: $font-2;
                    font-weight: 700;
                    color: $heading-color;
                    display: block;
                    position: relative;
                    padding-right: 25px;
                    
                    @media #{$xs}{
                        font-size: 16px;
                    }
                    
                    &::before{
                        position: absolute;
                        content: '\f068';
                        font-family: "Font Awesome 5 Pro";
                        font-weight: 300;
                        font-size: 18px;
                        top: 50%;
                        right: 0px;
                        @include transform(translateY(-50%));
                        @include transition(0.3s);
                    }
                    
                    &.collapsed{
                        &::before{
                            content: '\f067';
                        }
                    }
                }
            }
            & .card-body{
                padding: 0;
                border: 1px solid rgba($heading-color, 0.1);
                border-top: 0;
                padding: 15px 20px;
                
                & p{}
            }
        }
    }
}


.faq-help{
    padding: 70px 30px;
    max-width: 470px;
    border: 1px solid rgba($heading-color, 0.1);
    margin-left: auto;
    position: relative;
    
    &::before{
        position: absolute;
        content: '';
        background-image: url(../images/faq-bg.png);
        background-size: contain;
        background-position: center center;
        width: 70%;
        height: 70%;
        top: 50%;
        left: 50%;
        background-repeat: no-repeat;
        @include transform(translate(-50%, -50%));
        z-index: -1;
        opacity: 0.06;
    }
    
    @media #{$md}{
        margin-right: auto;
        padding: 50px 30px;
    }
    @media #{$xs}{
        margin-right: auto;
        padding: 40px 20px;
    }
    
    & .title{
        font-size: 32px;
        font-weight: 700;
        color: $heading-color;
        
        @media #{$xs}{
            font-size: 24px;
        }
        @media #{$sm}{
            font-size: 30px;
        }
    }
    & p{
        font-size: 18px;
        color: $body-color;
        line-height: 28px;
        margin-top: 20px;
        
        @media #{$xs}{
            font-size: 16px;
        }
    }
    & .main-btn{
        width: 100%;
        margin-top: 30px;
        
        &:hover{
            background-color: $theme-color;
            color: $white;
        }
    }
}




