﻿.blockquote {
    padding: 30px;
    border-radius: 20px;
    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(--GC-Yellow) !important;
}

.blockquote .blockquote-author p span {
    font-weight: 500;
}

.blockquote-img {
    border-radius: 50%;
    margin: 0 0 30px 0;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.testimonials .testimonials-box.quote-symbol:before {
    position: absolute;
    content: "\e82d";
    font-family: "gcicons";
    font-size: 80px;
    left: 40px;
    top: 50px;
    color: rgba(221, 221, 221, 0.5);
}
.testimonials {
    padding-bottom: 50px;
}

.testimonials .testimonials-box {
    position: relative;
    display: flex;
    max-width: 750px;
    min-height: 350px;
    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;
    border-radius: 20px;
}

.testimonials .testimonials-box.quote-wrap {
    column-gap: 5%;
    row-gap: 20px;
    text-align: left;
    border-radius: 20px;
}

.testimonials .testimonials-box p {
    font-size: 16px;
    line-height: 30px;
    color: var(--GC-Navy);
}

.testimonials .testimonials-box.quote-wrap p {
    text-align: left;
}

.testimonials .testimonials-box h3 {
    color: var(--GC-White);
}

.testimonials .testimonials-box.quote-wrap h3 {
    color: var(--GC-Navy);
    text-align: left;
}

.testimonials .testimonials-box .quote {
    width: 100%;
    align-content: end;
    text-align: center;
}

.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(--GC-Yellow);
}

@media screen and (max-width: 991px) {
    .testimonials .testimonials-box.quote-wrap {
        flex-wrap: wrap;
        padding: 50px 10% 35px;
        margin: 0 2%;
    }
}