#testimonial_wrapper .testimonial-container {background: #FF9900;padding: 90px 100px;width: 590px;height: 600px;}

.testimonial-thumbnails {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 20px;
	z-index: 999;
    margin-left: -80px;
}

#testimonial_wrapper .testimonial-thumbnails img {
    width: 280px;
    height: 300px; 
    cursor: pointer;
    opacity: 1;
    transition: 0.3s;
	object-fit: cover;
}

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

.testimonial-container {
    position: relative;
    min-height: 120px;
}

.testimonial {
    display: none;
    transition: all 0.5s;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.testimonial-widget-wrapper {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse; 
    align-content: center;
    align-items: center;
}

#testimonial_wrapper p {font-family: "Quicksand", Sans-serif;font-size: 44px;font-weight: 700;color: #fff;}
#testimonial_wrapper h4 {font-family: "Quicksand", Sans-serif;font-size: 22px;font-weight: 400;color: #fff;}