.stimonial-container {
    width: 800px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
}

.testimonial {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-content {
    display: flex;
}

.testimonial-content img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-text {
    flex: 1;
    text-align: left;
}

.testimonial-rating {
    font-size: 20px;
    color: gold;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-navigation {
    margin: 20px 0;
}

.nav-left, .nav-right {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
}

.testimonial-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-thumbnails img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
}

.testimonial-thumbnails img.active {
    border: 2px solid #192A5D;
    opacity: 1;
}