.slider-container {
    max-width: 1500px;
    position: relative;
    margin: 0 auto;
}

.swiper {
    padding: 40px 0 !important;
    
}

.swiper-wrapper{

    width: 100% !important;
}

.swiper-slide {
    transition: opacity 0.5s ease;

}

.swipper-actions {
    display: flex ;
  justify-content: center; 
  gap: 2rem;
  margin-top: 1.5rem;

}

.swipper-actions >div{
    border: 1px solid;
    display: flex;
    align-items: center;
    border: 1px solid;
    border-radius: 50%;
    padding: .2rem;
    cursor: pointer;
}
.swipper-actions >div svg{
    width: 20px;
    height: 20px;
}

.swipper-actions .back-button{
    transform: rotate(-180deg);
}

.testimonial-card {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.75rem;
    border: 1px solid #e3e6fc;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    /* max-width: 90%; */
}




.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.testimonial-header .user-image {
    max-width: 40px;
    border-radius: 50%;
}

.testimonial-header .stars {
    display: block;
    max-width: 100px;
}

.testimonial-content {
    color: var(--secondary-color) !important;
    flex: 1 1 100%;
}

.testimonial-content>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.testimonial-content>div h3 {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.75rem;
    /* 28px */
    font-weight: 600;
}

.testimonial-content>div img {
    display: none;
    max-width: 100px;
}

.testimonial-content .location {
    margin-top: 0.125rem;
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.25rem;
    /* 20px */
}

.testimonial-content .feedback {
    margin-top: 0.75rem;
    color: var(--accent-color);
}



/* MD */
@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row;
        gap: 1.25rem;
    }

    .testimonial-header {
        width: auto;
    }

    .testimonial-header .user-image {
        min-width: 60px;
        max-width: 60px;
    }

    .testimonial-header .stars {
        display: none;
    }

    .testimonial-content>div {
        margin-top: .75rem;
    }

    .testimonial-content>div h3 {
        font-size: 1.25rem;

        line-height: 1.75rem;

    }

    .testimonial-content>div img {
        display: block;
    }

    .testimonial-content .location {
        margin-top: .25rem;
        font-size: 1rem;

        line-height: 1.5rem;

    }

    .testimonial-content .feedback {
        margin-top: 1rem;
    }

}

@media(max-width: 750px){
    .testimonial-card {
        max-width: auto !important;
    }
}