#testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 100%;
    overflow: hidden; 
}

.img-testimonial{
    max-width: 50%;
    height: auto;
    object-fit: contain;
}

h4{
    color: var(--primary-800);
}

.testimonial-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 64px;
}

@media (max-width: 768px) {
    #testimonials {
        flex-direction: column;
    }

    .img-testimonial {
        max-width: 100%;
    }

    .testimonial-content{
        display: flex;
        flex-direction: column;
        gap: 40x;
    }
}
