.container1 {
    max-width: 800px;
    margin: 5px;
    background: #272626;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 15px;
}
.testimonial-container1 {
    position: relative;
    width: 100%;
    height: 170px; /* Adjust height as needed */
}
.testimonial1 {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    transition: transform 1s ease-out, opacity 1s ease-out;
    opacity: 0;
}
.testimonial1.active {
    opacity: 1;
}
.testimonial1 img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 15px;
}
.testimonial-content1 {
    max-width: 600px;
}
.testimonial-content1 h2 {
    margin: 0 0 10px;
}
.testimonial-content1 p {
    font-style: italic;
    color: #ffffff;
    margin: 0;
    font-size: 13px;
}