.fp-faq {
    padding-bottom: 30px;

    .fp-faq-list {
        padding-bottom: 60px;

        @media only screen and (max-width: $sm_768) {
            padding-bottom: 30px;
        }
    }

    .accordion-item {
        &:first-of-type {
            border-radius: 24px 24px 0 0;

            .accordion-header {
                .accordion-button {
                    border-radius: 23px 23px 0 0;
                }
            }
        }

        &:last-of-type {
            border-radius: 0 0 24px 24px;

            .accordion-header {
                .accordion-button {
                    border-radius: 0 0 23px 23px;
                }
            }
        }

        @media only screen and (max-width: $xs_575) {
            &:first-of-type {
                border-radius: 15px 15px 0 0;

                .accordion-header {
                    .accordion-button {
                        border-radius: 14px 14px 0 0;
                    }
                }
            }

            &:last-of-type {
                border-radius: 0 0 15px 15px;

                .accordion-header {
                    .accordion-button {
                        border-radius: 0 0 14px 14px;
                    }
                }
            }
        }

        .accordion-button {
            font-size: $font24;
            padding: 40px 24px;
            font-weight: $fontMedium;
            box-shadow: none !important;
            @include fpTransition;

            &::after {
                width: 30px;
                height: 30px;
                background-size: 30px;

                @media only screen and (max-width: $xs_575) {
                    width: 20px;
                    height: 20px;
                    background-size: 20px;
                }
            }

            &[aria-expanded="true"] {
                color: $textBlack;
                padding-bottom: 0;
                background: $bgLightPurple;
            }

            @media only screen and (max-width: $md_991) {
                padding: 20px;
                font-size: 20px;
            }

            @media only screen and (max-width: $xs_575) {
                font-size: 16px;
                line-height: 1.4;
            }
        }

        .accordion-collapse {
            @include fpTransition;
            background: $bgLightPurple;

            .accordion-body {
                padding-bottom: 40px;

                @media only screen and (max-width: $md_991) {
                    padding-top: 10px;
                    padding-bottom: 20px;
                }

                p {
                    color: $textBlack;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}