/*Testimonials*/
.photo-testimonials-content{
    background-color: black;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0 0;
}


.testimonial-header h2{
    color: white;
    font-family: 'Futura-Book',sans-serif;
    font-size: 3rem;
    margin: 1rem 0;
    text-align: center;
}
.testimonial-cards{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card{
    width:90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    border: 2px black solid;
}
.testimonial-card img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 1rem 0;
    object-fit: cover;
    border:2px white solid;
}
.testimonial-card h3{
    font-family: 'Futura-Book',sans-serif;
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color:white;
}
.testimonial-card p{
    font-family: 'Futura-Light',sans-serif;
    font-size: 1.5rem;
    text-align: center;
    color:white;
}
@media(min-width:768px){
    .testimonial-header h2{
        font-size:4rem;
    }
    .testimonial-cards{
        width:80%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:0px;
    }
    .testimonial-card p{
        width:70%;
        text-align: justify;
    }
    
}
