.testimonials {
    /* border: 1px solid; */
    min-height: 100vh;
    font-family: 'PPMori';
}

.testimonials .headline {
    margin-bottom: 30px;
}

.testimonials p.topBar {
    font-family: 'JetBrains Mono', sans-serif;
    padding-top: 60px;
    padding-bottom: 5px;
    width: 85%;
    margin: auto;
    border-bottom: 1px solid;
    text-transform: uppercase;
}

.testimonials .say {
    margin-left: auto !important;
}

.testimonials .peoplesSay {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1%;
    width: 85%;
    margin: auto;
    padding-bottom: 30px;
}

.testimonials .peoplesSay .singleSay {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid;
    padding: 20px;
    width: calc(49% - 4px);
    min-width: 100%;
    margin-bottom: 1%;
    border-radius: 5px;
}

.testimonials .humanImage img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 45%;
}

.testimonials .review .humanName {
    text-align: right;
    margin-top: 10px;
    font-size: 0.9rem;
}




@media screen and (min-width: 768px) {
    .testimonials .peoplesSay .singleSay {
        min-width: 600px;
    }

    .testimonials .humanImage img {
        width: 150px;
        height: 150px;
    }
}