// faq area style here
.rts-faq-area.kayaking {
    background: #E3FFFC;
    .faq-content{
        margin-left: 120px;
    }
    .accordion {
        .accordion-item {
            border-color: #B7EAE4;
        }
        .accordion-body {
            max-width: 780px;
        }
    }
}
.faq-content{
    margin-left: 50px;
}

.accordion{
    .accordion-item{
        background: none;
        border: none;
        padding: 24px 0;
        border-bottom: 1px solid var(--color-border);
        &:first-child{
            padding-top: 0;
        }
        &:last-child{
            border: none;
        }
        .accordion-header{
            button{
                color: var(--color-heading-1);
                background: none;
                box-shadow: none;
                padding: 0;
                border-radius: 0;
                font-size: 24px;
                font-weight: 600;
                text-transform: capitalize;
                line-height: 1;
                &::after{
                    background: none;
                    width: auto;
                    height: auto;
                    content: '\f061';
                    font-family: "Font Awesome 6 Pro";
                    font-weight: 400;
                    font-size: 16px;
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    border-radius: 50%;
                    border: 1px solid var(--color-primary);
                    text-align: center;
                    color: var(--color-primary);
                    position: absolute;
                    right: 0;
                }
            }
            .accordion-button:not(.collapsed){
                &::after {
                    transform: rotate(90deg);
                    background: var(--color-primary);
                    color: var(--color-white);
                }
            }
        }
        .accordion-body{
            padding: 0;
            font-weight: 500;
            line-height: 1.3;
            max-width: 660px;
            padding-top: 15px;
        }
    }
}