

#testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.testimonial {
    width: 90%;
    margin-bottom: 50px;
    max-width: 300px;
    margin: 15px auto;
}
.testimonial a {
    text-decoration: none;
}
.testimonial video {
    display: none;
}
.testimonial img {
    width: 100%;
    border-radius: 20px 0;
    border: 1px solid var(--light-grey);
    margin-bottom: 10px;
}
.testimonial-info {
    background: var(--light-purple);
    color: #000;
    border-radius: 20px 0;
    border: 2px solid var(--light-grey);
    padding: 15px;
}


#make-an-impact {
    margin: 20px auto;
    display: flex;
    justify-content: space-between
}
#make-an-impact > div {
    background: var(--light-grey);
    border: 2px solid var(--light-purple);
    border-radius: 15px 0;
    padding: 20px;
    width: 46%;
    margin: 20px auto;
}

#make-an-impact #state-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#make-an-impact #state-list li {
    width: 28%;
}
#make-an-impact #state-list a {
    text-decoration: none;
    color: #fff;
    background: var(--purple);
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    padding: 5px 15px;
    margin: 10px auto 0;
    border: 2px solid var(--purple);
    transition: all 0.3s;
    border-radius: 10px;
}
#make-an-impact #state-list a:hover {
    background: var(--light-purple);
    color: var(--purple);
}
@media only screen and (max-width: 768px) {
    #make-an-impact {
        flex-wrap: wrap;
    }
    #make-an-impact > div {
        width: 100%;
        max-width: 500px;
    }
}
