.faq {
    padding: 50px 0;
    position: relative;

    .faq_wrapper {
        padding-top: 70px;
        .faq_img {
            img {
                width: 100%; 
            }
        }

        .accordion {
            .accordion-item {
                margin-bottom: 5px;

                .accordion-header {
                    .accordion-button {
                        color: $white;
                        background-color: $primaryColor;
                        font-size: 20px;
                        font-weight: 500; 
                        i {
                            padding-right: 20px;
                        }
                        &:focus {
                            box-shadow: 0 0 0 .25rem transparent;
                        }
                    }
                }
                .accordion-body {
                    p {
                        font-size: 15px;
                        color: #333;
                        line-height: 24px;
                    }
                }
            }
        }
    }
}