.carousel {
    padding: 0;
}

.slide-container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slide-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.slide {
    min-height: 12rem;
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .slide:first-child {
    background-color: palevioletred;
}

.slide:nth-child(2) {
    background-color: powderblue;
}

.slide:nth-child(3) {
    background-color: pink;
}

.slide:last-child {
    background-color: paleturquoise;
} */

/* .carousel-buttons {
    margin-top: 3rem;
} */

.carousel-buttons > button {
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    margin: 2rem 0.5rem;
    border: 0.2rem solid white;
    background-color: white;
    box-shadow: 3px 3px 20px #aaa;
}

.carousel-buttons > button.active {
    background-color: #3EB896;
}

.testimonial {
    padding: 1rem;
    flex: 1;
}

.testimonial .content {
    padding: 3rem 2rem;
    box-shadow: 3px 3px 20px #aaa;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial .content .client-details {
    font-weight: 700;
    font-size: 14px;
    color: #606060;
    line-height: 26px;
}

/* .testimonial .content .client-details::before, .testimonial .content .client-details::after {
    content: "";
    background-color: black;
    height: 2px;
    display: inline-block;
    position: relative;
    width: 10%;
    vertical-align: middle;
    margin: 0 7px;
} */