#testimonials {
    padding: 20px;
    background-color: var(--color-complimentary);
}

#testimonials header{
    text-align: center;
}

#testimonials header img {
    margin: 0 auto;
}

#testimonials header h2 {
    font-size: 2rem;
    margin: 0;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-btns-sm {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.wide-btn {
    display: none;
}

.testimonial-btn {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 15px 15px 8px rgba(12, 76, 53, .1);
    transition: 0.4s;
}

.testimonial-btn:hover {
    background-color: var(--color-text-primary);
    box-shadow: 0 15px 15px 8px rgba(12, 76, 53, .3);
    cursor: pointer;
}

.testimonial-btn img {
    width: 100%;
    height: 100%;
}

.testimonial-slideshow {
    margin-top: 40px;
}

.testimonial-slide {
    padding: 50px 100px;
    background-color: #fff;
    border-radius: 0 50px 0 50px;
    box-shadow: 0 20px 40px 0 rgba(12, 76, 53, .1);
}

.testimonial-pic-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#testimonial-pic {
    width: 100px;
    height: 100px;
    border: solid 1px;
    border-radius: 50%;
}

.testimonial-text {
    display: block;
    text-align: center;
    color: var(--color-text-complimentary);
}

.testimonial {
    margin: 25px 0;
    font-size: 18px;
}

.testimonial-name {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: bold;
}

@media screen and (min-width: 600px) {

    #testimonials {
        padding: 100px;
    }

}

@media screen and (min-width: 800px) {
    
    .wide-btn {
        display: block;
    }
    .testimonial-btns-sm {
        display: none;
    }
}

@media screen and (min-width: 1000px) {

    #testimonials header h2 {
        font-size: 3rem;
    }


    .testimonial-wrapper {
        display: flex;
        align-items: center;
        gap: 100px;
    }

}