.testimonial__header {
    margin-bottom: 40px;
}
.testimonial__slider {
    padding-top: 20px;
    padding-bottom: 50px;
}


/* Card */
.testimonial__card{
    background: #111213;
    border: 1px solid #313132;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.testimonial__card:hover {
    border-color: #313132;
}

/* Quote */
.testimonial__quote {
    width: 42px;
    height: 42px;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: absolute;
    top: -20px;
    left: 24px;
    border: 1px solid #373737;
}

/* Text */
.testimonial__text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 24px;
    margin-bottom: 0;
    padding: 24px;
    padding-top: 57px;
    font-weight: 500;
}

/* User */
.testimonial__user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 23px 24px;
    margin-top: auto;
    width: 100%;
}

.testimonial__avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial__name {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-primary);
    font-weight: bold;
}

.testimonial__role {
    font-size: 14px;
    line-height: 20px;
    color: #878C91;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #666;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 25px;
    border-radius: 20px;
}

.testimonial .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: 0px;
    top: auto;
}

@media screen and (max-width: 1399px) {
   .testimonial__text {
    min-height: 275px;
}
}
@media screen and (max-width: 1199px) {
.testimonial__card{
 height: 100%;
}
    .testimonial__text {
        min-height: 300px;
    }
}
@media screen and (max-width: 991px) {
    .testimonial__text {
        min-height: 275px;
    }
    }
@media screen and (max-width: 767px) {
        .testimonial__text {
        min-height: auto;
    }
    .testimonial__header {
    margin-bottom: 25px;
    }

        .testimonial__header h2{
            margin-bottom: 0;
        }
    }

    @media screen and (max-width: 575px) {
      .testimonial__card {
         min-height: 370px;
        }
    }