.containerTestimoniosCarousel{
    width:100%;
    min-height:300px;
    display:flex;
    justify-content:center;
    align-items:center;
    height:auto;
    margin-bottom:30px;
    padding:0px 10px;
}


.testimonial-carousel {
    width:800px;
    height:250;
    background-color: #fff;
    border-radius: 25px;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding:70px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    cursor: grab;
    user-select: none;


}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight:400;
    color:var(--secundary);
}



.carousel-controls {
    position: absolute;
    top: 50%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    margin-left:18px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.carousel-controls .prev,
.carousel-controls .next {
    width:40px;
    height:40px;
    border-radius: 50%;
    background-color: var(--white);
    color:var(--silverDark);
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--silverDark);
    opacity:0.3;
    transition:all ease .3s;
    font-size:15px;
}

.carousel-controls .prev:hover,
.carousel-controls .next:hover {
    background-color: var(--secundary);
    color: var(--white);
    border-color:var(--white);
    opacity:1;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


@media(max-width:1000px){
    .testimonial-carousel{min-width:100%;}
    .testimonial-item.active{
        padding:20px 70px;
    }
}

@media(max-width:800px){
    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author {
        font-size: 11px;
    }
}


@media(max-width:600px){
    .carousel-controls {
        margin-left:5px;
    }
}