.testimonial-slider-block {
    text-align: center;
    background-image: url('../../../img/layout/dot-pattern.png');

    @media (min-width:480px) {
        text-align: left;
    }
}

.testimonial-slider {
    @media (min-width:768px) {
        padding-right: 60px;
        padding-left: 60px;
    }

    @media (min-width:992px) {
        padding-right: 100px;
        padding-left: 100px;
    }

    .slick-arrow {
        position: absolute;
        top: 50%;
        z-index: 10;
        transform: translateY(-50%);
        cursor: pointer;

        &.slick-next {
            right: 0;
        }

        &.slick-prev {
            left: 0;
        }
    }

    .slick-dots {
        height: 10px;
        position: absolute;
        bottom: 35px;
        width: 100%;
        text-align: center;

        li {
            display: inline-block;
            padding-left: 5px;
            padding-right: 5px;

            &.slick-active {
                button {
                    background-color: var(--brand-grey-light);
                }
            }
        }

        button {
            display: block;
            padding: 0;
            margin: 0;
            width: 10px;
            height: 10px;
            border: 1px solid var(--brand-grey-light);
            border-radius: 50%;
            text-indent: -10000px;
            background-color: transparent;
        }
    }
}

.testimonial-slider__item {
    padding-top: 40px;
    padding-bottom: 75px;

    @media (min-width:768px) {
        padding-top: 75px;
    }
}

.testimonial-slider__pic {
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 50%;

    @media (min-width:480px) {
        float: left;
        margin-right: 35px;
    }
}

.testimonial-slider__quote {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1.2;
    color: var(--brand-grey-light);

    p {
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 300;

        &:first-child {
            &:before {
                content: '“';
                margin-left: -.43em;
            }
        }

        &:last-of-type {
            &:after {
                content: '”';
            }
        }
    }

    cite {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        color: var(--text-color);

        strong {
            display: inline-block;
            font-size: 16px;
            font-weight: 700;

            &:after {
                content: '//';
                display: inline-block;
                margin-left: 16px;
                margin-right: 10px;
                font-weight: 300;
                color: #c1c3c5;
            }
        }
    }

    @media (min-width:480px) {
        padding-left: 115px;
    }

    @media (min-width:768px) {
        p {
            font-size: 21px;
        }

        cite {
            font-size: 16px;

            strong {
                font-size: 18px;
            }
        }
    }

    @media (min-width:768px) {
        p {
            font-size: 24px;
        }
    }
}