#testimonials {
    width: 100%;
    height: auto;
    padding: 110px 60px;
    background-color: var(--second-white);
}

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.testimonial-client-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--main-blue);
    box-shadow: 0 4px 4px black;
}

.testimonial-client-name {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-client-name h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    color: var(--main-background);
}

.testimonial .description {
    max-width: 980px;
    font-size: 30px;
}

@media (max-width: 980px) {
    .testimonial-client-img {
        min-width: 60px;
        min-height: 60px;
    }

    .testimonial-header {
        flex-direction: column;
    }

    .testimonial-client-name h1 {
        font-size: 25px;
    }

    .testimonial .description {
        font-size: 20px;
    }
}
