﻿.blockquote {
    padding: 30px;
    border-radius: 0;
    margin: 0 0 25px 0;
    position: relative;
    border: 1px solid var(--GC-Light-Grey);
}

    .blockquote:last-child {
        margin:0;
    }

    .blockquote:before {
        position: absolute;
        content: "\e82d";
        font-family: "gcicons";
        color: rgba(221, 221, 221, 0.5);
        font-size: 80px;
        left: 40px;
        bottom: 40px;
        font-weight: 900;
    }

    .blockquote p {
        margin: 0;
        font-size: 19.5px;
        line-height: 2rem;
        font-weight: 500;
    }

    .blockquote .blockquote-author {
        margin-top: 1.66rem;
    }

        .blockquote .blockquote-author p {
            font-size: 1rem;
            font-weight: 400;
            line-height: 2rem;
            position: relative;
            display: inline-block;
            padding-left: 3.66667rem;
        }

            .blockquote p, .blockquote .blockquote-author p span {
                color: var(--GC-Navy);
            }

            .blockquote .blockquote-author p:before {
                position: absolute;
                content: "";
                width: 2.66667rem;
                height: 2px;
                left: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
                background: var(--bgh-light-blue) !important;
            }

            .blockquote .blockquote-author p span {
                font-weight: 500;
            }

.testimonials .testimonials-box:before {
    position: absolute;
    content: "\e82d";
    font-family: "gcicons";
    font-size: 80px;
    left: 40px;
    top: 50px;
    color: rgba(221, 221, 221, 0.5);
}

.testimonials .testimonials-box {
    position: relative;
    display: flex;
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 50px 35px;
    text-align: left;
    background-color: var(--GC-White);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    .testimonials .testimonials-box p {
        font-size: 16px;
        line-height: 30px;
        color: var(--GC-Navy);
    }


.testimonials .blockquote-author p {
    display: block;
    font-weight: bold;
    font-size:12px;
}

.testimonials .blockquote-author span {
    display: block;
    font-weight: bold;
    font-size: 16px;
}


.testimonials .slick-track {
    display: flex !important;
}

.testimonials .slick-slide {
    height: inherit !important;
}

.testimonials .slide {
    position: relative;
    padding: 30px 0;
    -webkit-transform: translateX(77%) scale(0.85);
    -ms-transform: translateX(77%) scale(0.85);
    transform: translateX(77%) scale(0.85);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.5;
    z-index: 0;
}

.testimonials .slick-current + .slide {
    -webkit-transform: translateX(-77%) scale(0.85);
    -ms-transform: translateX(-77%) scale(0.85);
    transform: translateX(-77%) scale(0.85);
}

.testimonials .slick-current {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}


.testimonials .slick-dots li button:before {
    color: var(--bgh-light-blue);
}