.testimonial {
    display: flex;
    margin-bottom: 2rem;
    font-size: 16px;
    background-color: #EEE;
    align-items: center;
    justify-content: center;
}

.testimonialVideo {
    width: 20%;
    min-width: 200px;
    margin: 2rem;
    object-fit: contain;
}

.testimonialText {
    font-style: italic;
    position: relative;
    margin: 1rem;
}

.testimonialText::before {
    font-size: 3rem;
    font-weight: bold;
    color: #555;
    position: absolute;
    content: "“";
    left: -30px;
    top: -10px;
}

.withVideo {
    width: 80%;
    margin-left: 1rem;
    padding: 1rem 2rem 1rem 0;
}

.withoutVideo {
    width: 100%;
    margin-left: 3rem;
    padding: 1rem 2rem 1rem 0;
}

.testimonialName {
    font-style: normal;
    font-weight: bold;
    margin-top: .75rem;
    line-height: 1.5rem;
}

.testimonialTitleOrganization {
    font-size: smaller;
    font-style: normal;
    margin-left: 14px;
    line-height: 1.5rem;
}

.testimonialCityState {
    font-size: smaller;
    font-style: normal;
    margin-left: 14px;
    line-height: 1.5rem;
}

@media screen and (max-width: 800px) {
    
    .testimonial {
        font-size: 14px;
    }
    
    .testimonialVideo {
        min-width: 150px;
    }
}

@media screen and (max-width: 650px) {
    
    .testimonialVideo {
        display: none;
    }

    .testimonialText {
        width: 100%;
        margin-left: 3rem;
    }
}