.c-testimonial {
    .fl-module-content {
        .uabb-module-content {
            padding: 0;
            .bx-wrapper {
                margin: 0;
                .bx-viewport {
                    .uabb-testimonial {
                        display: grid;
                        grid-template-columns: repeat(12, 1fr);
                        grid-gap: 32px;
                        padding: 40px;
                        background-color: #E8DED3;
                        border-radius: 8px;

                        .uabb-testimonial-photo {
                            grid-column: 1/5;

                            * {
                                width: 100%;
                                height: auto;
                            }

                            img {
                                border-radius: 8px;
                            }
                        }
                        .uabb-testimonial-info {
                            grid-column: 5/-1;
                            border-radius: 8px;
                            background: #F3EFEC;
                            padding: 35px 40px;

                            .uabb-testimonial-author {

                                .uabb-testimonial-author-name {
                                    font-size: var(--lg-font-size)
                                }
                            }
                        }
                    }
                }
            }

            .uabb-slider-prev,
            .uabb-slider-next {
                top: -50px;

                i {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 8px;
                    width: 40px;
                    height: 40px;
                }

                &:is(.uabb-slider-prev) {
                    right: 55px;
                    left: auto;

                    i {
                        background: #F3EFEC;
                        border: 1px solid #606356;  
                        color: #606356;

                        &::before {
                            content: "\f060";
                        }
                    }

                }

                &:is(.uabb-slider-next) {
                    right: 0;

                    i {
                        background: #383A30;
                        &::before {
                            content: "\f061";
                        }
                    }

                }
            }

        }
    }
}