.testimonials-carousel__item {
    padding: 35px 25px;
    border: 1px solid var( --e-global-color-secondary );
    max-width: 95%;
    border-bottom-right-radius: 0;
    box-shadow: 15px 15px 20px rgb(0 0 0 / 5%);
    position: relative;
    background: #fff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 50px;
    transition: all 0.3s ease;
    transform: translateY(25px);
    margin: 0 auto 50px;
}

.owl-item.center .testimonials-carousel__item {
    transform: translateY(0);
    box-shadow: 20px 20px 30px rgb(0 0 0 / 10%);
    background: var( --e-global-color-secondary );
}

.owl-item.center .testimonials-carousel__item * {
    color: #fff !important;
}

.testimonials-carousel__item p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

.testimonials-carousel__item h4 {
    font-size: 18px;
    margin: 0;
}

.testimonials-carousel__wrapper .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.testimonials-carousel__wrapper .owl-nav button {
    width: 50px;
    height: 50px;
    background: var( --e-global-color-secondary ) !important;
    border-radius: 100%;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-carousel__wrapper .owl-nav button path {
    stroke: #fff;
}

.testimonials-carousel__wrapper .owl-nav button svg {
    width: 15px;
    height: 14px;
}

.testimonials-carousel__wrapper .owl-nav button:hover {
    background: var(--e-global-color-secondary) !important;
}

.testimonials-carousel__item .quote-icon {
    position: absolute;
    right: 30px;
    bottom: auto;
    width: 80px;
    height: 80px;
}

.testimonials-carousel__item .quote-icon svg {
    width: 100%;
    height: 100%;
}

.owl-item.center .testimonials-carousel__item .quote-icon svg path {
    stroke: #fff !important;

}

.testimonials-carousel__item hr {
    width: 200px;
}

.testimonials-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    justify-content: center;
}

.testimonials-carousel .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    display: block;
    background: var( --e-global-color-secondary ) !important;
    opacity: 0.3;
}

.testimonials-carousel .owl-dot.active {
    opacity: 1;
    width: 25px;
    border-radius: 50px;
}


@media (max-width: 767px) {
    .testimonials-carousel__item {
        padding: 25px 15px;
        min-height: auto;
        margin-bottom: 0;
        box-shadow: none;
        border-radius: 20px;
    }

    .collection-cta:before,
    .collection-cta:after {
        background-size: cover;
    }

    .testimonials-carousel__item p {
        margin-top: 10px;
    }
}