@media (min-width: 992px) {

}
.testimonials .prev-testimonial,
.testimonials .next-testimonial {
    --size: 4.25rem;
    position: absolute;
    font-size: 3rem;
    top: 50%;
    opacity: .5;
    width: var(--size);
    height: var(--size);
    color: var(--white);
    border-radius: 50%;
    margin-top: -25px;
    margin-left: 0;
    cursor: pointer;
    line-height: 48px;
    text-align: center;
    text-indent: -2px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width: 992px) {
    .testimonials .prev-testimonial,
    .testimonials .next-testimonial {
        --size: 6.25rem;
        font-size: 4rem;
    }

    .testimonials .prev-testimonial {
        margin-left: 18%;
    }
}
.prev-testimonial:hover,
.next-testimonial:hover {
    opacity: 1;
    transform: scale(1.2);
}
.prev-testimonial:active,
.next-testimonial:active {
    transform: translate(0, 3px) scale(1.2);
}

.next-testimonial {
    right: 0;
    margin-left: auto;
    margin-right: 0;
    text-indent: 2px;
}
@media (min-width: 992px) {
    .next-testimonial {
        margin-right: 18%;
    }
}
.dots {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    bottom: -40px;
}
.dots li {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--white);
    opacity: 0.2;
    display: inline-block;
    margin: 0 3px;
    cursor: pointer;
    transition: opacity 0.4s ease-in-out, width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dots li.active {
    width: 22px;
    opacity: 1;
}

.testimonials {
    position: relative;
}

.testimonial-slides {
    height: 25rem;
}
.testimonial-wrap {
    width: 100%;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-item-transition {
    position: relative;
}
.testimonial-item {
    position: absolute;
    top: 1rem;
}
.testimonials-content .testimonials-description {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    min-height: 15rem;
}

.testimonials-content .testimonials-description,
.testimonials-content .testimonials-description p {
    --description-font-size: 2rem;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.15;
    font-style: italic;
    position: relative;
}

/** Quotes **/
.testimonials-content .testimonials-description:before,
.testimonials-content .testimonials-description:after {
    content: ' ';
    display: block;
    position: absolute;
    width: 7rem;
    height: 5.4rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.testimonials-content .testimonials-description:before {
    top: -1.75rem;
    left: -2.5rem;
    background-image: url("images/start-quotes.png");
}
@media (min-width: 992px) {
    .testimonials-content .testimonials-description:before {
        left: -4.5rem;
    }
}
.testimonials-content .testimonials-description:after {
    bottom: -3.25rem;
    right: -1.6rem;
    background-image: url("images/end-quotes.png");
}

@media (min-width: 900px) {
    .testimonial-slides {
        height: 20rem;
    }
    .testimonials-description {
        min-width: 30rem;
        min-height: 8rem;
    }
    .testimonials-content .testimonials-description,
    .testimonials-content .testimonials-description p {
        font-size: 1.5rem;
        line-height: 1.25;
    }
}
@media (min-width: 2000px) {
    .testimonials-content .testimonials-description,
    .testimonials-content .testimonials-description p {
        font-size: var(--description-font-size);
        line-height: 1.1;
    }
}
@media (min-width: 1367px) {
    .testimonials-content .testimonials-description,
    .testimonials-content .testimonials-description p {
        font-size: var(--description-font-size);
        line-height: 1.1;
    }
}
.testimonials-content .testimonials-name {
    font-weight: 700;
}
.testimonials-content .testimonials-name,
.testimonials-content .testimonials-title,
.testimonials-content .testimonials-title-2 {
    font-size: 1.125rem;
    line-height: 1.5;
}




.testimonial-slide-leave-active,
.testimonial-slide-enter-active,
.testimonial-slide-back-leave-active,
.testimonial-slide-back-enter-active {
    transition: 1s;
}
.testimonial-slide-enter {
    opacity: 1;
    transform: translate(100%, 0);
}
.testimonial-slide-leave-to {
    opacity: 0;
    transform: translate(-100%, 0);
}

.testimonial-slide-back-enter {
    opacity: 1;
    transform: translate(-100%, 0);
}
.testimonial-slide-back-leave-to {
    opacity: 0;
    transform: translate(100%, 0);
}





/*.testimonial-slides .animated {*/
/*    transition: all .3s;*/
/*    position: absolute;*/
/*    transform: translate(-50%, 0);*/
/*}*/
/*.testimonial-slides .testimonial-slide-in {*/
/*    opacity: 0;*/
/*    transform: translate(-40%, 0);*/
/*}*/
/*.testimonial-slides .testimonial-slide-in-active {*/
/*    transition-delay: .3s;*/
/*}*/
/*.testimonial-slides .testimonial-slide-out {*/
/*    opacity: 1;*/
/*}*/
/*.testimonial-slides .testimonial-slide-out-active {*/
/*    opacity: 0;*/
/*    transform: translate(-60%, 0);*/
/*}*/

