
.testimonial-card {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    border: 1px solid rgba(128, 137, 150, 0.2);
    padding: 15px 15px 10px 15px;
}
.testimonial-card .testi-desc-box {
    padding-bottom: 25px;
}
.testimonial-card .testi__desc {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}
.testimonial-card .rating-stars {
    margin-top: -2px;
}
.testimonial-carousel.carousel-action .owl-nav div {
    width: 35px;
    height: 35px;
    line-height: 34px;
}

/* Largura mínima em telas maiores */
@media (min-width: 992px) { /* Ajuste o valor de acordo com a sua necessidade */
    .testimonial-card {
        min-width: 100px; /* Ou um valor fixo */
    }
}

/* Exemplo com margens */
@media (min-width: 992px) {
    .testimonial-card {
        margin: 0 15px; /* 15px de margem em cada lado */
    }
}

.testimonial-carousel {
    display: flex; /* Ativa o Flexbox */
    flex-wrap: wrap; /* Permite que os cards quebrem para a próxima linha */
    justify-content: space-around; /* Distribui os cards com espaço igual entre eles */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-area .section-heading {
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .testimonial-area .section-heading {
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
    .testimonial-area .section-heading {
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-area .btn-box.padding-top-35px {
        padding-top: 30px;
    }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .testimonial-area .btn-box.padding-top-35px {
        padding-top: 30px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
    .testimonial-area .btn-box.padding-top-35px {
        padding-top: 30px;
    }
}

.single-feature-titles span {
    display: inherit;
    margin-top: -1px;
}
.single-feature-titles .list-items li {
    font-size: 13px;
    line-height: 20px;
}

.testimonial-card .testi-desc-box .day-name {
    color: var(--color-primary);
}

.testimonial-card {
    cursor: pointer;
}

.testimonial-card.active {
    cursor: initial;
}

.testimonial-card .time {
    color: #4f4f4f;
    font-size: 11px;
    line-height: 17px;
}

.testimonial-card.active,
.testimonial-card:hover {
    background-color: var(--color-primary);
    border-color: var(--color-secondary);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



.testimonial-card:hover h5,
.testimonial-card:hover span,
.testimonial-card:hover .day-name,
.testimonial-card.active h5,
.testimonial-card.active span,
.testimonial-card.active .day-name {
    color: #FFF;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.testimonial-card.disabled {
    background-color: var(--color-primary);
    border: 1px solid rgba(128, 137, 150, 0.2);
}

.testimonial-card.disabled h5,
.testimonial-card.disabled span {
    color: rgba(128, 137, 150, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.testimonial-card.disabled:hover h5,
.testimonial-card.disabled:hover span {
    color: rgba(128, 137, 150, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.carousel-action .owl-nav div {
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -o-transform: translateY(-45%);
    transform: translateY(-45%);
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: #4f4f4f;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-action .owl-nav div {
        display: none;
    }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .carousel-action .owl-nav div {
        display: none;
    }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
    .carousel-action .owl-nav div {
        display: none;
    }
}
.carousel-action .owl-nav div.owl-next {
    right: -22px;
}
.carousel-action .owl-nav div.owl-prev {
    left: -22px;
}
.carousel-action .owl-nav div:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}
.carousel-action .owl-dots {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}
.carousel-action .owl-dots div {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid rgba(19, 41, 104, 0.1);
    display: inline-block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 2px;
}
.carousel-action .owl-dots div.active {
    background-color: var(--color-primary);
    border-color: var(--color-secondary);
}
.carousel--action .owl-nav div {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
}
.carousel--action .owl-nav div.owl-next {
    right: 15px;
}
.carousel--action .owl-nav div.owl-prev {
    left: 15px;
}
.carousel--action .owl-dots div {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
}
