.g-owlcarousel-testimonials {
    .g-testimonials {

        // Testimonial
        .g-testimonial {
            img {
                width: auto;
                height: auto;
                border-radius: 100%;
                max-width: 70px;
                max-height: 70px;
                margin-right: $content-padding;
            }
            .g-testimonial-info {
                @include display(flex);
                @include align-items(center);
            }
            .g-testimonial-text {
                padding: $content-padding 0;
                color: $black;
                @include responsive-font($responsive-font-size + 0.5, $core-font-size + 0.2, false, false);
            }
            .g-testimonial-position {
                @include responsive-font($responsive-font-size, $core-font-size - 0.1, false, false);
                color: $base-text-color;
            }
            .g-testimonial-author {
                color: $black;
                @include responsive-font($responsive-font-size + 0.2, $core-font-size, false, false);
                font-weight: $font-weight-medium;
            }
        }

        // If Nav Enabled
        &[data-testimonials-carousel-nav="true"] {
            padding: 0 3rem;

            @include breakpoint(mobile-only) {
                padding: 0;
            }
        }

        // Arrows
        .owl-nav {
            position: absolute;
            @include breakpoint(mobile-only) {
                position: relative;
                text-align: center;
            }
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;

            div, button {
                color: transparentize($base-text-color, 50%);
                &:hover {
                    color: $base-text-color;
                }
                font-size: 1.5rem;
                bottom: auto;
                margin: 0;
                top: 45%;

                @include breakpoint(mobile-only) {
                    position: relative;
                    margin-top: $content-padding;
                }

                .fa {
                    font-size: $core-font-size + 1;
                }

                &.owl-prev {
                    left: 0;
                    @include breakpoint(mobile-only) {
                        margin-right: $content-padding;
                    }
                }
                &.owl-next {
                    right: 0;
                    @include breakpoint(mobile-only) {
                        margin-left: $content-padding;
                    }
                }
            }

        }
        // Dots
        .owl-dots {
            text-align: left;
            margin-top: $content-padding;
            .owl-dot {
                margin: 0 0.2rem;
                width: 8px;
                height: 8px;
                background: transparentize($accent-color-1, 70%);

                &.active, &:hover {
                    background: $accent-color-1;
                }
            }
        }
    }
}
