.testimonials-block {
    .testimonials-slider-wrap {
        padding: 68px 40px 40px 50px;
        position: relative;

        @include breakpoint(lg) {
            padding: 100px 60px 60px;
        }

        @include breakpoint(xl) {
            padding: 165px 86px 60px;
        }

        &::before,
        &::after {
            content: '';
            display: block;
            height: 296px;
            position: absolute;

            // width: 150px;
            // height: 150px;
            width: 226px;

            // @include breakpoint(lg) {
            // 	width: 200px;
            // 	height: 200px;
            // }

            @include breakpoint(xl) {
                height: 287px;
                width: 296px;
            }
        }

        &::before {
            border-left: 1px solid $brand-green;
            border-top: 1px solid $brand-green;
            left: 0;
            top: 0;
        }

        &::after {
            border-bottom: 1px solid $brand-green;
            border-right: 1px solid $brand-green;
            bottom: 0;
            right: 0;
        }
    }

    .testimonials-slider {
        position: static;

        &::before,
        &::after {
            content: '';
            display: block;
            height: 296px;
            position: absolute;

            // width: 150px;
            // height: 150px;
            width: 226px;

            // @include breakpoint(lg) {
            // 	width: 200px;
            // 	height: 200px;
            // }

            @include breakpoint(xl) {
                height: 287px;
                width: 296px;
            }
        }

        &::before {
            border-left: 1px solid $green;
            border-top: 1px solid $green;
            left: 17px;
            top: 18px;

            @include breakpoint(xl) {
                left: 26px;
                top: 31px;
            }
        }

        &::after {
            border-bottom: 1px solid $green;
            border-right: 1px solid $green;
            bottom: 18px;
            right: 17px;

            @include breakpoint(xl) {
                bottom: 26px;
                right: 30px;
            }
        }
    }

    .slide-text {
        @include breakpoint(md) {
            display: flex;
            flex-wrap: wrap;
        }

        > .icon-wrap {
            display: none;

            @include breakpoint(lg) {
                display: block;
            }
        }

        .icon-wrap {
            margin-bottom: 15px;
            width: 78px;

            @include breakpoint(md) {
                margin: 0 18px 0 0;
            }

            img {
                border-radius: 50%;
                width: 78px;
            }
        }

        .text-wrap {
            @include breakpoint(md) {
                width: calc(100% - 78px - 18px);
            }

            h4 {
                font-family: $font-family-base;
                font-size: 30px;
                font-style: normal;
                margin-bottom: 25px;

                @include breakpoint(xl) {
                    font-size: 40px;
                    line-height: 1.15;
                }
            }

            .user-bio {
                display: flex;
                flex-wrap: wrap;

                .icon-wrap {
                    margin-right: 18px;

                    @include breakpoint(lg) {
                        display: none;
                    }
                }

                .user-bio-text {
                    width: calc(100% - 78px - 18px);

                    @include breakpoint(lg) {
                        width: 100%;
                    }
                }
            }

            .name,
            .designation {
                display: block;
                font-size: 13px;
                line-height: 1.615384;
                text-transform: uppercase;
            }
        }
    }
}

.testimonials-slider {
    &.slick-dotted {
        margin-bottom: 9px;
    }

    &.slick-initialized {
        .slide {
            display: block;
        }
    }

    .slide {
        display: none;

        &:first-child {
            display: block;
        }
    }
}
